diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..f6b2fa2 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,200 @@ +# 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 --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}] +trim_trailing_whitespace = false + +# Xml files +[*.{xml,csproj,props,targets}] +indent_size = 2 + +# YAML files +[*.{yml,yaml}] +indent_size = 2 + +# Linux scripts +[*.sh] +end_of_line = lf + +# Windows scripts +[*.{cmd,bat,ps1}] +end_of_line = crlf + +# C# files +[*.cs] + +# Default to suggestion severity +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,extern,new,virtual,abstract,sealed,override,readonly,unsafe,required,volatile,async +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 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..d4823c7 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,5 @@ +# Leave line endings alone +# git config --global core.autocrlf false +# git add --renormalize . +# git ls-files --eol +* -text diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..fbc6fce --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,43 @@ +# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file +version: 2 +updates: + + # main +- package-ecosystem: "nuget" + target-branch: "main" + directory: "/" + schedule: + interval: "daily" + groups: + nuget-deps: + patterns: + - "*" +- package-ecosystem: "github-actions" + target-branch: "main" + directory: "/" + schedule: + interval: "daily" + groups: + actions-deps: + patterns: + - "*" + + # develop +- package-ecosystem: "nuget" + target-branch: "develop" + directory: "/" + schedule: + interval: "daily" + groups: + nuget-deps: + patterns: + - "*" +- package-ecosystem: "github-actions" + target-branch: "develop" + directory: "/" + schedule: + interval: "daily" + groups: + actions-deps: + patterns: + - "*" diff --git a/.github/workflows/merge-bot-pr.yml b/.github/workflows/merge-bot-pr.yml new file mode 100644 index 0000000..34f7ba9 --- /dev/null +++ b/.github/workflows/merge-bot-pr.yml @@ -0,0 +1,54 @@ +name: Merge bot generated PR's + +on: + pull_request: + +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + +jobs: + + merge-dependabot: + name: Merge dependabot PR's + runs-on: ubuntu-latest + if: github.actor == 'dependabot[bot]' + permissions: + contents: write + pull-requests: write + + # https://docs.github.com/en/code-security/dependabot/working-with-dependabot/automating-dependabot-with-github-actions#enable-auto-merge-on-a-pull-request + steps: + + # https://github.com/marketplace/actions/fetch-metadata-from-dependabot-prs + - name: Get dependabot metadata + id: metadata + uses: dependabot/fetch-metadata@v2 + with: + github-token: "${{ secrets.GITHUB_TOKEN }}" + + # https://cli.github.com/manual/gh_pr_merge + # https://docs.github.com/en/code-security/dependabot/working-with-dependabot/dependabot-options-reference#ignore-- + - name: Merge dependabot non-major updates + if: steps.metadata.outputs.update-type != 'version-update:semver-major' + run: gh pr merge --auto --merge "$PR_URL" + env: + PR_URL: ${{github.event.pull_request.html_url}} + GH_TOKEN: ${{secrets.GITHUB_TOKEN}} + + merge-languagedata: + name: Merge language data PR's + runs-on: ubuntu-latest + if: github.actor == 'github-actions[bot]' && github.event.pull_request.base.ref == 'update-languagedata' + permissions: + contents: write + pull-requests: write + + steps: + + # https://cli.github.com/manual/gh_pr_merge + - name: Merge language data PR's + run: gh pr merge --auto --merge "$PR_URL" + env: + PR_URL: ${{github.event.pull_request.html_url}} + GH_TOKEN: ${{secrets.GITHUB_TOKEN}} diff --git a/.github/workflows/publish-release.yml b/.github/workflows/publish-release.yml new file mode 100644 index 0000000..444576e --- /dev/null +++ b/.github/workflows/publish-release.yml @@ -0,0 +1,113 @@ +name: Publish release + +on: + push: + branches: [ main, develop ] + pull_request: + branches: [ main, develop ] + workflow_dispatch: + +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + +jobs: + + test: + name: Run tests + runs-on: ubuntu-latest + + steps: + + # https://github.com/marketplace/actions/setup-net-core-sdk + - name: Setup .NET SDK + uses: actions/setup-dotnet@v4 + with: + dotnet-version: 9.x + + # https://github.com/marketplace/actions/checkout + - name: Checkout code + uses: actions/checkout@v4 + + # https://docs.microsoft.com/en-us/dotnet/core/tools/dotnet-build + - name: Build + run: dotnet build + + # https://docs.microsoft.com/en-us/dotnet/core/tools/dotnet-test + - name: Run unit tests + run: dotnet test ./LanguageTagsTests/LanguageTagsTests.csproj + + - name: Format checks + run: | + dotnet new tool-manifest + dotnet tool install csharpier + dotnet tool install dotnet-format + dotnet csharpier check --log-level=information . + dotnet format --verify-no-changes --severity=info --verbosity=detailed + + publish: + name: Publish release + runs-on: ubuntu-latest + needs: test + if: github.event_name != 'pull_request' + permissions: + contents: write + + steps: + + # https://github.com/marketplace/actions/setup-net-core-sdk + - name: Setup .NET SDK + uses: actions/setup-dotnet@v4 + with: + dotnet-version: 9.x + + # https://github.com/marketplace/actions/checkout + - name: Checkout code + uses: actions/checkout@v4 + with: + fetch-depth: 0 + + # https://github.com/marketplace/actions/nerdbank-gitversioning + - name: Run Nerdbank.GitVersioning + id: nbgv + uses: dotnet/nbgv@master + + # https://docs.microsoft.com/en-us/dotnet/core/tools/dotnet-build + - name: Build project + run: >- + dotnet build ./LanguageTags/LanguageTags.csproj + --output ./Publish/ + --configuration ${{ endsWith(github.ref, 'refs/heads/main') && 'Release' || 'Debug' }} + -property:Version=${{ steps.nbgv.outputs.AssemblyVersion }} + -property:FileVersion=${{ steps.nbgv.outputs.AssemblyFileVersion }} + -property:AssemblyVersion=${{ steps.nbgv.outputs.AssemblyVersion }} + -property:InformationalVersion=${{ steps.nbgv.outputs.AssemblyInformationalVersion }} + -property:PackageVersion=${{ steps.nbgv.outputs.SemVer2 }} + + # https://docs.microsoft.com/en-us/dotnet/core/tools/dotnet-nuget-push + - name: Publish to NuGet.org + if: github.event_name != 'pull_request' + run: >- + dotnet nuget push ${{ github.workspace }}/Publish/*.nupkg + --source https://api.nuget.org/v3/index.json + --api-key ${{ secrets.NUGET_API_KEY }} + --skip-duplicate + + - name: Zip output + if: github.event_name != 'pull_request' + run: | + cp ./LanguageData/*.json ./Publish/ + 7z a -t7z ./Publish/LanguageTags.7z ./Publish/* + + # https://github.com/marketplace/actions/gh-release + - name: Create GitHub release + if: github.event_name != 'pull_request' + uses: softprops/action-gh-release@v2 + with: + generate_release_notes: true + tag_name: ${{ steps.nbgv.outputs.SemVer2 }} + prerelease: ${{ !endsWith(github.ref, 'refs/heads/main') }} + files: | + LICENSE + README.md + ./Publish/LanguageTags.7z diff --git a/.github/workflows/update-languagedata.yml b/.github/workflows/update-languagedata.yml new file mode 100644 index 0000000..55ae697 --- /dev/null +++ b/.github/workflows/update-languagedata.yml @@ -0,0 +1,53 @@ +name: Update language data + +on: + workflow_dispatch: + schedule: + - cron: '0 2 * * *' + +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + +jobs: + + update: + name: Update language data + runs-on: ubuntu-latest + permissions: + contents: write + pull-requests: write + + steps: + + # https://github.com/marketplace/actions/setup-net-core-sdk + - name: Setup .NET SDK + uses: actions/setup-dotnet@v4 + with: + dotnet-version: 9.x + + # https://github.com/marketplace/actions/checkout + - name: Checkout code + uses: actions/checkout@v4 + + - name: Download language data and generate code + run: | + dotnet run --project ./LanguageTagsCreate/LanguageTagsCreate.csproj -- . + + - name: CSharpier format code + run: | + dotnet new tool-manifest + dotnet tool install csharpier + dotnet csharpier format . + git status + + # https://github.com/marketplace/actions/create-pull-request + - name: Create pull request + uses: peter-evans/create-pull-request@v7 + with: + branch: update-languagedata + title: 'Update language data and generated files' + body: 'This PR updates the language data files and regenerates the code.' + commit-message: 'Update language data and generated files' + delete-branch: true + labels: 'update-languagedata' diff --git a/.gitignore b/.gitignore index 6c1eb92..772ce15 100644 --- a/.gitignore +++ b/.gitignore @@ -1,406 +1,7 @@ -## Ignore Visual Studio temporary files, build results, and -## files generated by popular Visual Studio add-ons. -## -## Get latest from https://github.com/github/gitignore/blob/main/VisualStudio.gitignore - -# User-specific files -*.rsuser -*.suo -*.user -*.userosscache -*.sln.docstates - -# User-specific files (MonoDevelop/Xamarin Studio) -*.userprefs - -# Mono auto generated files -mono_crash.* - -# Build results -[Dd]ebug/ -[Dd]ebugPublic/ -[Rr]elease/ -[Rr]eleases/ -x64/ -x86/ -[Ww][Ii][Nn]32/ -[Aa][Rr][Mm]/ -[Aa][Rr][Mm]64/ -[Aa][Rr][Mm]64[Ee][Cc]/ -bld/ -[Bb]in/ -[Oo]bj/ -[Oo]ut/ -[Ll]og/ -[Ll]ogs/ - -# Visual Studio 2015/2017 cache/options directory -.vs/ -# Uncomment if you have tasks that create the project's static files in wwwroot -#wwwroot/ - -# Visual Studio 2017 auto generated files -Generated\ Files/ - -# MSTest test Results -[Tt]est[Rr]esult*/ -[Bb]uild[Ll]og.* - -# NUnit -*.VisualState.xml -TestResult.xml -nunit-*.xml - -# Build Results of an ATL Project -[Dd]ebugPS/ -[Rr]eleasePS/ -dlldata.c - -# Benchmark Results -BenchmarkDotNet.Artifacts/ - -# .NET Core -project.lock.json -project.fragment.lock.json -artifacts/ - -# ASP.NET Scaffolding -ScaffoldingReadMe.txt - -# StyleCop -StyleCopReport.xml - -# Files built by Visual Studio -*_i.c -*_p.c -*_h.h -*.ilk -*.meta -*.obj -*.iobj -*.pch -*.pdb -*.ipdb -*.pgc -*.pgd -*.rsp -# but not Directory.Build.rsp, as it configures directory-level build defaults -!Directory.Build.rsp -*.sbr -*.tlb -*.tli -*.tlh -*.tmp -*.tmp_proj -*_wpftmp.csproj -*.log -*.tlog -*.vspscc -*.vssscc -.builds -*.pidb -*.svclog -*.scc - -# Chutzpah Test files -_Chutzpah* - -# Visual C++ cache files -ipch/ -*.aps -*.ncb -*.opendb -*.opensdf -*.sdf -*.cachefile -*.VC.db -*.VC.VC.opendb - -# Visual Studio profiler -*.psess -*.vsp -*.vspx -*.sap - -# Visual Studio Trace Files -*.e2e - -# TFS 2012 Local Workspace -$tf/ - -# Guidance Automation Toolkit -*.gpState - -# ReSharper is a .NET coding add-in -_ReSharper*/ -*.[Rr]e[Ss]harper -*.DotSettings.user - -# TeamCity is a build add-in -_TeamCity* - -# DotCover is a Code Coverage Tool -*.dotCover - -# AxoCover is a Code Coverage Tool -.axoCover/* -!.axoCover/settings.json - -# Coverlet is a free, cross platform Code Coverage Tool -coverage*.json -coverage*.xml -coverage*.info - -# Visual Studio code coverage results -*.coverage -*.coveragexml - -# NCrunch -_NCrunch_* -.NCrunch_* -.*crunch*.local.xml -nCrunchTemp_* - -# MightyMoose -*.mm.* -AutoTest.Net/ - -# Web workbench (sass) -.sass-cache/ - -# Installshield output folder -[Ee]xpress/ - -# DocProject is a documentation generator add-in -DocProject/buildhelp/ -DocProject/Help/*.HxT -DocProject/Help/*.HxC -DocProject/Help/*.hhc -DocProject/Help/*.hhk -DocProject/Help/*.hhp -DocProject/Help/Html2 -DocProject/Help/html - -# Click-Once directory -publish/ - -# Publish Web Output -*.[Pp]ublish.xml -*.azurePubxml -# Note: Comment the next line if you want to checkin your web deploy settings, -# but database connection strings (with potential passwords) will be unencrypted -*.pubxml -*.publishproj - -# Microsoft Azure Web App publish settings. Comment the next line if you want to -# checkin your Azure Web App publish settings, but sensitive information contained -# in these scripts will be unencrypted -PublishScripts/ - -# NuGet Packages -*.nupkg -# NuGet Symbol Packages -*.snupkg -# The packages folder can be ignored because of Package Restore -**/[Pp]ackages/* -# except build/, which is used as an MSBuild target. -!**/[Pp]ackages/build/ -# Uncomment if necessary however generally it will be regenerated when needed -#!**/[Pp]ackages/repositories.config -# NuGet v3's project.json files produces more ignorable files -*.nuget.props -*.nuget.targets - -# Microsoft Azure Build Output -csx/ -*.build.csdef - -# Microsoft Azure Emulator -ecf/ -rcf/ - -# Windows Store app package directories and files -AppPackages/ -BundleArtifacts/ -Package.StoreAssociation.xml -_pkginfo.txt -*.appx -*.appxbundle -*.appxupload - -# Visual Studio cache files -# files ending in .cache can be ignored -*.[Cc]ache -# but keep track of directories ending in .cache -!?*.[Cc]ache/ - -# Others -ClientBin/ -~$* -*~ -*.dbmdl -*.dbproj.schemaview -*.jfm -*.pfx -*.publishsettings -orleans.codegen.cs - -# Including strong name files can present a security risk -# (https://github.com/github/gitignore/pull/2483#issue-259490424) -#*.snk - -# Since there are multiple workflows, uncomment next line to ignore bower_components -# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) -#bower_components/ - -# RIA/Silverlight projects -Generated_Code/ - -# Backup & report files from converting an old project file -# to a newer Visual Studio version. Backup files are not needed, -# because we have git ;-) -_UpgradeReport_Files/ -Backup*/ -UpgradeLog*.XML -UpgradeLog*.htm -ServiceFabricBackup/ -*.rptproj.bak - -# SQL Server files -*.mdf -*.ldf -*.ndf - -# Business Intelligence projects -*.rdl.data -*.bim.layout -*.bim_*.settings -*.rptproj.rsuser -*- [Bb]ackup.rdl -*- [Bb]ackup ([0-9]).rdl -*- [Bb]ackup ([0-9][0-9]).rdl - -# Microsoft Fakes -FakesAssemblies/ - -# GhostDoc plugin setting file -*.GhostDoc.xml - -# Node.js Tools for Visual Studio -.ntvs_analysis.dat -node_modules/ - -# Visual Studio 6 build log -*.plg - -# Visual Studio 6 workspace options file -*.opt - -# Visual Studio 6 auto-generated workspace file (contains which files were open etc.) -*.vbw - -# Visual Studio 6 auto-generated project file (contains which files were open etc.) -*.vbp - -# Visual Studio 6 workspace and project file (working project files containing files to include in project) -*.dsw -*.dsp - -# Visual Studio 6 technical files -*.ncb -*.aps - -# Visual Studio LightSwitch build output -**/*.HTMLClient/GeneratedArtifacts -**/*.DesktopClient/GeneratedArtifacts -**/*.DesktopClient/ModelManifest.xml -**/*.Server/GeneratedArtifacts -**/*.Server/ModelManifest.xml -_Pvt_Extensions - -# Paket dependency manager -.paket/paket.exe -paket-files/ - -# FAKE - F# Make -.fake/ - -# CodeRush personal settings -.cr/personal - -# Python Tools for Visual Studio (PTVS) -__pycache__/ -*.pyc - -# Cake - Uncomment if you are using it -# tools/** -# !tools/packages.config - -# Tabs Studio -*.tss - -# Telerik's JustMock configuration file -*.jmconfig - -# BizTalk build output -*.btp.cs -*.btm.cs -*.odx.cs -*.xsd.cs - -# OpenCover UI analysis results -OpenCover/ - -# Azure Stream Analytics local run output -ASALocalRun/ - -# MSBuild Binary and Structured Log -*.binlog - -# AWS SAM Build and Temporary Artifacts folder -.aws-sam - -# NVidia Nsight GPU debugger configuration file -*.nvuser - -# MFractors (Xamarin productivity tool) working folder -.mfractor/ - -# Local History for Visual Studio -.localhistory/ - -# Visual Studio History (VSHistory) files -.vshistory/ - -# BeatPulse healthcheck temp database -healthchecksdb - -# Backup folder for Package Reference Convert tool in Visual Studio 2017 -MigrationBackup/ - -# Ionide (cross platform F# VS Code tools) working folder -.ionide/ - -# Fody - auto-generated XML schema -FodyWeavers.xsd - -# VS Code files for those working on multiple tools -.vscode/* -!.vscode/settings.json -!.vscode/tasks.json -!.vscode/launch.json -!.vscode/extensions.json -*.code-workspace - -# Local History for Visual Studio Code -.history/ - -# Windows Installer files from build outputs -*.cab -*.msi -*.msix -*.msm -*.msp - -# JetBrains Rider -*.sln.iml +[Dd]ebug/ +[Rr]elease/ +[Bb]in/ +[Oo]bj/ + +.idea +.vs diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..eb9e1b4 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,18 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "name": "LanguageTagsCreate", + "type": "coreclr", + "request": "launch", + "preLaunchTask": ".NET Build", + "program": "${workspaceFolder}/LanguageTagsCreate/bin/Debug/net9.0/LanguageTagsCreate.dll", + "args": [ + "${workspaceFolder}", + ], + "cwd": "${workspaceFolder}/LanguageTagsCreate/bin/Debug/net9.0", + "console": "internalConsole", + "stopAtEntry": false + } + ] +} diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..85ced3b --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,50 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "label": ".NET Build", + "type": "dotnet", + "task": "build", + "group": "build", + "problemMatcher": ["$msCompile"], + "presentation": { + "showReuseMessage": false, + "clear": false + } + }, + { + "label": ".NET Format", + "type": "process", + "command": "dotnet", + "args": [ + "format", + "--verify-no-changes", + "--severity=info", + "--verbosity=detailed" + ], + "problemMatcher": [ + "$msCompile" + ], + "presentation": { + "showReuseMessage": false, + "clear": false + } + }, + { + "label": "CSharpier Format", + "type": "process", + "command": "csharpier", + "args": [ + "format", + "." + ], + "problemMatcher": [ + "$msCompile" + ], + "presentation": { + "showReuseMessage": false, + "clear": false + } + }, + ] +} diff --git a/LanguageData/iso6392 b/LanguageData/iso6392 new file mode 100644 index 0000000..9d31266 --- /dev/null +++ b/LanguageData/iso6392 @@ -0,0 +1,487 @@ +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|Greek, Modern (1453-)|grec moderne (après 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|Ndebele, South; South Ndebele|ndébélé du Sud +nde||nd|Ndebele, North; 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; Newari|nepal bhasa; newari +nia|||Nias|nias +nic|||Niger-Kordofanian languages|nigéro-kordofaniennes, langues +niu|||Niuean|niué +nno||nn|Norwegian Nynorsk; Nynorsk, Norwegian|norvégien nynorsk; nynorsk, norvégien +nob||nb|Bokmål, Norwegian; 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 new file mode 100644 index 0000000..7085ce8 --- /dev/null +++ b/LanguageData/iso6392.json @@ -0,0 +1,3413 @@ +{ + "RecordList": [ + { + "Id": "aar", + "Part2B": "aar", + "Part2T": "", + "Part1": "aa", + "RefName": "Afar" + }, + { + "Id": "abk", + "Part2B": "abk", + "Part2T": "", + "Part1": "ab", + "RefName": "Abkhazian" + }, + { + "Id": "ace", + "Part2B": "ace", + "Part2T": "", + "Part1": "", + "RefName": "Achinese" + }, + { + "Id": "ach", + "Part2B": "ach", + "Part2T": "", + "Part1": "", + "RefName": "Acoli" + }, + { + "Id": "ada", + "Part2B": "ada", + "Part2T": "", + "Part1": "", + "RefName": "Adangme" + }, + { + "Id": "ady", + "Part2B": "ady", + "Part2T": "", + "Part1": "", + "RefName": "Adyghe; Adygei" + }, + { + "Id": "afa", + "Part2B": "afa", + "Part2T": "", + "Part1": "", + "RefName": "Afro-Asiatic languages" + }, + { + "Id": "afh", + "Part2B": "afh", + "Part2T": "", + "Part1": "", + "RefName": "Afrihili" + }, + { + "Id": "afr", + "Part2B": "afr", + "Part2T": "", + "Part1": "af", + "RefName": "Afrikaans" + }, + { + "Id": "ain", + "Part2B": "ain", + "Part2T": "", + "Part1": "", + "RefName": "Ainu" + }, + { + "Id": "aka", + "Part2B": "aka", + "Part2T": "", + "Part1": "ak", + "RefName": "Akan" + }, + { + "Id": "akk", + "Part2B": "akk", + "Part2T": "", + "Part1": "", + "RefName": "Akkadian" + }, + { + "Id": "alb", + "Part2B": "alb", + "Part2T": "sqi", + "Part1": "sq", + "RefName": "Albanian" + }, + { + "Id": "ale", + "Part2B": "ale", + "Part2T": "", + "Part1": "", + "RefName": "Aleut" + }, + { + "Id": "alg", + "Part2B": "alg", + "Part2T": "", + "Part1": "", + "RefName": "Algonquian languages" + }, + { + "Id": "alt", + "Part2B": "alt", + "Part2T": "", + "Part1": "", + "RefName": "Southern Altai" + }, + { + "Id": "amh", + "Part2B": "amh", + "Part2T": "", + "Part1": "am", + "RefName": "Amharic" + }, + { + "Id": "ang", + "Part2B": "ang", + "Part2T": "", + "Part1": "", + "RefName": "English, Old (ca.450-1100)" + }, + { + "Id": "anp", + "Part2B": "anp", + "Part2T": "", + "Part1": "", + "RefName": "Angika" + }, + { + "Id": "apa", + "Part2B": "apa", + "Part2T": "", + "Part1": "", + "RefName": "Apache languages" + }, + { + "Id": "ara", + "Part2B": "ara", + "Part2T": "", + "Part1": "ar", + "RefName": "Arabic" + }, + { + "Id": "arc", + "Part2B": "arc", + "Part2T": "", + "Part1": "", + "RefName": "Official Aramaic (700-300 BCE); Imperial Aramaic (700-300 BCE)" + }, + { + "Id": "arg", + "Part2B": "arg", + "Part2T": "", + "Part1": "an", + "RefName": "Aragonese" + }, + { + "Id": "arm", + "Part2B": "arm", + "Part2T": "hye", + "Part1": "hy", + "RefName": "Armenian" + }, + { + "Id": "arn", + "Part2B": "arn", + "Part2T": "", + "Part1": "", + "RefName": "Mapudungun; Mapuche" + }, + { + "Id": "arp", + "Part2B": "arp", + "Part2T": "", + "Part1": "", + "RefName": "Arapaho" + }, + { + "Id": "art", + "Part2B": "art", + "Part2T": "", + "Part1": "", + "RefName": "Artificial languages" + }, + { + "Id": "arw", + "Part2B": "arw", + "Part2T": "", + "Part1": "", + "RefName": "Arawak" + }, + { + "Id": "asm", + "Part2B": "asm", + "Part2T": "", + "Part1": "as", + "RefName": "Assamese" + }, + { + "Id": "ast", + "Part2B": "ast", + "Part2T": "", + "Part1": "", + "RefName": "Asturian; Bable; Leonese; Asturleonese" + }, + { + "Id": "ath", + "Part2B": "ath", + "Part2T": "", + "Part1": "", + "RefName": "Athapascan languages" + }, + { + "Id": "aus", + "Part2B": "aus", + "Part2T": "", + "Part1": "", + "RefName": "Australian languages" + }, + { + "Id": "ava", + "Part2B": "ava", + "Part2T": "", + "Part1": "av", + "RefName": "Avaric" + }, + { + "Id": "ave", + "Part2B": "ave", + "Part2T": "", + "Part1": "ae", + "RefName": "Avestan" + }, + { + "Id": "awa", + "Part2B": "awa", + "Part2T": "", + "Part1": "", + "RefName": "Awadhi" + }, + { + "Id": "aym", + "Part2B": "aym", + "Part2T": "", + "Part1": "ay", + "RefName": "Aymara" + }, + { + "Id": "aze", + "Part2B": "aze", + "Part2T": "", + "Part1": "az", + "RefName": "Azerbaijani" + }, + { + "Id": "bad", + "Part2B": "bad", + "Part2T": "", + "Part1": "", + "RefName": "Banda languages" + }, + { + "Id": "bai", + "Part2B": "bai", + "Part2T": "", + "Part1": "", + "RefName": "Bamileke languages" + }, + { + "Id": "bak", + "Part2B": "bak", + "Part2T": "", + "Part1": "ba", + "RefName": "Bashkir" + }, + { + "Id": "bal", + "Part2B": "bal", + "Part2T": "", + "Part1": "", + "RefName": "Baluchi" + }, + { + "Id": "bam", + "Part2B": "bam", + "Part2T": "", + "Part1": "bm", + "RefName": "Bambara" + }, + { + "Id": "ban", + "Part2B": "ban", + "Part2T": "", + "Part1": "", + "RefName": "Balinese" + }, + { + "Id": "baq", + "Part2B": "baq", + "Part2T": "eus", + "Part1": "eu", + "RefName": "Basque" + }, + { + "Id": "bas", + "Part2B": "bas", + "Part2T": "", + "Part1": "", + "RefName": "Basa" + }, + { + "Id": "bat", + "Part2B": "bat", + "Part2T": "", + "Part1": "", + "RefName": "Baltic languages" + }, + { + "Id": "bej", + "Part2B": "bej", + "Part2T": "", + "Part1": "", + "RefName": "Beja; Bedawiyet" + }, + { + "Id": "bel", + "Part2B": "bel", + "Part2T": "", + "Part1": "be", + "RefName": "Belarusian" + }, + { + "Id": "bem", + "Part2B": "bem", + "Part2T": "", + "Part1": "", + "RefName": "Bemba" + }, + { + "Id": "ben", + "Part2B": "ben", + "Part2T": "", + "Part1": "bn", + "RefName": "Bengali" + }, + { + "Id": "ber", + "Part2B": "ber", + "Part2T": "", + "Part1": "", + "RefName": "Berber languages" + }, + { + "Id": "bho", + "Part2B": "bho", + "Part2T": "", + "Part1": "", + "RefName": "Bhojpuri" + }, + { + "Id": "bih", + "Part2B": "bih", + "Part2T": "", + "Part1": "", + "RefName": "Bihari languages" + }, + { + "Id": "bik", + "Part2B": "bik", + "Part2T": "", + "Part1": "", + "RefName": "Bikol" + }, + { + "Id": "bin", + "Part2B": "bin", + "Part2T": "", + "Part1": "", + "RefName": "Bini; Edo" + }, + { + "Id": "bis", + "Part2B": "bis", + "Part2T": "", + "Part1": "bi", + "RefName": "Bislama" + }, + { + "Id": "bla", + "Part2B": "bla", + "Part2T": "", + "Part1": "", + "RefName": "Siksika" + }, + { + "Id": "bnt", + "Part2B": "bnt", + "Part2T": "", + "Part1": "", + "RefName": "Bantu languages" + }, + { + "Id": "bos", + "Part2B": "bos", + "Part2T": "", + "Part1": "bs", + "RefName": "Bosnian" + }, + { + "Id": "bra", + "Part2B": "bra", + "Part2T": "", + "Part1": "", + "RefName": "Braj" + }, + { + "Id": "bre", + "Part2B": "bre", + "Part2T": "", + "Part1": "br", + "RefName": "Breton" + }, + { + "Id": "btk", + "Part2B": "btk", + "Part2T": "", + "Part1": "", + "RefName": "Batak languages" + }, + { + "Id": "bua", + "Part2B": "bua", + "Part2T": "", + "Part1": "", + "RefName": "Buriat" + }, + { + "Id": "bug", + "Part2B": "bug", + "Part2T": "", + "Part1": "", + "RefName": "Buginese" + }, + { + "Id": "bul", + "Part2B": "bul", + "Part2T": "", + "Part1": "bg", + "RefName": "Bulgarian" + }, + { + "Id": "bur", + "Part2B": "bur", + "Part2T": "mya", + "Part1": "my", + "RefName": "Burmese" + }, + { + "Id": "byn", + "Part2B": "byn", + "Part2T": "", + "Part1": "", + "RefName": "Blin; Bilin" + }, + { + "Id": "cad", + "Part2B": "cad", + "Part2T": "", + "Part1": "", + "RefName": "Caddo" + }, + { + "Id": "cai", + "Part2B": "cai", + "Part2T": "", + "Part1": "", + "RefName": "Central American Indian languages" + }, + { + "Id": "car", + "Part2B": "car", + "Part2T": "", + "Part1": "", + "RefName": "Galibi Carib" + }, + { + "Id": "cat", + "Part2B": "cat", + "Part2T": "", + "Part1": "ca", + "RefName": "Catalan; Valencian" + }, + { + "Id": "cau", + "Part2B": "cau", + "Part2T": "", + "Part1": "", + "RefName": "Caucasian languages" + }, + { + "Id": "ceb", + "Part2B": "ceb", + "Part2T": "", + "Part1": "", + "RefName": "Cebuano" + }, + { + "Id": "cel", + "Part2B": "cel", + "Part2T": "", + "Part1": "", + "RefName": "Celtic languages" + }, + { + "Id": "cha", + "Part2B": "cha", + "Part2T": "", + "Part1": "ch", + "RefName": "Chamorro" + }, + { + "Id": "chb", + "Part2B": "chb", + "Part2T": "", + "Part1": "", + "RefName": "Chibcha" + }, + { + "Id": "che", + "Part2B": "che", + "Part2T": "", + "Part1": "ce", + "RefName": "Chechen" + }, + { + "Id": "chg", + "Part2B": "chg", + "Part2T": "", + "Part1": "", + "RefName": "Chagatai" + }, + { + "Id": "chi", + "Part2B": "chi", + "Part2T": "zho", + "Part1": "zh", + "RefName": "Chinese" + }, + { + "Id": "chk", + "Part2B": "chk", + "Part2T": "", + "Part1": "", + "RefName": "Chuukese" + }, + { + "Id": "chm", + "Part2B": "chm", + "Part2T": "", + "Part1": "", + "RefName": "Mari" + }, + { + "Id": "chn", + "Part2B": "chn", + "Part2T": "", + "Part1": "", + "RefName": "Chinook jargon" + }, + { + "Id": "cho", + "Part2B": "cho", + "Part2T": "", + "Part1": "", + "RefName": "Choctaw" + }, + { + "Id": "chp", + "Part2B": "chp", + "Part2T": "", + "Part1": "", + "RefName": "Chipewyan; Dene Suline" + }, + { + "Id": "chr", + "Part2B": "chr", + "Part2T": "", + "Part1": "", + "RefName": "Cherokee" + }, + { + "Id": "chu", + "Part2B": "chu", + "Part2T": "", + "Part1": "cu", + "RefName": "Church Slavic; Old Slavonic; Church Slavonic; Old Bulgarian; Old Church Slavonic" + }, + { + "Id": "chv", + "Part2B": "chv", + "Part2T": "", + "Part1": "cv", + "RefName": "Chuvash" + }, + { + "Id": "chy", + "Part2B": "chy", + "Part2T": "", + "Part1": "", + "RefName": "Cheyenne" + }, + { + "Id": "cmc", + "Part2B": "cmc", + "Part2T": "", + "Part1": "", + "RefName": "Chamic languages" + }, + { + "Id": "cnr", + "Part2B": "cnr", + "Part2T": "", + "Part1": "", + "RefName": "Montenegrin" + }, + { + "Id": "cop", + "Part2B": "cop", + "Part2T": "", + "Part1": "", + "RefName": "Coptic" + }, + { + "Id": "cor", + "Part2B": "cor", + "Part2T": "", + "Part1": "kw", + "RefName": "Cornish" + }, + { + "Id": "cos", + "Part2B": "cos", + "Part2T": "", + "Part1": "co", + "RefName": "Corsican" + }, + { + "Id": "cpe", + "Part2B": "cpe", + "Part2T": "", + "Part1": "", + "RefName": "Creoles and pidgins, English based" + }, + { + "Id": "cpf", + "Part2B": "cpf", + "Part2T": "", + "Part1": "", + "RefName": "Creoles and pidgins, French-based" + }, + { + "Id": "cpp", + "Part2B": "cpp", + "Part2T": "", + "Part1": "", + "RefName": "Creoles and pidgins, Portuguese-based" + }, + { + "Id": "cre", + "Part2B": "cre", + "Part2T": "", + "Part1": "cr", + "RefName": "Cree" + }, + { + "Id": "crh", + "Part2B": "crh", + "Part2T": "", + "Part1": "", + "RefName": "Crimean Tatar; Crimean Turkish" + }, + { + "Id": "crp", + "Part2B": "crp", + "Part2T": "", + "Part1": "", + "RefName": "Creoles and pidgins" + }, + { + "Id": "csb", + "Part2B": "csb", + "Part2T": "", + "Part1": "", + "RefName": "Kashubian" + }, + { + "Id": "cus", + "Part2B": "cus", + "Part2T": "", + "Part1": "", + "RefName": "Cushitic languages" + }, + { + "Id": "cze", + "Part2B": "cze", + "Part2T": "ces", + "Part1": "cs", + "RefName": "Czech" + }, + { + "Id": "dak", + "Part2B": "dak", + "Part2T": "", + "Part1": "", + "RefName": "Dakota" + }, + { + "Id": "dan", + "Part2B": "dan", + "Part2T": "", + "Part1": "da", + "RefName": "Danish" + }, + { + "Id": "dar", + "Part2B": "dar", + "Part2T": "", + "Part1": "", + "RefName": "Dargwa" + }, + { + "Id": "day", + "Part2B": "day", + "Part2T": "", + "Part1": "", + "RefName": "Land Dayak languages" + }, + { + "Id": "del", + "Part2B": "del", + "Part2T": "", + "Part1": "", + "RefName": "Delaware" + }, + { + "Id": "den", + "Part2B": "den", + "Part2T": "", + "Part1": "", + "RefName": "Slave (Athapascan)" + }, + { + "Id": "dgr", + "Part2B": "dgr", + "Part2T": "", + "Part1": "", + "RefName": "Tlicho; Dogrib" + }, + { + "Id": "din", + "Part2B": "din", + "Part2T": "", + "Part1": "", + "RefName": "Dinka" + }, + { + "Id": "div", + "Part2B": "div", + "Part2T": "", + "Part1": "dv", + "RefName": "Divehi; Dhivehi; Maldivian" + }, + { + "Id": "doi", + "Part2B": "doi", + "Part2T": "", + "Part1": "", + "RefName": "Dogri" + }, + { + "Id": "dra", + "Part2B": "dra", + "Part2T": "", + "Part1": "", + "RefName": "Dravidian languages" + }, + { + "Id": "dsb", + "Part2B": "dsb", + "Part2T": "", + "Part1": "", + "RefName": "Lower Sorbian" + }, + { + "Id": "dua", + "Part2B": "dua", + "Part2T": "", + "Part1": "", + "RefName": "Duala" + }, + { + "Id": "dum", + "Part2B": "dum", + "Part2T": "", + "Part1": "", + "RefName": "Dutch, Middle (ca.1050-1350)" + }, + { + "Id": "dut", + "Part2B": "dut", + "Part2T": "nld", + "Part1": "nl", + "RefName": "Dutch; Flemish" + }, + { + "Id": "dyu", + "Part2B": "dyu", + "Part2T": "", + "Part1": "", + "RefName": "Dyula" + }, + { + "Id": "dzo", + "Part2B": "dzo", + "Part2T": "", + "Part1": "dz", + "RefName": "Dzongkha" + }, + { + "Id": "efi", + "Part2B": "efi", + "Part2T": "", + "Part1": "", + "RefName": "Efik" + }, + { + "Id": "egy", + "Part2B": "egy", + "Part2T": "", + "Part1": "", + "RefName": "Egyptian (Ancient)" + }, + { + "Id": "eka", + "Part2B": "eka", + "Part2T": "", + "Part1": "", + "RefName": "Ekajuk" + }, + { + "Id": "elx", + "Part2B": "elx", + "Part2T": "", + "Part1": "", + "RefName": "Elamite" + }, + { + "Id": "eng", + "Part2B": "eng", + "Part2T": "", + "Part1": "en", + "RefName": "English" + }, + { + "Id": "enm", + "Part2B": "enm", + "Part2T": "", + "Part1": "", + "RefName": "English, Middle (1100-1500)" + }, + { + "Id": "epo", + "Part2B": "epo", + "Part2T": "", + "Part1": "eo", + "RefName": "Esperanto" + }, + { + "Id": "est", + "Part2B": "est", + "Part2T": "", + "Part1": "et", + "RefName": "Estonian" + }, + { + "Id": "ewe", + "Part2B": "ewe", + "Part2T": "", + "Part1": "ee", + "RefName": "Ewe" + }, + { + "Id": "ewo", + "Part2B": "ewo", + "Part2T": "", + "Part1": "", + "RefName": "Ewondo" + }, + { + "Id": "fan", + "Part2B": "fan", + "Part2T": "", + "Part1": "", + "RefName": "Fang" + }, + { + "Id": "fao", + "Part2B": "fao", + "Part2T": "", + "Part1": "fo", + "RefName": "Faroese" + }, + { + "Id": "fat", + "Part2B": "fat", + "Part2T": "", + "Part1": "", + "RefName": "Fanti" + }, + { + "Id": "fij", + "Part2B": "fij", + "Part2T": "", + "Part1": "fj", + "RefName": "Fijian" + }, + { + "Id": "fil", + "Part2B": "fil", + "Part2T": "", + "Part1": "", + "RefName": "Filipino; Pilipino" + }, + { + "Id": "fin", + "Part2B": "fin", + "Part2T": "", + "Part1": "fi", + "RefName": "Finnish" + }, + { + "Id": "fiu", + "Part2B": "fiu", + "Part2T": "", + "Part1": "", + "RefName": "Finno-Ugrian languages" + }, + { + "Id": "fon", + "Part2B": "fon", + "Part2T": "", + "Part1": "", + "RefName": "Fon" + }, + { + "Id": "fre", + "Part2B": "fre", + "Part2T": "fra", + "Part1": "fr", + "RefName": "French" + }, + { + "Id": "frm", + "Part2B": "frm", + "Part2T": "", + "Part1": "", + "RefName": "French, Middle (ca.1400-1600)" + }, + { + "Id": "fro", + "Part2B": "fro", + "Part2T": "", + "Part1": "", + "RefName": "French, Old (842-ca.1400)" + }, + { + "Id": "frr", + "Part2B": "frr", + "Part2T": "", + "Part1": "", + "RefName": "Northern Frisian" + }, + { + "Id": "frs", + "Part2B": "frs", + "Part2T": "", + "Part1": "", + "RefName": "Eastern Frisian" + }, + { + "Id": "fry", + "Part2B": "fry", + "Part2T": "", + "Part1": "fy", + "RefName": "Western Frisian" + }, + { + "Id": "ful", + "Part2B": "ful", + "Part2T": "", + "Part1": "ff", + "RefName": "Fulah" + }, + { + "Id": "fur", + "Part2B": "fur", + "Part2T": "", + "Part1": "", + "RefName": "Friulian" + }, + { + "Id": "gaa", + "Part2B": "gaa", + "Part2T": "", + "Part1": "", + "RefName": "Ga" + }, + { + "Id": "gay", + "Part2B": "gay", + "Part2T": "", + "Part1": "", + "RefName": "Gayo" + }, + { + "Id": "gba", + "Part2B": "gba", + "Part2T": "", + "Part1": "", + "RefName": "Gbaya" + }, + { + "Id": "gem", + "Part2B": "gem", + "Part2T": "", + "Part1": "", + "RefName": "Germanic languages" + }, + { + "Id": "geo", + "Part2B": "geo", + "Part2T": "kat", + "Part1": "ka", + "RefName": "Georgian" + }, + { + "Id": "ger", + "Part2B": "ger", + "Part2T": "deu", + "Part1": "de", + "RefName": "German" + }, + { + "Id": "gez", + "Part2B": "gez", + "Part2T": "", + "Part1": "", + "RefName": "Geez" + }, + { + "Id": "gil", + "Part2B": "gil", + "Part2T": "", + "Part1": "", + "RefName": "Gilbertese" + }, + { + "Id": "gla", + "Part2B": "gla", + "Part2T": "", + "Part1": "gd", + "RefName": "Gaelic; Scottish Gaelic" + }, + { + "Id": "gle", + "Part2B": "gle", + "Part2T": "", + "Part1": "ga", + "RefName": "Irish" + }, + { + "Id": "glg", + "Part2B": "glg", + "Part2T": "", + "Part1": "gl", + "RefName": "Galician" + }, + { + "Id": "glv", + "Part2B": "glv", + "Part2T": "", + "Part1": "gv", + "RefName": "Manx" + }, + { + "Id": "gmh", + "Part2B": "gmh", + "Part2T": "", + "Part1": "", + "RefName": "German, Middle High (ca.1050-1500)" + }, + { + "Id": "goh", + "Part2B": "goh", + "Part2T": "", + "Part1": "", + "RefName": "German, Old High (ca.750-1050)" + }, + { + "Id": "gon", + "Part2B": "gon", + "Part2T": "", + "Part1": "", + "RefName": "Gondi" + }, + { + "Id": "gor", + "Part2B": "gor", + "Part2T": "", + "Part1": "", + "RefName": "Gorontalo" + }, + { + "Id": "got", + "Part2B": "got", + "Part2T": "", + "Part1": "", + "RefName": "Gothic" + }, + { + "Id": "grb", + "Part2B": "grb", + "Part2T": "", + "Part1": "", + "RefName": "Grebo" + }, + { + "Id": "grc", + "Part2B": "grc", + "Part2T": "", + "Part1": "", + "RefName": "Greek, Ancient (to 1453)" + }, + { + "Id": "gre", + "Part2B": "gre", + "Part2T": "ell", + "Part1": "el", + "RefName": "Greek, Modern (1453-)" + }, + { + "Id": "grn", + "Part2B": "grn", + "Part2T": "", + "Part1": "gn", + "RefName": "Guarani" + }, + { + "Id": "gsw", + "Part2B": "gsw", + "Part2T": "", + "Part1": "", + "RefName": "Swiss German; Alemannic; Alsatian" + }, + { + "Id": "guj", + "Part2B": "guj", + "Part2T": "", + "Part1": "gu", + "RefName": "Gujarati" + }, + { + "Id": "gwi", + "Part2B": "gwi", + "Part2T": "", + "Part1": "", + "RefName": "Gwich\u0027in" + }, + { + "Id": "hai", + "Part2B": "hai", + "Part2T": "", + "Part1": "", + "RefName": "Haida" + }, + { + "Id": "hat", + "Part2B": "hat", + "Part2T": "", + "Part1": "ht", + "RefName": "Haitian; Haitian Creole" + }, + { + "Id": "hau", + "Part2B": "hau", + "Part2T": "", + "Part1": "ha", + "RefName": "Hausa" + }, + { + "Id": "haw", + "Part2B": "haw", + "Part2T": "", + "Part1": "", + "RefName": "Hawaiian" + }, + { + "Id": "heb", + "Part2B": "heb", + "Part2T": "", + "Part1": "he", + "RefName": "Hebrew" + }, + { + "Id": "her", + "Part2B": "her", + "Part2T": "", + "Part1": "hz", + "RefName": "Herero" + }, + { + "Id": "hil", + "Part2B": "hil", + "Part2T": "", + "Part1": "", + "RefName": "Hiligaynon" + }, + { + "Id": "him", + "Part2B": "him", + "Part2T": "", + "Part1": "", + "RefName": "Himachali languages; Western Pahari languages" + }, + { + "Id": "hin", + "Part2B": "hin", + "Part2T": "", + "Part1": "hi", + "RefName": "Hindi" + }, + { + "Id": "hit", + "Part2B": "hit", + "Part2T": "", + "Part1": "", + "RefName": "Hittite" + }, + { + "Id": "hmn", + "Part2B": "hmn", + "Part2T": "", + "Part1": "", + "RefName": "Hmong; Mong" + }, + { + "Id": "hmo", + "Part2B": "hmo", + "Part2T": "", + "Part1": "ho", + "RefName": "Hiri Motu" + }, + { + "Id": "hrv", + "Part2B": "hrv", + "Part2T": "", + "Part1": "hr", + "RefName": "Croatian" + }, + { + "Id": "hsb", + "Part2B": "hsb", + "Part2T": "", + "Part1": "", + "RefName": "Upper Sorbian" + }, + { + "Id": "hun", + "Part2B": "hun", + "Part2T": "", + "Part1": "hu", + "RefName": "Hungarian" + }, + { + "Id": "hup", + "Part2B": "hup", + "Part2T": "", + "Part1": "", + "RefName": "Hupa" + }, + { + "Id": "iba", + "Part2B": "iba", + "Part2T": "", + "Part1": "", + "RefName": "Iban" + }, + { + "Id": "ibo", + "Part2B": "ibo", + "Part2T": "", + "Part1": "ig", + "RefName": "Igbo" + }, + { + "Id": "ice", + "Part2B": "ice", + "Part2T": "isl", + "Part1": "is", + "RefName": "Icelandic" + }, + { + "Id": "ido", + "Part2B": "ido", + "Part2T": "", + "Part1": "io", + "RefName": "Ido" + }, + { + "Id": "iii", + "Part2B": "iii", + "Part2T": "", + "Part1": "ii", + "RefName": "Sichuan Yi; Nuosu" + }, + { + "Id": "ijo", + "Part2B": "ijo", + "Part2T": "", + "Part1": "", + "RefName": "Ijo languages" + }, + { + "Id": "iku", + "Part2B": "iku", + "Part2T": "", + "Part1": "iu", + "RefName": "Inuktitut" + }, + { + "Id": "ile", + "Part2B": "ile", + "Part2T": "", + "Part1": "ie", + "RefName": "Interlingue; Occidental" + }, + { + "Id": "ilo", + "Part2B": "ilo", + "Part2T": "", + "Part1": "", + "RefName": "Iloko" + }, + { + "Id": "ina", + "Part2B": "ina", + "Part2T": "", + "Part1": "ia", + "RefName": "Interlingua (International Auxiliary Language Association)" + }, + { + "Id": "inc", + "Part2B": "inc", + "Part2T": "", + "Part1": "", + "RefName": "Indic languages" + }, + { + "Id": "ind", + "Part2B": "ind", + "Part2T": "", + "Part1": "id", + "RefName": "Indonesian" + }, + { + "Id": "ine", + "Part2B": "ine", + "Part2T": "", + "Part1": "", + "RefName": "Indo-European languages" + }, + { + "Id": "inh", + "Part2B": "inh", + "Part2T": "", + "Part1": "", + "RefName": "Ingush" + }, + { + "Id": "ipk", + "Part2B": "ipk", + "Part2T": "", + "Part1": "ik", + "RefName": "Inupiaq" + }, + { + "Id": "ira", + "Part2B": "ira", + "Part2T": "", + "Part1": "", + "RefName": "Iranian languages" + }, + { + "Id": "iro", + "Part2B": "iro", + "Part2T": "", + "Part1": "", + "RefName": "Iroquoian languages" + }, + { + "Id": "ita", + "Part2B": "ita", + "Part2T": "", + "Part1": "it", + "RefName": "Italian" + }, + { + "Id": "jav", + "Part2B": "jav", + "Part2T": "", + "Part1": "jv", + "RefName": "Javanese" + }, + { + "Id": "jbo", + "Part2B": "jbo", + "Part2T": "", + "Part1": "", + "RefName": "Lojban" + }, + { + "Id": "jpn", + "Part2B": "jpn", + "Part2T": "", + "Part1": "ja", + "RefName": "Japanese" + }, + { + "Id": "jpr", + "Part2B": "jpr", + "Part2T": "", + "Part1": "", + "RefName": "Judeo-Persian" + }, + { + "Id": "jrb", + "Part2B": "jrb", + "Part2T": "", + "Part1": "", + "RefName": "Judeo-Arabic" + }, + { + "Id": "kaa", + "Part2B": "kaa", + "Part2T": "", + "Part1": "", + "RefName": "Kara-Kalpak" + }, + { + "Id": "kab", + "Part2B": "kab", + "Part2T": "", + "Part1": "", + "RefName": "Kabyle" + }, + { + "Id": "kac", + "Part2B": "kac", + "Part2T": "", + "Part1": "", + "RefName": "Kachin; Jingpho" + }, + { + "Id": "kal", + "Part2B": "kal", + "Part2T": "", + "Part1": "kl", + "RefName": "Kalaallisut; Greenlandic" + }, + { + "Id": "kam", + "Part2B": "kam", + "Part2T": "", + "Part1": "", + "RefName": "Kamba" + }, + { + "Id": "kan", + "Part2B": "kan", + "Part2T": "", + "Part1": "kn", + "RefName": "Kannada" + }, + { + "Id": "kar", + "Part2B": "kar", + "Part2T": "", + "Part1": "", + "RefName": "Karen languages" + }, + { + "Id": "kas", + "Part2B": "kas", + "Part2T": "", + "Part1": "ks", + "RefName": "Kashmiri" + }, + { + "Id": "kau", + "Part2B": "kau", + "Part2T": "", + "Part1": "kr", + "RefName": "Kanuri" + }, + { + "Id": "kaw", + "Part2B": "kaw", + "Part2T": "", + "Part1": "", + "RefName": "Kawi" + }, + { + "Id": "kaz", + "Part2B": "kaz", + "Part2T": "", + "Part1": "kk", + "RefName": "Kazakh" + }, + { + "Id": "kbd", + "Part2B": "kbd", + "Part2T": "", + "Part1": "", + "RefName": "Kabardian" + }, + { + "Id": "kha", + "Part2B": "kha", + "Part2T": "", + "Part1": "", + "RefName": "Khasi" + }, + { + "Id": "khi", + "Part2B": "khi", + "Part2T": "", + "Part1": "", + "RefName": "Khoisan languages" + }, + { + "Id": "khm", + "Part2B": "khm", + "Part2T": "", + "Part1": "km", + "RefName": "Central Khmer" + }, + { + "Id": "kho", + "Part2B": "kho", + "Part2T": "", + "Part1": "", + "RefName": "Khotanese; Sakan" + }, + { + "Id": "kik", + "Part2B": "kik", + "Part2T": "", + "Part1": "ki", + "RefName": "Kikuyu; Gikuyu" + }, + { + "Id": "kin", + "Part2B": "kin", + "Part2T": "", + "Part1": "rw", + "RefName": "Kinyarwanda" + }, + { + "Id": "kir", + "Part2B": "kir", + "Part2T": "", + "Part1": "ky", + "RefName": "Kirghiz; Kyrgyz" + }, + { + "Id": "kmb", + "Part2B": "kmb", + "Part2T": "", + "Part1": "", + "RefName": "Kimbundu" + }, + { + "Id": "kok", + "Part2B": "kok", + "Part2T": "", + "Part1": "", + "RefName": "Konkani" + }, + { + "Id": "kom", + "Part2B": "kom", + "Part2T": "", + "Part1": "kv", + "RefName": "Komi" + }, + { + "Id": "kon", + "Part2B": "kon", + "Part2T": "", + "Part1": "kg", + "RefName": "Kongo" + }, + { + "Id": "kor", + "Part2B": "kor", + "Part2T": "", + "Part1": "ko", + "RefName": "Korean" + }, + { + "Id": "kos", + "Part2B": "kos", + "Part2T": "", + "Part1": "", + "RefName": "Kosraean" + }, + { + "Id": "kpe", + "Part2B": "kpe", + "Part2T": "", + "Part1": "", + "RefName": "Kpelle" + }, + { + "Id": "krc", + "Part2B": "krc", + "Part2T": "", + "Part1": "", + "RefName": "Karachay-Balkar" + }, + { + "Id": "krl", + "Part2B": "krl", + "Part2T": "", + "Part1": "", + "RefName": "Karelian" + }, + { + "Id": "kro", + "Part2B": "kro", + "Part2T": "", + "Part1": "", + "RefName": "Kru languages" + }, + { + "Id": "kru", + "Part2B": "kru", + "Part2T": "", + "Part1": "", + "RefName": "Kurukh" + }, + { + "Id": "kua", + "Part2B": "kua", + "Part2T": "", + "Part1": "kj", + "RefName": "Kuanyama; Kwanyama" + }, + { + "Id": "kum", + "Part2B": "kum", + "Part2T": "", + "Part1": "", + "RefName": "Kumyk" + }, + { + "Id": "kur", + "Part2B": "kur", + "Part2T": "", + "Part1": "ku", + "RefName": "Kurdish" + }, + { + "Id": "kut", + "Part2B": "kut", + "Part2T": "", + "Part1": "", + "RefName": "Kutenai" + }, + { + "Id": "lad", + "Part2B": "lad", + "Part2T": "", + "Part1": "", + "RefName": "Ladino" + }, + { + "Id": "lah", + "Part2B": "lah", + "Part2T": "", + "Part1": "", + "RefName": "Lahnda" + }, + { + "Id": "lam", + "Part2B": "lam", + "Part2T": "", + "Part1": "", + "RefName": "Lamba" + }, + { + "Id": "lao", + "Part2B": "lao", + "Part2T": "", + "Part1": "lo", + "RefName": "Lao" + }, + { + "Id": "lat", + "Part2B": "lat", + "Part2T": "", + "Part1": "la", + "RefName": "Latin" + }, + { + "Id": "lav", + "Part2B": "lav", + "Part2T": "", + "Part1": "lv", + "RefName": "Latvian" + }, + { + "Id": "lez", + "Part2B": "lez", + "Part2T": "", + "Part1": "", + "RefName": "Lezghian" + }, + { + "Id": "lim", + "Part2B": "lim", + "Part2T": "", + "Part1": "li", + "RefName": "Limburgan; Limburger; Limburgish" + }, + { + "Id": "lin", + "Part2B": "lin", + "Part2T": "", + "Part1": "ln", + "RefName": "Lingala" + }, + { + "Id": "lit", + "Part2B": "lit", + "Part2T": "", + "Part1": "lt", + "RefName": "Lithuanian" + }, + { + "Id": "lol", + "Part2B": "lol", + "Part2T": "", + "Part1": "", + "RefName": "Mongo" + }, + { + "Id": "loz", + "Part2B": "loz", + "Part2T": "", + "Part1": "", + "RefName": "Lozi" + }, + { + "Id": "ltz", + "Part2B": "ltz", + "Part2T": "", + "Part1": "lb", + "RefName": "Luxembourgish; Letzeburgesch" + }, + { + "Id": "lua", + "Part2B": "lua", + "Part2T": "", + "Part1": "", + "RefName": "Luba-Lulua" + }, + { + "Id": "lub", + "Part2B": "lub", + "Part2T": "", + "Part1": "lu", + "RefName": "Luba-Katanga" + }, + { + "Id": "lug", + "Part2B": "lug", + "Part2T": "", + "Part1": "lg", + "RefName": "Ganda" + }, + { + "Id": "lui", + "Part2B": "lui", + "Part2T": "", + "Part1": "", + "RefName": "Luiseno" + }, + { + "Id": "lun", + "Part2B": "lun", + "Part2T": "", + "Part1": "", + "RefName": "Lunda" + }, + { + "Id": "luo", + "Part2B": "luo", + "Part2T": "", + "Part1": "", + "RefName": "Luo (Kenya and Tanzania)" + }, + { + "Id": "lus", + "Part2B": "lus", + "Part2T": "", + "Part1": "", + "RefName": "Lushai" + }, + { + "Id": "mac", + "Part2B": "mac", + "Part2T": "mkd", + "Part1": "mk", + "RefName": "Macedonian" + }, + { + "Id": "mad", + "Part2B": "mad", + "Part2T": "", + "Part1": "", + "RefName": "Madurese" + }, + { + "Id": "mag", + "Part2B": "mag", + "Part2T": "", + "Part1": "", + "RefName": "Magahi" + }, + { + "Id": "mah", + "Part2B": "mah", + "Part2T": "", + "Part1": "mh", + "RefName": "Marshallese" + }, + { + "Id": "mai", + "Part2B": "mai", + "Part2T": "", + "Part1": "", + "RefName": "Maithili" + }, + { + "Id": "mak", + "Part2B": "mak", + "Part2T": "", + "Part1": "", + "RefName": "Makasar" + }, + { + "Id": "mal", + "Part2B": "mal", + "Part2T": "", + "Part1": "ml", + "RefName": "Malayalam" + }, + { + "Id": "man", + "Part2B": "man", + "Part2T": "", + "Part1": "", + "RefName": "Mandingo" + }, + { + "Id": "mao", + "Part2B": "mao", + "Part2T": "mri", + "Part1": "mi", + "RefName": "Maori" + }, + { + "Id": "map", + "Part2B": "map", + "Part2T": "", + "Part1": "", + "RefName": "Austronesian languages" + }, + { + "Id": "mar", + "Part2B": "mar", + "Part2T": "", + "Part1": "mr", + "RefName": "Marathi" + }, + { + "Id": "mas", + "Part2B": "mas", + "Part2T": "", + "Part1": "", + "RefName": "Masai" + }, + { + "Id": "may", + "Part2B": "may", + "Part2T": "msa", + "Part1": "ms", + "RefName": "Malay" + }, + { + "Id": "mdf", + "Part2B": "mdf", + "Part2T": "", + "Part1": "", + "RefName": "Moksha" + }, + { + "Id": "mdr", + "Part2B": "mdr", + "Part2T": "", + "Part1": "", + "RefName": "Mandar" + }, + { + "Id": "men", + "Part2B": "men", + "Part2T": "", + "Part1": "", + "RefName": "Mende" + }, + { + "Id": "mga", + "Part2B": "mga", + "Part2T": "", + "Part1": "", + "RefName": "Irish, Middle (900-1200)" + }, + { + "Id": "mic", + "Part2B": "mic", + "Part2T": "", + "Part1": "", + "RefName": "Mi\u0027kmaq; Micmac" + }, + { + "Id": "min", + "Part2B": "min", + "Part2T": "", + "Part1": "", + "RefName": "Minangkabau" + }, + { + "Id": "mis", + "Part2B": "mis", + "Part2T": "", + "Part1": "", + "RefName": "Uncoded languages" + }, + { + "Id": "mkh", + "Part2B": "mkh", + "Part2T": "", + "Part1": "", + "RefName": "Mon-Khmer languages" + }, + { + "Id": "mlg", + "Part2B": "mlg", + "Part2T": "", + "Part1": "mg", + "RefName": "Malagasy" + }, + { + "Id": "mlt", + "Part2B": "mlt", + "Part2T": "", + "Part1": "mt", + "RefName": "Maltese" + }, + { + "Id": "mnc", + "Part2B": "mnc", + "Part2T": "", + "Part1": "", + "RefName": "Manchu" + }, + { + "Id": "mni", + "Part2B": "mni", + "Part2T": "", + "Part1": "", + "RefName": "Manipuri" + }, + { + "Id": "mno", + "Part2B": "mno", + "Part2T": "", + "Part1": "", + "RefName": "Manobo languages" + }, + { + "Id": "moh", + "Part2B": "moh", + "Part2T": "", + "Part1": "", + "RefName": "Mohawk" + }, + { + "Id": "mon", + "Part2B": "mon", + "Part2T": "", + "Part1": "mn", + "RefName": "Mongolian" + }, + { + "Id": "mos", + "Part2B": "mos", + "Part2T": "", + "Part1": "", + "RefName": "Mossi" + }, + { + "Id": "mul", + "Part2B": "mul", + "Part2T": "", + "Part1": "", + "RefName": "Multiple languages" + }, + { + "Id": "mun", + "Part2B": "mun", + "Part2T": "", + "Part1": "", + "RefName": "Munda languages" + }, + { + "Id": "mus", + "Part2B": "mus", + "Part2T": "", + "Part1": "", + "RefName": "Creek" + }, + { + "Id": "mwl", + "Part2B": "mwl", + "Part2T": "", + "Part1": "", + "RefName": "Mirandese" + }, + { + "Id": "mwr", + "Part2B": "mwr", + "Part2T": "", + "Part1": "", + "RefName": "Marwari" + }, + { + "Id": "myn", + "Part2B": "myn", + "Part2T": "", + "Part1": "", + "RefName": "Mayan languages" + }, + { + "Id": "myv", + "Part2B": "myv", + "Part2T": "", + "Part1": "", + "RefName": "Erzya" + }, + { + "Id": "nah", + "Part2B": "nah", + "Part2T": "", + "Part1": "", + "RefName": "Nahuatl languages" + }, + { + "Id": "nai", + "Part2B": "nai", + "Part2T": "", + "Part1": "", + "RefName": "North American Indian languages" + }, + { + "Id": "nap", + "Part2B": "nap", + "Part2T": "", + "Part1": "", + "RefName": "Neapolitan" + }, + { + "Id": "nau", + "Part2B": "nau", + "Part2T": "", + "Part1": "na", + "RefName": "Nauru" + }, + { + "Id": "nav", + "Part2B": "nav", + "Part2T": "", + "Part1": "nv", + "RefName": "Navajo; Navaho" + }, + { + "Id": "nbl", + "Part2B": "nbl", + "Part2T": "", + "Part1": "nr", + "RefName": "Ndebele, South; South Ndebele" + }, + { + "Id": "nde", + "Part2B": "nde", + "Part2T": "", + "Part1": "nd", + "RefName": "Ndebele, North; North Ndebele" + }, + { + "Id": "ndo", + "Part2B": "ndo", + "Part2T": "", + "Part1": "ng", + "RefName": "Ndonga" + }, + { + "Id": "nds", + "Part2B": "nds", + "Part2T": "", + "Part1": "", + "RefName": "Low German; Low Saxon; German, Low; Saxon, Low" + }, + { + "Id": "nep", + "Part2B": "nep", + "Part2T": "", + "Part1": "ne", + "RefName": "Nepali" + }, + { + "Id": "new", + "Part2B": "new", + "Part2T": "", + "Part1": "", + "RefName": "Nepal Bhasa; Newari" + }, + { + "Id": "nia", + "Part2B": "nia", + "Part2T": "", + "Part1": "", + "RefName": "Nias" + }, + { + "Id": "nic", + "Part2B": "nic", + "Part2T": "", + "Part1": "", + "RefName": "Niger-Kordofanian languages" + }, + { + "Id": "niu", + "Part2B": "niu", + "Part2T": "", + "Part1": "", + "RefName": "Niuean" + }, + { + "Id": "nno", + "Part2B": "nno", + "Part2T": "", + "Part1": "nn", + "RefName": "Norwegian Nynorsk; Nynorsk, Norwegian" + }, + { + "Id": "nob", + "Part2B": "nob", + "Part2T": "", + "Part1": "nb", + "RefName": "Bokm\u00E5l, Norwegian; Norwegian Bokm\u00E5l" + }, + { + "Id": "nog", + "Part2B": "nog", + "Part2T": "", + "Part1": "", + "RefName": "Nogai" + }, + { + "Id": "non", + "Part2B": "non", + "Part2T": "", + "Part1": "", + "RefName": "Norse, Old" + }, + { + "Id": "nor", + "Part2B": "nor", + "Part2T": "", + "Part1": "no", + "RefName": "Norwegian" + }, + { + "Id": "nqo", + "Part2B": "nqo", + "Part2T": "", + "Part1": "", + "RefName": "N\u0027Ko" + }, + { + "Id": "nso", + "Part2B": "nso", + "Part2T": "", + "Part1": "", + "RefName": "Pedi; Sepedi; Northern Sotho" + }, + { + "Id": "nub", + "Part2B": "nub", + "Part2T": "", + "Part1": "", + "RefName": "Nubian languages" + }, + { + "Id": "nwc", + "Part2B": "nwc", + "Part2T": "", + "Part1": "", + "RefName": "Classical Newari; Old Newari; Classical Nepal Bhasa" + }, + { + "Id": "nya", + "Part2B": "nya", + "Part2T": "", + "Part1": "ny", + "RefName": "Chichewa; Chewa; Nyanja" + }, + { + "Id": "nym", + "Part2B": "nym", + "Part2T": "", + "Part1": "", + "RefName": "Nyamwezi" + }, + { + "Id": "nyn", + "Part2B": "nyn", + "Part2T": "", + "Part1": "", + "RefName": "Nyankole" + }, + { + "Id": "nyo", + "Part2B": "nyo", + "Part2T": "", + "Part1": "", + "RefName": "Nyoro" + }, + { + "Id": "nzi", + "Part2B": "nzi", + "Part2T": "", + "Part1": "", + "RefName": "Nzima" + }, + { + "Id": "oci", + "Part2B": "oci", + "Part2T": "", + "Part1": "oc", + "RefName": "Occitan (post 1500)" + }, + { + "Id": "oji", + "Part2B": "oji", + "Part2T": "", + "Part1": "oj", + "RefName": "Ojibwa" + }, + { + "Id": "ori", + "Part2B": "ori", + "Part2T": "", + "Part1": "or", + "RefName": "Oriya" + }, + { + "Id": "orm", + "Part2B": "orm", + "Part2T": "", + "Part1": "om", + "RefName": "Oromo" + }, + { + "Id": "osa", + "Part2B": "osa", + "Part2T": "", + "Part1": "", + "RefName": "Osage" + }, + { + "Id": "oss", + "Part2B": "oss", + "Part2T": "", + "Part1": "os", + "RefName": "Ossetian; Ossetic" + }, + { + "Id": "ota", + "Part2B": "ota", + "Part2T": "", + "Part1": "", + "RefName": "Turkish, Ottoman (1500-1928)" + }, + { + "Id": "oto", + "Part2B": "oto", + "Part2T": "", + "Part1": "", + "RefName": "Otomian languages" + }, + { + "Id": "paa", + "Part2B": "paa", + "Part2T": "", + "Part1": "", + "RefName": "Papuan languages" + }, + { + "Id": "pag", + "Part2B": "pag", + "Part2T": "", + "Part1": "", + "RefName": "Pangasinan" + }, + { + "Id": "pal", + "Part2B": "pal", + "Part2T": "", + "Part1": "", + "RefName": "Pahlavi" + }, + { + "Id": "pam", + "Part2B": "pam", + "Part2T": "", + "Part1": "", + "RefName": "Pampanga; Kapampangan" + }, + { + "Id": "pan", + "Part2B": "pan", + "Part2T": "", + "Part1": "pa", + "RefName": "Panjabi; Punjabi" + }, + { + "Id": "pap", + "Part2B": "pap", + "Part2T": "", + "Part1": "", + "RefName": "Papiamento" + }, + { + "Id": "pau", + "Part2B": "pau", + "Part2T": "", + "Part1": "", + "RefName": "Palauan" + }, + { + "Id": "peo", + "Part2B": "peo", + "Part2T": "", + "Part1": "", + "RefName": "Persian, Old (ca.600-400 B.C.)" + }, + { + "Id": "per", + "Part2B": "per", + "Part2T": "fas", + "Part1": "fa", + "RefName": "Persian" + }, + { + "Id": "phi", + "Part2B": "phi", + "Part2T": "", + "Part1": "", + "RefName": "Philippine languages" + }, + { + "Id": "phn", + "Part2B": "phn", + "Part2T": "", + "Part1": "", + "RefName": "Phoenician" + }, + { + "Id": "pli", + "Part2B": "pli", + "Part2T": "", + "Part1": "pi", + "RefName": "Pali" + }, + { + "Id": "pol", + "Part2B": "pol", + "Part2T": "", + "Part1": "pl", + "RefName": "Polish" + }, + { + "Id": "pon", + "Part2B": "pon", + "Part2T": "", + "Part1": "", + "RefName": "Pohnpeian" + }, + { + "Id": "por", + "Part2B": "por", + "Part2T": "", + "Part1": "pt", + "RefName": "Portuguese" + }, + { + "Id": "pra", + "Part2B": "pra", + "Part2T": "", + "Part1": "", + "RefName": "Prakrit languages" + }, + { + "Id": "pro", + "Part2B": "pro", + "Part2T": "", + "Part1": "", + "RefName": "Proven\u00E7al, Old (to 1500); Occitan, Old (to 1500)" + }, + { + "Id": "pus", + "Part2B": "pus", + "Part2T": "", + "Part1": "ps", + "RefName": "Pushto; Pashto" + }, + { + "Id": "qaa-qtz", + "Part2B": "qaa-qtz", + "Part2T": "", + "Part1": "", + "RefName": "Reserved for local use" + }, + { + "Id": "que", + "Part2B": "que", + "Part2T": "", + "Part1": "qu", + "RefName": "Quechua" + }, + { + "Id": "raj", + "Part2B": "raj", + "Part2T": "", + "Part1": "", + "RefName": "Rajasthani" + }, + { + "Id": "rap", + "Part2B": "rap", + "Part2T": "", + "Part1": "", + "RefName": "Rapanui" + }, + { + "Id": "rar", + "Part2B": "rar", + "Part2T": "", + "Part1": "", + "RefName": "Rarotongan; Cook Islands Maori" + }, + { + "Id": "roa", + "Part2B": "roa", + "Part2T": "", + "Part1": "", + "RefName": "Romance languages" + }, + { + "Id": "roh", + "Part2B": "roh", + "Part2T": "", + "Part1": "rm", + "RefName": "Romansh" + }, + { + "Id": "rom", + "Part2B": "rom", + "Part2T": "", + "Part1": "", + "RefName": "Romany" + }, + { + "Id": "rum", + "Part2B": "rum", + "Part2T": "ron", + "Part1": "ro", + "RefName": "Romanian; Moldavian; Moldovan" + }, + { + "Id": "run", + "Part2B": "run", + "Part2T": "", + "Part1": "rn", + "RefName": "Rundi" + }, + { + "Id": "rup", + "Part2B": "rup", + "Part2T": "", + "Part1": "", + "RefName": "Aromanian; Arumanian; Macedo-Romanian" + }, + { + "Id": "rus", + "Part2B": "rus", + "Part2T": "", + "Part1": "ru", + "RefName": "Russian" + }, + { + "Id": "sad", + "Part2B": "sad", + "Part2T": "", + "Part1": "", + "RefName": "Sandawe" + }, + { + "Id": "sag", + "Part2B": "sag", + "Part2T": "", + "Part1": "sg", + "RefName": "Sango" + }, + { + "Id": "sah", + "Part2B": "sah", + "Part2T": "", + "Part1": "", + "RefName": "Yakut" + }, + { + "Id": "sai", + "Part2B": "sai", + "Part2T": "", + "Part1": "", + "RefName": "South American Indian languages" + }, + { + "Id": "sal", + "Part2B": "sal", + "Part2T": "", + "Part1": "", + "RefName": "Salishan languages" + }, + { + "Id": "sam", + "Part2B": "sam", + "Part2T": "", + "Part1": "", + "RefName": "Samaritan Aramaic" + }, + { + "Id": "san", + "Part2B": "san", + "Part2T": "", + "Part1": "sa", + "RefName": "Sanskrit" + }, + { + "Id": "sas", + "Part2B": "sas", + "Part2T": "", + "Part1": "", + "RefName": "Sasak" + }, + { + "Id": "sat", + "Part2B": "sat", + "Part2T": "", + "Part1": "", + "RefName": "Santali" + }, + { + "Id": "scn", + "Part2B": "scn", + "Part2T": "", + "Part1": "", + "RefName": "Sicilian" + }, + { + "Id": "sco", + "Part2B": "sco", + "Part2T": "", + "Part1": "", + "RefName": "Scots" + }, + { + "Id": "sel", + "Part2B": "sel", + "Part2T": "", + "Part1": "", + "RefName": "Selkup" + }, + { + "Id": "sem", + "Part2B": "sem", + "Part2T": "", + "Part1": "", + "RefName": "Semitic languages" + }, + { + "Id": "sga", + "Part2B": "sga", + "Part2T": "", + "Part1": "", + "RefName": "Irish, Old (to 900)" + }, + { + "Id": "sgn", + "Part2B": "sgn", + "Part2T": "", + "Part1": "", + "RefName": "Sign Languages" + }, + { + "Id": "shn", + "Part2B": "shn", + "Part2T": "", + "Part1": "", + "RefName": "Shan" + }, + { + "Id": "sid", + "Part2B": "sid", + "Part2T": "", + "Part1": "", + "RefName": "Sidamo" + }, + { + "Id": "sin", + "Part2B": "sin", + "Part2T": "", + "Part1": "si", + "RefName": "Sinhala; Sinhalese" + }, + { + "Id": "sio", + "Part2B": "sio", + "Part2T": "", + "Part1": "", + "RefName": "Siouan languages" + }, + { + "Id": "sit", + "Part2B": "sit", + "Part2T": "", + "Part1": "", + "RefName": "Sino-Tibetan languages" + }, + { + "Id": "sla", + "Part2B": "sla", + "Part2T": "", + "Part1": "", + "RefName": "Slavic languages" + }, + { + "Id": "slo", + "Part2B": "slo", + "Part2T": "slk", + "Part1": "sk", + "RefName": "Slovak" + }, + { + "Id": "slv", + "Part2B": "slv", + "Part2T": "", + "Part1": "sl", + "RefName": "Slovenian" + }, + { + "Id": "sma", + "Part2B": "sma", + "Part2T": "", + "Part1": "", + "RefName": "Southern Sami" + }, + { + "Id": "sme", + "Part2B": "sme", + "Part2T": "", + "Part1": "se", + "RefName": "Northern Sami" + }, + { + "Id": "smi", + "Part2B": "smi", + "Part2T": "", + "Part1": "", + "RefName": "Sami languages" + }, + { + "Id": "smj", + "Part2B": "smj", + "Part2T": "", + "Part1": "", + "RefName": "Lule Sami" + }, + { + "Id": "smn", + "Part2B": "smn", + "Part2T": "", + "Part1": "", + "RefName": "Inari Sami" + }, + { + "Id": "smo", + "Part2B": "smo", + "Part2T": "", + "Part1": "sm", + "RefName": "Samoan" + }, + { + "Id": "sms", + "Part2B": "sms", + "Part2T": "", + "Part1": "", + "RefName": "Skolt Sami" + }, + { + "Id": "sna", + "Part2B": "sna", + "Part2T": "", + "Part1": "sn", + "RefName": "Shona" + }, + { + "Id": "snd", + "Part2B": "snd", + "Part2T": "", + "Part1": "sd", + "RefName": "Sindhi" + }, + { + "Id": "snk", + "Part2B": "snk", + "Part2T": "", + "Part1": "", + "RefName": "Soninke" + }, + { + "Id": "sog", + "Part2B": "sog", + "Part2T": "", + "Part1": "", + "RefName": "Sogdian" + }, + { + "Id": "som", + "Part2B": "som", + "Part2T": "", + "Part1": "so", + "RefName": "Somali" + }, + { + "Id": "son", + "Part2B": "son", + "Part2T": "", + "Part1": "", + "RefName": "Songhai languages" + }, + { + "Id": "sot", + "Part2B": "sot", + "Part2T": "", + "Part1": "st", + "RefName": "Sotho, Southern" + }, + { + "Id": "spa", + "Part2B": "spa", + "Part2T": "", + "Part1": "es", + "RefName": "Spanish; Castilian" + }, + { + "Id": "srd", + "Part2B": "srd", + "Part2T": "", + "Part1": "sc", + "RefName": "Sardinian" + }, + { + "Id": "srn", + "Part2B": "srn", + "Part2T": "", + "Part1": "", + "RefName": "Sranan Tongo" + }, + { + "Id": "srp", + "Part2B": "srp", + "Part2T": "", + "Part1": "sr", + "RefName": "Serbian" + }, + { + "Id": "srr", + "Part2B": "srr", + "Part2T": "", + "Part1": "", + "RefName": "Serer" + }, + { + "Id": "ssa", + "Part2B": "ssa", + "Part2T": "", + "Part1": "", + "RefName": "Nilo-Saharan languages" + }, + { + "Id": "ssw", + "Part2B": "ssw", + "Part2T": "", + "Part1": "ss", + "RefName": "Swati" + }, + { + "Id": "suk", + "Part2B": "suk", + "Part2T": "", + "Part1": "", + "RefName": "Sukuma" + }, + { + "Id": "sun", + "Part2B": "sun", + "Part2T": "", + "Part1": "su", + "RefName": "Sundanese" + }, + { + "Id": "sus", + "Part2B": "sus", + "Part2T": "", + "Part1": "", + "RefName": "Susu" + }, + { + "Id": "sux", + "Part2B": "sux", + "Part2T": "", + "Part1": "", + "RefName": "Sumerian" + }, + { + "Id": "swa", + "Part2B": "swa", + "Part2T": "", + "Part1": "sw", + "RefName": "Swahili" + }, + { + "Id": "swe", + "Part2B": "swe", + "Part2T": "", + "Part1": "sv", + "RefName": "Swedish" + }, + { + "Id": "syc", + "Part2B": "syc", + "Part2T": "", + "Part1": "", + "RefName": "Classical Syriac" + }, + { + "Id": "syr", + "Part2B": "syr", + "Part2T": "", + "Part1": "", + "RefName": "Syriac" + }, + { + "Id": "tah", + "Part2B": "tah", + "Part2T": "", + "Part1": "ty", + "RefName": "Tahitian" + }, + { + "Id": "tai", + "Part2B": "tai", + "Part2T": "", + "Part1": "", + "RefName": "Tai languages" + }, + { + "Id": "tam", + "Part2B": "tam", + "Part2T": "", + "Part1": "ta", + "RefName": "Tamil" + }, + { + "Id": "tat", + "Part2B": "tat", + "Part2T": "", + "Part1": "tt", + "RefName": "Tatar" + }, + { + "Id": "tel", + "Part2B": "tel", + "Part2T": "", + "Part1": "te", + "RefName": "Telugu" + }, + { + "Id": "tem", + "Part2B": "tem", + "Part2T": "", + "Part1": "", + "RefName": "Timne" + }, + { + "Id": "ter", + "Part2B": "ter", + "Part2T": "", + "Part1": "", + "RefName": "Tereno" + }, + { + "Id": "tet", + "Part2B": "tet", + "Part2T": "", + "Part1": "", + "RefName": "Tetum" + }, + { + "Id": "tgk", + "Part2B": "tgk", + "Part2T": "", + "Part1": "tg", + "RefName": "Tajik" + }, + { + "Id": "tgl", + "Part2B": "tgl", + "Part2T": "", + "Part1": "tl", + "RefName": "Tagalog" + }, + { + "Id": "tha", + "Part2B": "tha", + "Part2T": "", + "Part1": "th", + "RefName": "Thai" + }, + { + "Id": "tib", + "Part2B": "tib", + "Part2T": "bod", + "Part1": "bo", + "RefName": "Tibetan" + }, + { + "Id": "tig", + "Part2B": "tig", + "Part2T": "", + "Part1": "", + "RefName": "Tigre" + }, + { + "Id": "tir", + "Part2B": "tir", + "Part2T": "", + "Part1": "ti", + "RefName": "Tigrinya" + }, + { + "Id": "tiv", + "Part2B": "tiv", + "Part2T": "", + "Part1": "", + "RefName": "Tiv" + }, + { + "Id": "tkl", + "Part2B": "tkl", + "Part2T": "", + "Part1": "", + "RefName": "Tokelau" + }, + { + "Id": "tlh", + "Part2B": "tlh", + "Part2T": "", + "Part1": "", + "RefName": "Klingon; tlhIngan-Hol" + }, + { + "Id": "tli", + "Part2B": "tli", + "Part2T": "", + "Part1": "", + "RefName": "Tlingit" + }, + { + "Id": "tmh", + "Part2B": "tmh", + "Part2T": "", + "Part1": "", + "RefName": "Tamashek" + }, + { + "Id": "tog", + "Part2B": "tog", + "Part2T": "", + "Part1": "", + "RefName": "Tonga (Nyasa)" + }, + { + "Id": "ton", + "Part2B": "ton", + "Part2T": "", + "Part1": "to", + "RefName": "Tonga (Tonga Islands)" + }, + { + "Id": "tpi", + "Part2B": "tpi", + "Part2T": "", + "Part1": "", + "RefName": "Tok Pisin" + }, + { + "Id": "tsi", + "Part2B": "tsi", + "Part2T": "", + "Part1": "", + "RefName": "Tsimshian" + }, + { + "Id": "tsn", + "Part2B": "tsn", + "Part2T": "", + "Part1": "tn", + "RefName": "Tswana" + }, + { + "Id": "tso", + "Part2B": "tso", + "Part2T": "", + "Part1": "ts", + "RefName": "Tsonga" + }, + { + "Id": "tuk", + "Part2B": "tuk", + "Part2T": "", + "Part1": "tk", + "RefName": "Turkmen" + }, + { + "Id": "tum", + "Part2B": "tum", + "Part2T": "", + "Part1": "", + "RefName": "Tumbuka" + }, + { + "Id": "tup", + "Part2B": "tup", + "Part2T": "", + "Part1": "", + "RefName": "Tupi languages" + }, + { + "Id": "tur", + "Part2B": "tur", + "Part2T": "", + "Part1": "tr", + "RefName": "Turkish" + }, + { + "Id": "tut", + "Part2B": "tut", + "Part2T": "", + "Part1": "", + "RefName": "Altaic languages" + }, + { + "Id": "tvl", + "Part2B": "tvl", + "Part2T": "", + "Part1": "", + "RefName": "Tuvalu" + }, + { + "Id": "twi", + "Part2B": "twi", + "Part2T": "", + "Part1": "tw", + "RefName": "Twi" + }, + { + "Id": "tyv", + "Part2B": "tyv", + "Part2T": "", + "Part1": "", + "RefName": "Tuvinian" + }, + { + "Id": "udm", + "Part2B": "udm", + "Part2T": "", + "Part1": "", + "RefName": "Udmurt" + }, + { + "Id": "uga", + "Part2B": "uga", + "Part2T": "", + "Part1": "", + "RefName": "Ugaritic" + }, + { + "Id": "uig", + "Part2B": "uig", + "Part2T": "", + "Part1": "ug", + "RefName": "Uighur; Uyghur" + }, + { + "Id": "ukr", + "Part2B": "ukr", + "Part2T": "", + "Part1": "uk", + "RefName": "Ukrainian" + }, + { + "Id": "umb", + "Part2B": "umb", + "Part2T": "", + "Part1": "", + "RefName": "Umbundu" + }, + { + "Id": "und", + "Part2B": "und", + "Part2T": "", + "Part1": "", + "RefName": "Undetermined" + }, + { + "Id": "urd", + "Part2B": "urd", + "Part2T": "", + "Part1": "ur", + "RefName": "Urdu" + }, + { + "Id": "uzb", + "Part2B": "uzb", + "Part2T": "", + "Part1": "uz", + "RefName": "Uzbek" + }, + { + "Id": "vai", + "Part2B": "vai", + "Part2T": "", + "Part1": "", + "RefName": "Vai" + }, + { + "Id": "ven", + "Part2B": "ven", + "Part2T": "", + "Part1": "ve", + "RefName": "Venda" + }, + { + "Id": "vie", + "Part2B": "vie", + "Part2T": "", + "Part1": "vi", + "RefName": "Vietnamese" + }, + { + "Id": "vol", + "Part2B": "vol", + "Part2T": "", + "Part1": "vo", + "RefName": "Volap\u00FCk" + }, + { + "Id": "vot", + "Part2B": "vot", + "Part2T": "", + "Part1": "", + "RefName": "Votic" + }, + { + "Id": "wak", + "Part2B": "wak", + "Part2T": "", + "Part1": "", + "RefName": "Wakashan languages" + }, + { + "Id": "wal", + "Part2B": "wal", + "Part2T": "", + "Part1": "", + "RefName": "Wolaitta; Wolaytta" + }, + { + "Id": "war", + "Part2B": "war", + "Part2T": "", + "Part1": "", + "RefName": "Waray" + }, + { + "Id": "was", + "Part2B": "was", + "Part2T": "", + "Part1": "", + "RefName": "Washo" + }, + { + "Id": "wel", + "Part2B": "wel", + "Part2T": "cym", + "Part1": "cy", + "RefName": "Welsh" + }, + { + "Id": "wen", + "Part2B": "wen", + "Part2T": "", + "Part1": "", + "RefName": "Sorbian languages" + }, + { + "Id": "wln", + "Part2B": "wln", + "Part2T": "", + "Part1": "wa", + "RefName": "Walloon" + }, + { + "Id": "wol", + "Part2B": "wol", + "Part2T": "", + "Part1": "wo", + "RefName": "Wolof" + }, + { + "Id": "xal", + "Part2B": "xal", + "Part2T": "", + "Part1": "", + "RefName": "Kalmyk; Oirat" + }, + { + "Id": "xho", + "Part2B": "xho", + "Part2T": "", + "Part1": "xh", + "RefName": "Xhosa" + }, + { + "Id": "yao", + "Part2B": "yao", + "Part2T": "", + "Part1": "", + "RefName": "Yao" + }, + { + "Id": "yap", + "Part2B": "yap", + "Part2T": "", + "Part1": "", + "RefName": "Yapese" + }, + { + "Id": "yid", + "Part2B": "yid", + "Part2T": "", + "Part1": "yi", + "RefName": "Yiddish" + }, + { + "Id": "yor", + "Part2B": "yor", + "Part2T": "", + "Part1": "yo", + "RefName": "Yoruba" + }, + { + "Id": "ypk", + "Part2B": "ypk", + "Part2T": "", + "Part1": "", + "RefName": "Yupik languages" + }, + { + "Id": "zap", + "Part2B": "zap", + "Part2T": "", + "Part1": "", + "RefName": "Zapotec" + }, + { + "Id": "zbl", + "Part2B": "zbl", + "Part2T": "", + "Part1": "", + "RefName": "Blissymbols; Blissymbolics; Bliss" + }, + { + "Id": "zen", + "Part2B": "zen", + "Part2T": "", + "Part1": "", + "RefName": "Zenaga" + }, + { + "Id": "zgh", + "Part2B": "zgh", + "Part2T": "", + "Part1": "", + "RefName": "Standard Moroccan Tamazight" + }, + { + "Id": "zha", + "Part2B": "zha", + "Part2T": "", + "Part1": "za", + "RefName": "Zhuang; Chuang" + }, + { + "Id": "znd", + "Part2B": "znd", + "Part2T": "", + "Part1": "", + "RefName": "Zande languages" + }, + { + "Id": "zul", + "Part2B": "zul", + "Part2T": "", + "Part1": "zu", + "RefName": "Zulu" + }, + { + "Id": "zun", + "Part2B": "zun", + "Part2T": "", + "Part1": "", + "RefName": "Zuni" + }, + { + "Id": "zxx", + "Part2B": "zxx", + "Part2T": "", + "Part1": "", + "RefName": "No linguistic content; Not applicable" + }, + { + "Id": "zza", + "Part2B": "zza", + "Part2T": "", + "Part1": "", + "RefName": "Zaza; Dimili; Dimli; Kirdki; Kirmanjki; Zazaki" + } + ] +} \ No newline at end of file diff --git a/LanguageData/iso6393 b/LanguageData/iso6393 new file mode 100644 index 0000000..a726253 --- /dev/null +++ b/LanguageData/iso6393 @@ -0,0 +1,7924 @@ +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 +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 Clallam +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 Slave (Athapascan) +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 +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 Han +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 (International Auxiliary Language Association) +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 (Menchum Division) +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 Harijan Kinnauri +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 Kutenai +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 Kwakiutl +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 +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 Luiseno +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 L 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 Male (Papua New Guinea) +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 (Ethiopia) +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 Nyanja +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 +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 +osi I L Osing +osn I H Old Sundanese +oso I L Ososo +osp I H Old Spanish +oss oss oss os I L Ossetian +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 +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 Sarsi +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 Isu (Fako Division) +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 +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 Wab +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 Yasa +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 +yol I E Yola +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 +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 Mpuono +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 new file mode 100644 index 0000000..8a8e5f8 --- /dev/null +++ b/LanguageData/iso6393.json @@ -0,0 +1,79234 @@ +{ + "RecordList": [ + { + "Id": "aaa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ghotuo", + "Comment": "" + }, + { + "Id": "aab", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Alumu-Tesu", + "Comment": "" + }, + { + "Id": "aac", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ari", + "Comment": "" + }, + { + "Id": "aad", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Amal", + "Comment": "" + }, + { + "Id": "aae", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Arb\u00EBresh\u00EB Albanian", + "Comment": "" + }, + { + "Id": "aaf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Aranadan", + "Comment": "" + }, + { + "Id": "aag", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ambrak", + "Comment": "" + }, + { + "Id": "aah", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Abu\u0027 Arapesh", + "Comment": "" + }, + { + "Id": "aai", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Arifama-Miniafia", + "Comment": "" + }, + { + "Id": "aak", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ankave", + "Comment": "" + }, + { + "Id": "aal", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Afade", + "Comment": "" + }, + { + "Id": "aan", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Anamb\u00E9", + "Comment": "" + }, + { + "Id": "aao", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Algerian Saharan Arabic", + "Comment": "" + }, + { + "Id": "aap", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Par\u00E1 Ar\u00E1ra", + "Comment": "" + }, + { + "Id": "aaq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Eastern Abnaki", + "Comment": "" + }, + { + "Id": "aar", + "Part2B": "aar", + "Part2T": "aar", + "Part1": "aa", + "Scope": "I", + "LanguageType": "L", + "RefName": "Afar", + "Comment": "" + }, + { + "Id": "aas", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Aas\u00E1x", + "Comment": "" + }, + { + "Id": "aat", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Arvanitika Albanian", + "Comment": "" + }, + { + "Id": "aau", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Abau", + "Comment": "" + }, + { + "Id": "aaw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Solong", + "Comment": "" + }, + { + "Id": "aax", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mandobo Atas", + "Comment": "" + }, + { + "Id": "aaz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Amarasi", + "Comment": "" + }, + { + "Id": "aba", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ab\u00E9", + "Comment": "" + }, + { + "Id": "abb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bankon", + "Comment": "" + }, + { + "Id": "abc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ambala Ayta", + "Comment": "" + }, + { + "Id": "abd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Manide", + "Comment": "" + }, + { + "Id": "abe", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Western Abnaki", + "Comment": "" + }, + { + "Id": "abf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Abai Sungai", + "Comment": "" + }, + { + "Id": "abg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Abaga", + "Comment": "" + }, + { + "Id": "abh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tajiki Arabic", + "Comment": "" + }, + { + "Id": "abi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Abidji", + "Comment": "" + }, + { + "Id": "abj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Aka-Bea", + "Comment": "" + }, + { + "Id": "abk", + "Part2B": "abk", + "Part2T": "abk", + "Part1": "ab", + "Scope": "I", + "LanguageType": "L", + "RefName": "Abkhazian", + "Comment": "" + }, + { + "Id": "abl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lampung Nyo", + "Comment": "" + }, + { + "Id": "abm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Abanyom", + "Comment": "" + }, + { + "Id": "abn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Abua", + "Comment": "" + }, + { + "Id": "abo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Abon", + "Comment": "" + }, + { + "Id": "abp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Abellen Ayta", + "Comment": "" + }, + { + "Id": "abq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Abaza", + "Comment": "" + }, + { + "Id": "abr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Abron", + "Comment": "" + }, + { + "Id": "abs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ambonese Malay", + "Comment": "" + }, + { + "Id": "abt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ambulas", + "Comment": "" + }, + { + "Id": "abu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Abure", + "Comment": "" + }, + { + "Id": "abv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Baharna Arabic", + "Comment": "" + }, + { + "Id": "abw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pal", + "Comment": "" + }, + { + "Id": "abx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Inabaknon", + "Comment": "" + }, + { + "Id": "aby", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Aneme Wake", + "Comment": "" + }, + { + "Id": "abz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Abui", + "Comment": "" + }, + { + "Id": "aca", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Achagua", + "Comment": "" + }, + { + "Id": "acb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "\u00C1nc\u00E1", + "Comment": "" + }, + { + "Id": "acd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gikyode", + "Comment": "" + }, + { + "Id": "ace", + "Part2B": "ace", + "Part2T": "ace", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Achinese", + "Comment": "" + }, + { + "Id": "acf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Saint Lucian Creole French", + "Comment": "" + }, + { + "Id": "ach", + "Part2B": "ach", + "Part2T": "ach", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Acoli", + "Comment": "" + }, + { + "Id": "aci", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Aka-Cari", + "Comment": "" + }, + { + "Id": "ack", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Aka-Kora", + "Comment": "" + }, + { + "Id": "acl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Akar-Bale", + "Comment": "" + }, + { + "Id": "acm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mesopotamian Arabic", + "Comment": "" + }, + { + "Id": "acn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Achang", + "Comment": "" + }, + { + "Id": "acp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Eastern Acipa", + "Comment": "" + }, + { + "Id": "acq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ta\u0027izzi-Adeni Arabic", + "Comment": "" + }, + { + "Id": "acr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Achi", + "Comment": "" + }, + { + "Id": "acs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Acro\u00E1", + "Comment": "" + }, + { + "Id": "act", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Achterhoeks", + "Comment": "" + }, + { + "Id": "acu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Achuar-Shiwiar", + "Comment": "" + }, + { + "Id": "acv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Achumawi", + "Comment": "" + }, + { + "Id": "acw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hijazi Arabic", + "Comment": "" + }, + { + "Id": "acx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Omani Arabic", + "Comment": "" + }, + { + "Id": "acy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Cypriot Arabic", + "Comment": "" + }, + { + "Id": "acz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Acheron", + "Comment": "" + }, + { + "Id": "ada", + "Part2B": "ada", + "Part2T": "ada", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Adangme", + "Comment": "" + }, + { + "Id": "adb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Atauran", + "Comment": "" + }, + { + "Id": "add", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lidzonka", + "Comment": "" + }, + { + "Id": "ade", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Adele", + "Comment": "" + }, + { + "Id": "adf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dhofari Arabic", + "Comment": "" + }, + { + "Id": "adg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Andegerebinha", + "Comment": "" + }, + { + "Id": "adh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Adhola", + "Comment": "" + }, + { + "Id": "adi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Adi", + "Comment": "" + }, + { + "Id": "adj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Adioukrou", + "Comment": "" + }, + { + "Id": "adl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Galo", + "Comment": "" + }, + { + "Id": "adn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Adang", + "Comment": "" + }, + { + "Id": "ado", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Abu", + "Comment": "" + }, + { + "Id": "adq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Adangbe", + "Comment": "" + }, + { + "Id": "adr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Adonara", + "Comment": "" + }, + { + "Id": "ads", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Adamorobe Sign Language", + "Comment": "" + }, + { + "Id": "adt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Adnyamathanha", + "Comment": "" + }, + { + "Id": "adu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Aduge", + "Comment": "" + }, + { + "Id": "adw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Amundava", + "Comment": "" + }, + { + "Id": "adx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Amdo Tibetan", + "Comment": "" + }, + { + "Id": "ady", + "Part2B": "ady", + "Part2T": "ady", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Adyghe", + "Comment": "" + }, + { + "Id": "adz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Adzera", + "Comment": "" + }, + { + "Id": "aea", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Areba", + "Comment": "" + }, + { + "Id": "aeb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tunisian Arabic", + "Comment": "" + }, + { + "Id": "aec", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Saidi Arabic", + "Comment": "" + }, + { + "Id": "aed", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Argentine Sign Language", + "Comment": "" + }, + { + "Id": "aee", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Northeast Pashai", + "Comment": "" + }, + { + "Id": "aek", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Haeke", + "Comment": "" + }, + { + "Id": "ael", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ambele", + "Comment": "" + }, + { + "Id": "aem", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Arem", + "Comment": "" + }, + { + "Id": "aen", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Armenian Sign Language", + "Comment": "" + }, + { + "Id": "aeq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Aer", + "Comment": "" + }, + { + "Id": "aer", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Eastern Arrernte", + "Comment": "" + }, + { + "Id": "aes", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Alsea", + "Comment": "" + }, + { + "Id": "aeu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Akeu", + "Comment": "" + }, + { + "Id": "aew", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ambakich", + "Comment": "" + }, + { + "Id": "aey", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Amele", + "Comment": "" + }, + { + "Id": "aez", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Aeka", + "Comment": "" + }, + { + "Id": "afb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gulf Arabic", + "Comment": "" + }, + { + "Id": "afd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Andai", + "Comment": "" + }, + { + "Id": "afe", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Putukwam", + "Comment": "" + }, + { + "Id": "afg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Afghan Sign Language", + "Comment": "" + }, + { + "Id": "afh", + "Part2B": "afh", + "Part2T": "afh", + "Part1": "", + "Scope": "I", + "LanguageType": "C", + "RefName": "Afrihili", + "Comment": "" + }, + { + "Id": "afi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Akrukay", + "Comment": "" + }, + { + "Id": "afk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nanubae", + "Comment": "" + }, + { + "Id": "afn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Defaka", + "Comment": "" + }, + { + "Id": "afo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Eloyi", + "Comment": "" + }, + { + "Id": "afp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tapei", + "Comment": "" + }, + { + "Id": "afr", + "Part2B": "afr", + "Part2T": "afr", + "Part1": "af", + "Scope": "I", + "LanguageType": "L", + "RefName": "Afrikaans", + "Comment": "" + }, + { + "Id": "afs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Afro-Seminole Creole", + "Comment": "" + }, + { + "Id": "aft", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Afitti", + "Comment": "" + }, + { + "Id": "afu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Awutu", + "Comment": "" + }, + { + "Id": "afz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Obokuitai", + "Comment": "" + }, + { + "Id": "aga", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Aguano", + "Comment": "" + }, + { + "Id": "agb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Legbo", + "Comment": "" + }, + { + "Id": "agc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Agatu", + "Comment": "" + }, + { + "Id": "agd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Agarabi", + "Comment": "" + }, + { + "Id": "age", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Angal", + "Comment": "" + }, + { + "Id": "agf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Arguni", + "Comment": "" + }, + { + "Id": "agg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Angor", + "Comment": "" + }, + { + "Id": "agh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ngelima", + "Comment": "" + }, + { + "Id": "agi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Agariya", + "Comment": "" + }, + { + "Id": "agj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Argobba", + "Comment": "" + }, + { + "Id": "agk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Isarog Agta", + "Comment": "" + }, + { + "Id": "agl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Fembe", + "Comment": "" + }, + { + "Id": "agm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Angaataha", + "Comment": "" + }, + { + "Id": "agn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Agutaynen", + "Comment": "" + }, + { + "Id": "ago", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tainae", + "Comment": "" + }, + { + "Id": "agq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Aghem", + "Comment": "" + }, + { + "Id": "agr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Aguaruna", + "Comment": "" + }, + { + "Id": "ags", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Esimbi", + "Comment": "" + }, + { + "Id": "agt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Central Cagayan Agta", + "Comment": "" + }, + { + "Id": "agu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Aguacateco", + "Comment": "" + }, + { + "Id": "agv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Remontado Dumagat", + "Comment": "" + }, + { + "Id": "agw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kahua", + "Comment": "" + }, + { + "Id": "agx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Aghul", + "Comment": "" + }, + { + "Id": "agy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southern Alta", + "Comment": "" + }, + { + "Id": "agz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mt. Iriga Agta", + "Comment": "" + }, + { + "Id": "aha", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ahanta", + "Comment": "" + }, + { + "Id": "ahb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Axamb", + "Comment": "" + }, + { + "Id": "ahg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Qimant", + "Comment": "" + }, + { + "Id": "ahh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Aghu", + "Comment": "" + }, + { + "Id": "ahi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tiagbamrin Aizi", + "Comment": "" + }, + { + "Id": "ahk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Akha", + "Comment": "" + }, + { + "Id": "ahl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Igo", + "Comment": "" + }, + { + "Id": "ahm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mobumrin Aizi", + "Comment": "" + }, + { + "Id": "ahn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "\u00C0h\u00E0n", + "Comment": "" + }, + { + "Id": "aho", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Ahom", + "Comment": "" + }, + { + "Id": "ahp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Aproumu Aizi", + "Comment": "" + }, + { + "Id": "ahr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ahirani", + "Comment": "" + }, + { + "Id": "ahs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ashe", + "Comment": "" + }, + { + "Id": "aht", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ahtena", + "Comment": "" + }, + { + "Id": "aia", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Arosi", + "Comment": "" + }, + { + "Id": "aib", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ainu (China)", + "Comment": "" + }, + { + "Id": "aic", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ainbai", + "Comment": "" + }, + { + "Id": "aid", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Alngith", + "Comment": "" + }, + { + "Id": "aie", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Amara", + "Comment": "" + }, + { + "Id": "aif", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Agi", + "Comment": "" + }, + { + "Id": "aig", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Antigua and Barbuda Creole English", + "Comment": "" + }, + { + "Id": "aih", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ai-Cham", + "Comment": "" + }, + { + "Id": "aii", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Assyrian Neo-Aramaic", + "Comment": "" + }, + { + "Id": "aij", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lishanid Noshan", + "Comment": "" + }, + { + "Id": "aik", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ake", + "Comment": "" + }, + { + "Id": "ail", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Aimele", + "Comment": "" + }, + { + "Id": "aim", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Aimol", + "Comment": "" + }, + { + "Id": "ain", + "Part2B": "ain", + "Part2T": "ain", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ainu (Japan)", + "Comment": "" + }, + { + "Id": "aio", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Aiton", + "Comment": "" + }, + { + "Id": "aip", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Burumakok", + "Comment": "" + }, + { + "Id": "aiq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Aimaq", + "Comment": "" + }, + { + "Id": "air", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Airoran", + "Comment": "" + }, + { + "Id": "ait", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Arikem", + "Comment": "" + }, + { + "Id": "aiw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Aari", + "Comment": "" + }, + { + "Id": "aix", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Aighon", + "Comment": "" + }, + { + "Id": "aiy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ali", + "Comment": "" + }, + { + "Id": "aja", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Aja (South Sudan)", + "Comment": "" + }, + { + "Id": "ajg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Aja (Benin)", + "Comment": "" + }, + { + "Id": "aji", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Aji\u00EB", + "Comment": "" + }, + { + "Id": "ajn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Andajin", + "Comment": "" + }, + { + "Id": "ajs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Algerian Jewish Sign Language", + "Comment": "" + }, + { + "Id": "aju", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Judeo-Moroccan Arabic", + "Comment": "" + }, + { + "Id": "ajw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Ajawa", + "Comment": "" + }, + { + "Id": "ajz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Amri Karbi", + "Comment": "" + }, + { + "Id": "aka", + "Part2B": "aka", + "Part2T": "aka", + "Part1": "ak", + "Scope": "M", + "LanguageType": "L", + "RefName": "Akan", + "Comment": "" + }, + { + "Id": "akb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Batak Angkola", + "Comment": "" + }, + { + "Id": "akc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mpur", + "Comment": "" + }, + { + "Id": "akd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ukpet-Ehom", + "Comment": "" + }, + { + "Id": "ake", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Akawaio", + "Comment": "" + }, + { + "Id": "akf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Akpa", + "Comment": "" + }, + { + "Id": "akg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Anakalangu", + "Comment": "" + }, + { + "Id": "akh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Angal Heneng", + "Comment": "" + }, + { + "Id": "aki", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Aiome", + "Comment": "" + }, + { + "Id": "akj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Aka-Jeru", + "Comment": "" + }, + { + "Id": "akk", + "Part2B": "akk", + "Part2T": "akk", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Akkadian", + "Comment": "" + }, + { + "Id": "akl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Aklanon", + "Comment": "" + }, + { + "Id": "akm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Aka-Bo", + "Comment": "" + }, + { + "Id": "ako", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Akurio", + "Comment": "" + }, + { + "Id": "akp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Siwu", + "Comment": "" + }, + { + "Id": "akq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ak", + "Comment": "" + }, + { + "Id": "akr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Araki", + "Comment": "" + }, + { + "Id": "aks", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Akaselem", + "Comment": "" + }, + { + "Id": "akt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Akolet", + "Comment": "" + }, + { + "Id": "aku", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Akum", + "Comment": "" + }, + { + "Id": "akv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Akhvakh", + "Comment": "" + }, + { + "Id": "akw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Akwa", + "Comment": "" + }, + { + "Id": "akx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Aka-Kede", + "Comment": "" + }, + { + "Id": "aky", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Aka-Kol", + "Comment": "" + }, + { + "Id": "akz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Alabama", + "Comment": "" + }, + { + "Id": "ala", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Alago", + "Comment": "" + }, + { + "Id": "alc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Qawasqar", + "Comment": "" + }, + { + "Id": "ald", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Alladian", + "Comment": "" + }, + { + "Id": "ale", + "Part2B": "ale", + "Part2T": "ale", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Aleut", + "Comment": "" + }, + { + "Id": "alf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Alege", + "Comment": "" + }, + { + "Id": "alh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Alawa", + "Comment": "" + }, + { + "Id": "ali", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Amaimon", + "Comment": "" + }, + { + "Id": "alj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Alangan", + "Comment": "" + }, + { + "Id": "alk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Alak", + "Comment": "" + }, + { + "Id": "all", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Allar", + "Comment": "" + }, + { + "Id": "alm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Amblong", + "Comment": "" + }, + { + "Id": "aln", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gheg Albanian", + "Comment": "" + }, + { + "Id": "alo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Larike-Wakasihu", + "Comment": "" + }, + { + "Id": "alp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Alune", + "Comment": "" + }, + { + "Id": "alq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Algonquin", + "Comment": "" + }, + { + "Id": "alr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Alutor", + "Comment": "" + }, + { + "Id": "als", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tosk Albanian", + "Comment": "" + }, + { + "Id": "alt", + "Part2B": "alt", + "Part2T": "alt", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southern Altai", + "Comment": "" + }, + { + "Id": "alu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "\u0027Are\u0027are", + "Comment": "" + }, + { + "Id": "alw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Alaba-K\u2019abeena", + "Comment": "" + }, + { + "Id": "alx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Amol", + "Comment": "" + }, + { + "Id": "aly", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Alyawarr", + "Comment": "" + }, + { + "Id": "alz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Alur", + "Comment": "" + }, + { + "Id": "ama", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Amanay\u00E9", + "Comment": "" + }, + { + "Id": "amb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ambo", + "Comment": "" + }, + { + "Id": "amc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Amahuaca", + "Comment": "" + }, + { + "Id": "ame", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yanesha\u0027", + "Comment": "" + }, + { + "Id": "amf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hamer-Banna", + "Comment": "" + }, + { + "Id": "amg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Amurdak", + "Comment": "" + }, + { + "Id": "amh", + "Part2B": "amh", + "Part2T": "amh", + "Part1": "am", + "Scope": "I", + "LanguageType": "L", + "RefName": "Amharic", + "Comment": "" + }, + { + "Id": "ami", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Amis", + "Comment": "" + }, + { + "Id": "amj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Amdang", + "Comment": "" + }, + { + "Id": "amk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ambai", + "Comment": "" + }, + { + "Id": "aml", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "War-Jaintia", + "Comment": "" + }, + { + "Id": "amm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ama (Papua New Guinea)", + "Comment": "" + }, + { + "Id": "amn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Amanab", + "Comment": "" + }, + { + "Id": "amo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Amo", + "Comment": "" + }, + { + "Id": "amp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Alamblak", + "Comment": "" + }, + { + "Id": "amq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Amahai", + "Comment": "" + }, + { + "Id": "amr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Amarakaeri", + "Comment": "" + }, + { + "Id": "ams", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southern Amami-Oshima", + "Comment": "" + }, + { + "Id": "amt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Amto", + "Comment": "" + }, + { + "Id": "amu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Guerrero Amuzgo", + "Comment": "" + }, + { + "Id": "amv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ambelau", + "Comment": "" + }, + { + "Id": "amw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Western Neo-Aramaic", + "Comment": "" + }, + { + "Id": "amx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Anmatyerre", + "Comment": "" + }, + { + "Id": "amy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ami", + "Comment": "" + }, + { + "Id": "amz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Atampaya", + "Comment": "" + }, + { + "Id": "ana", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Andaqui", + "Comment": "" + }, + { + "Id": "anb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Andoa", + "Comment": "" + }, + { + "Id": "anc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ngas", + "Comment": "" + }, + { + "Id": "and", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ansus", + "Comment": "" + }, + { + "Id": "ane", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "X\u00E2r\u00E2c\u00F9\u00F9", + "Comment": "" + }, + { + "Id": "anf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Animere", + "Comment": "" + }, + { + "Id": "ang", + "Part2B": "ang", + "Part2T": "ang", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Old English (ca. 450-1100)", + "Comment": "" + }, + { + "Id": "anh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nend", + "Comment": "" + }, + { + "Id": "ani", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Andi", + "Comment": "" + }, + { + "Id": "anj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Anor", + "Comment": "" + }, + { + "Id": "ank", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Goemai", + "Comment": "" + }, + { + "Id": "anl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Anu-Hkongso Chin", + "Comment": "" + }, + { + "Id": "anm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Anal", + "Comment": "" + }, + { + "Id": "ann", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Obolo", + "Comment": "" + }, + { + "Id": "ano", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Andoque", + "Comment": "" + }, + { + "Id": "anp", + "Part2B": "anp", + "Part2T": "anp", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Angika", + "Comment": "" + }, + { + "Id": "anq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Jarawa (India)", + "Comment": "" + }, + { + "Id": "anr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Andh", + "Comment": "" + }, + { + "Id": "ans", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Anserma", + "Comment": "" + }, + { + "Id": "ant", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Antakarinya", + "Comment": "" + }, + { + "Id": "anu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Anuak", + "Comment": "" + }, + { + "Id": "anv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Denya", + "Comment": "" + }, + { + "Id": "anw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Anaang", + "Comment": "" + }, + { + "Id": "anx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Andra-Hus", + "Comment": "" + }, + { + "Id": "any", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Anyin", + "Comment": "" + }, + { + "Id": "anz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Anem", + "Comment": "" + }, + { + "Id": "aoa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Angolar", + "Comment": "" + }, + { + "Id": "aob", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Abom", + "Comment": "" + }, + { + "Id": "aoc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pemon", + "Comment": "" + }, + { + "Id": "aod", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Andarum", + "Comment": "" + }, + { + "Id": "aoe", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Angal Enen", + "Comment": "" + }, + { + "Id": "aof", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bragat", + "Comment": "" + }, + { + "Id": "aog", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Angoram", + "Comment": "" + }, + { + "Id": "aoi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Anindilyakwa", + "Comment": "" + }, + { + "Id": "aoj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mufian", + "Comment": "" + }, + { + "Id": "aok", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Arh\u00F6", + "Comment": "" + }, + { + "Id": "aol", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Alor", + "Comment": "" + }, + { + "Id": "aom", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "\u00D6mie", + "Comment": "" + }, + { + "Id": "aon", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bumbita Arapesh", + "Comment": "" + }, + { + "Id": "aor", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Aore", + "Comment": "" + }, + { + "Id": "aos", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Taikat", + "Comment": "" + }, + { + "Id": "aot", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Atong (India)", + "Comment": "" + }, + { + "Id": "aou", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "A\u0027ou", + "Comment": "" + }, + { + "Id": "aox", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Atorada", + "Comment": "" + }, + { + "Id": "aoz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Uab Meto", + "Comment": "" + }, + { + "Id": "apb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sa\u0027a", + "Comment": "" + }, + { + "Id": "apc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Levantine Arabic", + "Comment": "" + }, + { + "Id": "apd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sudanese Arabic", + "Comment": "" + }, + { + "Id": "ape", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bukiyip", + "Comment": "" + }, + { + "Id": "apf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pahanan Agta", + "Comment": "" + }, + { + "Id": "apg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ampanang", + "Comment": "" + }, + { + "Id": "aph", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Athpariya", + "Comment": "" + }, + { + "Id": "api", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Apiak\u00E1", + "Comment": "" + }, + { + "Id": "apj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Jicarilla Apache", + "Comment": "" + }, + { + "Id": "apk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kiowa Apache", + "Comment": "" + }, + { + "Id": "apl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lipan Apache", + "Comment": "" + }, + { + "Id": "apm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mescalero-Chiricahua Apache", + "Comment": "" + }, + { + "Id": "apn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Apinay\u00E9", + "Comment": "" + }, + { + "Id": "apo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ambul", + "Comment": "" + }, + { + "Id": "app", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Apma", + "Comment": "" + }, + { + "Id": "apq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "A-Pucikwar", + "Comment": "" + }, + { + "Id": "apr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Arop-Lokep", + "Comment": "" + }, + { + "Id": "aps", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Arop-Sissano", + "Comment": "" + }, + { + "Id": "apt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Apatani", + "Comment": "" + }, + { + "Id": "apu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Apurin\u00E3", + "Comment": "" + }, + { + "Id": "apv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Alapmunte", + "Comment": "" + }, + { + "Id": "apw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Western Apache", + "Comment": "" + }, + { + "Id": "apx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Aputai", + "Comment": "" + }, + { + "Id": "apy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Apala\u00ED", + "Comment": "" + }, + { + "Id": "apz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Safeyoka", + "Comment": "" + }, + { + "Id": "aqc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Archi", + "Comment": "" + }, + { + "Id": "aqd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ampari Dogon", + "Comment": "" + }, + { + "Id": "aqg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Arigidi", + "Comment": "" + }, + { + "Id": "aqk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Aninka", + "Comment": "" + }, + { + "Id": "aqm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Atohwaim", + "Comment": "" + }, + { + "Id": "aqn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Northern Alta", + "Comment": "" + }, + { + "Id": "aqp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Atakapa", + "Comment": "" + }, + { + "Id": "aqr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Arh\u00E2", + "Comment": "" + }, + { + "Id": "aqt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Angait\u00E9", + "Comment": "" + }, + { + "Id": "aqz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Akuntsu", + "Comment": "" + }, + { + "Id": "ara", + "Part2B": "ara", + "Part2T": "ara", + "Part1": "ar", + "Scope": "M", + "LanguageType": "L", + "RefName": "Arabic", + "Comment": "" + }, + { + "Id": "arb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Standard Arabic", + "Comment": "" + }, + { + "Id": "arc", + "Part2B": "arc", + "Part2T": "arc", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Official Aramaic (700-300 BCE)", + "Comment": "" + }, + { + "Id": "ard", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Arabana", + "Comment": "" + }, + { + "Id": "are", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Western Arrarnta", + "Comment": "" + }, + { + "Id": "arg", + "Part2B": "arg", + "Part2T": "arg", + "Part1": "an", + "Scope": "I", + "LanguageType": "L", + "RefName": "Aragonese", + "Comment": "" + }, + { + "Id": "arh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Arhuaco", + "Comment": "" + }, + { + "Id": "ari", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Arikara", + "Comment": "" + }, + { + "Id": "arj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Arapaso", + "Comment": "" + }, + { + "Id": "ark", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Arikap\u00FA", + "Comment": "" + }, + { + "Id": "arl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Arabela", + "Comment": "" + }, + { + "Id": "arn", + "Part2B": "arn", + "Part2T": "arn", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mapudungun", + "Comment": "" + }, + { + "Id": "aro", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Araona", + "Comment": "" + }, + { + "Id": "arp", + "Part2B": "arp", + "Part2T": "arp", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Arapaho", + "Comment": "" + }, + { + "Id": "arq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Algerian Arabic", + "Comment": "" + }, + { + "Id": "arr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Karo (Brazil)", + "Comment": "" + }, + { + "Id": "ars", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Najdi Arabic", + "Comment": "" + }, + { + "Id": "aru", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Aru\u00E1 (Amazonas State)", + "Comment": "" + }, + { + "Id": "arv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Arbore", + "Comment": "" + }, + { + "Id": "arw", + "Part2B": "arw", + "Part2T": "arw", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Arawak", + "Comment": "" + }, + { + "Id": "arx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Aru\u00E1 (Rodonia State)", + "Comment": "" + }, + { + "Id": "ary", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Moroccan Arabic", + "Comment": "" + }, + { + "Id": "arz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Egyptian Arabic", + "Comment": "" + }, + { + "Id": "asa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Asu (Tanzania)", + "Comment": "" + }, + { + "Id": "asb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Assiniboine", + "Comment": "" + }, + { + "Id": "asc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Casuarina Coast Asmat", + "Comment": "" + }, + { + "Id": "ase", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "American Sign Language", + "Comment": "" + }, + { + "Id": "asf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Auslan", + "Comment": "" + }, + { + "Id": "asg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Cishingini", + "Comment": "" + }, + { + "Id": "ash", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Abishira", + "Comment": "" + }, + { + "Id": "asi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Buruwai", + "Comment": "" + }, + { + "Id": "asj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sari", + "Comment": "" + }, + { + "Id": "ask", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ashkun", + "Comment": "" + }, + { + "Id": "asl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Asilulu", + "Comment": "" + }, + { + "Id": "asm", + "Part2B": "asm", + "Part2T": "asm", + "Part1": "as", + "Scope": "I", + "LanguageType": "L", + "RefName": "Assamese", + "Comment": "" + }, + { + "Id": "asn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Xing\u00FA Asurin\u00ED", + "Comment": "" + }, + { + "Id": "aso", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dano", + "Comment": "" + }, + { + "Id": "asp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Algerian Sign Language", + "Comment": "" + }, + { + "Id": "asq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Austrian Sign Language", + "Comment": "" + }, + { + "Id": "asr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Asuri", + "Comment": "" + }, + { + "Id": "ass", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ipulo", + "Comment": "" + }, + { + "Id": "ast", + "Part2B": "ast", + "Part2T": "ast", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Asturian", + "Comment": "" + }, + { + "Id": "asu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tocantins Asurini", + "Comment": "" + }, + { + "Id": "asv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Asoa", + "Comment": "" + }, + { + "Id": "asw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Australian Aborigines Sign Language", + "Comment": "" + }, + { + "Id": "asx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Muratayak", + "Comment": "" + }, + { + "Id": "asy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yaosakor Asmat", + "Comment": "" + }, + { + "Id": "asz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "As", + "Comment": "" + }, + { + "Id": "ata", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pele-Ata", + "Comment": "" + }, + { + "Id": "atb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Zaiwa", + "Comment": "" + }, + { + "Id": "atc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Atsahuaca", + "Comment": "" + }, + { + "Id": "atd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ata Manobo", + "Comment": "" + }, + { + "Id": "ate", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Atemble", + "Comment": "" + }, + { + "Id": "atg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ivbie North-Okpela-Arhe", + "Comment": "" + }, + { + "Id": "ati", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Atti\u00E9", + "Comment": "" + }, + { + "Id": "atj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Atikamekw", + "Comment": "" + }, + { + "Id": "atk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ati", + "Comment": "" + }, + { + "Id": "atl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mt. Iraya Agta", + "Comment": "" + }, + { + "Id": "atm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ata", + "Comment": "" + }, + { + "Id": "atn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ashtiani", + "Comment": "" + }, + { + "Id": "ato", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Atong (Cameroon)", + "Comment": "" + }, + { + "Id": "atp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pudtol Atta", + "Comment": "" + }, + { + "Id": "atq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Aralle-Tabulahan", + "Comment": "" + }, + { + "Id": "atr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Waimiri-Atroari", + "Comment": "" + }, + { + "Id": "ats", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gros Ventre", + "Comment": "" + }, + { + "Id": "att", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pamplona Atta", + "Comment": "" + }, + { + "Id": "atu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Reel", + "Comment": "" + }, + { + "Id": "atv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Northern Altai", + "Comment": "" + }, + { + "Id": "atw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Atsugewi", + "Comment": "" + }, + { + "Id": "atx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Arutani", + "Comment": "" + }, + { + "Id": "aty", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Aneityum", + "Comment": "" + }, + { + "Id": "atz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Arta", + "Comment": "" + }, + { + "Id": "aua", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Asumboa", + "Comment": "" + }, + { + "Id": "aub", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Alugu", + "Comment": "" + }, + { + "Id": "auc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Waorani", + "Comment": "" + }, + { + "Id": "aud", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Anuta", + "Comment": "" + }, + { + "Id": "aug", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Aguna", + "Comment": "" + }, + { + "Id": "auh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Aushi", + "Comment": "" + }, + { + "Id": "aui", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Anuki", + "Comment": "" + }, + { + "Id": "auj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Awjilah", + "Comment": "" + }, + { + "Id": "auk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Heyo", + "Comment": "" + }, + { + "Id": "aul", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Aulua", + "Comment": "" + }, + { + "Id": "aum", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Asu (Nigeria)", + "Comment": "" + }, + { + "Id": "aun", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Molmo One", + "Comment": "" + }, + { + "Id": "auo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Auyokawa", + "Comment": "" + }, + { + "Id": "aup", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Makayam", + "Comment": "" + }, + { + "Id": "auq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Anus", + "Comment": "" + }, + { + "Id": "aur", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Aruek", + "Comment": "" + }, + { + "Id": "aut", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Austral", + "Comment": "" + }, + { + "Id": "auu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Auye", + "Comment": "" + }, + { + "Id": "auw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Awyi", + "Comment": "" + }, + { + "Id": "aux", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Aur\u00E1", + "Comment": "" + }, + { + "Id": "auy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Awiyaana", + "Comment": "" + }, + { + "Id": "auz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Uzbeki Arabic", + "Comment": "" + }, + { + "Id": "ava", + "Part2B": "ava", + "Part2T": "ava", + "Part1": "av", + "Scope": "I", + "LanguageType": "L", + "RefName": "Avaric", + "Comment": "" + }, + { + "Id": "avb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Avau", + "Comment": "" + }, + { + "Id": "avd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Alviri-Vidari", + "Comment": "" + }, + { + "Id": "ave", + "Part2B": "ave", + "Part2T": "ave", + "Part1": "ae", + "Scope": "I", + "LanguageType": "H", + "RefName": "Avestan", + "Comment": "" + }, + { + "Id": "avi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Avikam", + "Comment": "" + }, + { + "Id": "avk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "C", + "RefName": "Kotava", + "Comment": "" + }, + { + "Id": "avl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Eastern Egyptian Bedawi Arabic", + "Comment": "" + }, + { + "Id": "avm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Angkamuthi", + "Comment": "" + }, + { + "Id": "avn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Avatime", + "Comment": "" + }, + { + "Id": "avo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Agavotaguerra", + "Comment": "" + }, + { + "Id": "avs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Aushiri", + "Comment": "" + }, + { + "Id": "avt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Au", + "Comment": "" + }, + { + "Id": "avu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Avokaya", + "Comment": "" + }, + { + "Id": "avv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Av\u00E1-Canoeiro", + "Comment": "" + }, + { + "Id": "awa", + "Part2B": "awa", + "Part2T": "awa", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Awadhi", + "Comment": "" + }, + { + "Id": "awb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Awa (Papua New Guinea)", + "Comment": "" + }, + { + "Id": "awc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Cicipu", + "Comment": "" + }, + { + "Id": "awe", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Awet\u00ED", + "Comment": "" + }, + { + "Id": "awg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Anguthimri", + "Comment": "" + }, + { + "Id": "awh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Awbono", + "Comment": "" + }, + { + "Id": "awi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Aekyom", + "Comment": "" + }, + { + "Id": "awk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Awabakal", + "Comment": "" + }, + { + "Id": "awm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Arawum", + "Comment": "" + }, + { + "Id": "awn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Awngi", + "Comment": "" + }, + { + "Id": "awo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Awak", + "Comment": "" + }, + { + "Id": "awr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Awera", + "Comment": "" + }, + { + "Id": "aws", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "South Awyu", + "Comment": "" + }, + { + "Id": "awt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Arawet\u00E9", + "Comment": "" + }, + { + "Id": "awu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Central Awyu", + "Comment": "" + }, + { + "Id": "awv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Jair Awyu", + "Comment": "" + }, + { + "Id": "aww", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Awun", + "Comment": "" + }, + { + "Id": "awx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Awara", + "Comment": "" + }, + { + "Id": "awy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Edera Awyu", + "Comment": "" + }, + { + "Id": "axb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Abipon", + "Comment": "" + }, + { + "Id": "axe", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Ayerrerenge", + "Comment": "" + }, + { + "Id": "axg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Mato Grosso Ar\u00E1ra", + "Comment": "" + }, + { + "Id": "axk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yaka (Central African Republic)", + "Comment": "" + }, + { + "Id": "axl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Lower Southern Aranda", + "Comment": "" + }, + { + "Id": "axm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Middle Armenian", + "Comment": "" + }, + { + "Id": "axx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "X\u00E2r\u00E2gur\u00E8", + "Comment": "" + }, + { + "Id": "aya", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Awar", + "Comment": "" + }, + { + "Id": "ayb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ayizo Gbe", + "Comment": "" + }, + { + "Id": "ayc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southern Aymara", + "Comment": "" + }, + { + "Id": "ayd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Ayabadhu", + "Comment": "" + }, + { + "Id": "aye", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ayere", + "Comment": "" + }, + { + "Id": "ayg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ginyanga", + "Comment": "" + }, + { + "Id": "ayh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hadrami Arabic", + "Comment": "" + }, + { + "Id": "ayi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Leyigha", + "Comment": "" + }, + { + "Id": "ayk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Akuku", + "Comment": "" + }, + { + "Id": "ayl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Libyan Arabic", + "Comment": "" + }, + { + "Id": "aym", + "Part2B": "aym", + "Part2T": "aym", + "Part1": "ay", + "Scope": "M", + "LanguageType": "L", + "RefName": "Aymara", + "Comment": "" + }, + { + "Id": "ayn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sanaani Arabic", + "Comment": "" + }, + { + "Id": "ayo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ayoreo", + "Comment": "" + }, + { + "Id": "ayp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "North Mesopotamian Arabic", + "Comment": "" + }, + { + "Id": "ayq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ayi (Papua New Guinea)", + "Comment": "" + }, + { + "Id": "ayr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Central Aymara", + "Comment": "" + }, + { + "Id": "ays", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sorsogon Ayta", + "Comment": "" + }, + { + "Id": "ayt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Magbukun Ayta", + "Comment": "" + }, + { + "Id": "ayu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ayu", + "Comment": "" + }, + { + "Id": "ayz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mai Brat", + "Comment": "" + }, + { + "Id": "aza", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Azha", + "Comment": "" + }, + { + "Id": "azb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "South Azerbaijani", + "Comment": "" + }, + { + "Id": "azd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Eastern Durango Nahuatl", + "Comment": "" + }, + { + "Id": "aze", + "Part2B": "aze", + "Part2T": "aze", + "Part1": "az", + "Scope": "M", + "LanguageType": "L", + "RefName": "Azerbaijani", + "Comment": "" + }, + { + "Id": "azg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "San Pedro Amuzgos Amuzgo", + "Comment": "" + }, + { + "Id": "azj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "North Azerbaijani", + "Comment": "" + }, + { + "Id": "azm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ipalapa Amuzgo", + "Comment": "" + }, + { + "Id": "azn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Western Durango Nahuatl", + "Comment": "" + }, + { + "Id": "azo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Awing", + "Comment": "" + }, + { + "Id": "azt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Faire Atta", + "Comment": "" + }, + { + "Id": "azz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Highland Puebla Nahuatl", + "Comment": "" + }, + { + "Id": "baa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Babatana", + "Comment": "" + }, + { + "Id": "bab", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bainouk-Gunyu\u00F1o", + "Comment": "" + }, + { + "Id": "bac", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Badui", + "Comment": "" + }, + { + "Id": "bae", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Bar\u00E9", + "Comment": "" + }, + { + "Id": "baf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nubaca", + "Comment": "" + }, + { + "Id": "bag", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tuki", + "Comment": "" + }, + { + "Id": "bah", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bahamas Creole English", + "Comment": "" + }, + { + "Id": "baj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Barakai", + "Comment": "" + }, + { + "Id": "bak", + "Part2B": "bak", + "Part2T": "bak", + "Part1": "ba", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bashkir", + "Comment": "" + }, + { + "Id": "bal", + "Part2B": "bal", + "Part2T": "bal", + "Part1": "", + "Scope": "M", + "LanguageType": "L", + "RefName": "Baluchi", + "Comment": "" + }, + { + "Id": "bam", + "Part2B": "bam", + "Part2T": "bam", + "Part1": "bm", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bambara", + "Comment": "" + }, + { + "Id": "ban", + "Part2B": "ban", + "Part2T": "ban", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Balinese", + "Comment": "" + }, + { + "Id": "bao", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Waimaha", + "Comment": "" + }, + { + "Id": "bap", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bantawa", + "Comment": "" + }, + { + "Id": "bar", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bavarian", + "Comment": "" + }, + { + "Id": "bas", + "Part2B": "bas", + "Part2T": "bas", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Basa (Cameroon)", + "Comment": "" + }, + { + "Id": "bau", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bada (Nigeria)", + "Comment": "" + }, + { + "Id": "bav", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Vengo", + "Comment": "" + }, + { + "Id": "baw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bambili-Bambui", + "Comment": "" + }, + { + "Id": "bax", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bamun", + "Comment": "" + }, + { + "Id": "bay", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Batuley", + "Comment": "" + }, + { + "Id": "bba", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Baatonum", + "Comment": "" + }, + { + "Id": "bbb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Barai", + "Comment": "" + }, + { + "Id": "bbc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Batak Toba", + "Comment": "" + }, + { + "Id": "bbd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bau", + "Comment": "" + }, + { + "Id": "bbe", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bangba", + "Comment": "" + }, + { + "Id": "bbf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Baibai", + "Comment": "" + }, + { + "Id": "bbg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Barama", + "Comment": "" + }, + { + "Id": "bbh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bugan", + "Comment": "" + }, + { + "Id": "bbi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Barombi", + "Comment": "" + }, + { + "Id": "bbj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ghom\u00E1l\u00E1\u0027", + "Comment": "" + }, + { + "Id": "bbk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Babanki", + "Comment": "" + }, + { + "Id": "bbl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bats", + "Comment": "" + }, + { + "Id": "bbm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Babango", + "Comment": "" + }, + { + "Id": "bbn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Uneapa", + "Comment": "" + }, + { + "Id": "bbo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Northern Bobo Madar\u00E9", + "Comment": "" + }, + { + "Id": "bbp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "West Central Banda", + "Comment": "" + }, + { + "Id": "bbq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bamali", + "Comment": "" + }, + { + "Id": "bbr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Girawa", + "Comment": "" + }, + { + "Id": "bbs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bakpinka", + "Comment": "" + }, + { + "Id": "bbt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mburku", + "Comment": "" + }, + { + "Id": "bbu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kulung (Nigeria)", + "Comment": "" + }, + { + "Id": "bbv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Karnai", + "Comment": "" + }, + { + "Id": "bbw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Baba", + "Comment": "" + }, + { + "Id": "bbx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bubia", + "Comment": "" + }, + { + "Id": "bby", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Befang", + "Comment": "" + }, + { + "Id": "bca", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Central Bai", + "Comment": "" + }, + { + "Id": "bcb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bainouk-Samik", + "Comment": "" + }, + { + "Id": "bcc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southern Balochi", + "Comment": "" + }, + { + "Id": "bcd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "North Babar", + "Comment": "" + }, + { + "Id": "bce", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bamenyam", + "Comment": "" + }, + { + "Id": "bcf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bamu", + "Comment": "" + }, + { + "Id": "bcg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Baga Pokur", + "Comment": "" + }, + { + "Id": "bch", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bariai", + "Comment": "" + }, + { + "Id": "bci", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Baoul\u00E9", + "Comment": "" + }, + { + "Id": "bcj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bardi", + "Comment": "" + }, + { + "Id": "bck", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bunuba", + "Comment": "" + }, + { + "Id": "bcl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Central Bikol", + "Comment": "" + }, + { + "Id": "bcm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bannoni", + "Comment": "" + }, + { + "Id": "bcn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bali (Nigeria)", + "Comment": "" + }, + { + "Id": "bco", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kaluli", + "Comment": "" + }, + { + "Id": "bcp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bali (Democratic Republic of Congo)", + "Comment": "" + }, + { + "Id": "bcq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bench", + "Comment": "" + }, + { + "Id": "bcr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Babine", + "Comment": "" + }, + { + "Id": "bcs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kohumono", + "Comment": "" + }, + { + "Id": "bct", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bendi", + "Comment": "" + }, + { + "Id": "bcu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Awad Bing", + "Comment": "" + }, + { + "Id": "bcv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Shoo-Minda-Nye", + "Comment": "" + }, + { + "Id": "bcw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bana", + "Comment": "" + }, + { + "Id": "bcy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bacama", + "Comment": "" + }, + { + "Id": "bcz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bainouk-Gunyaamolo", + "Comment": "" + }, + { + "Id": "bda", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bayot", + "Comment": "" + }, + { + "Id": "bdb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Basap", + "Comment": "" + }, + { + "Id": "bdc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ember\u00E1-Baud\u00F3", + "Comment": "" + }, + { + "Id": "bdd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bunama", + "Comment": "" + }, + { + "Id": "bde", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bade", + "Comment": "" + }, + { + "Id": "bdf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Biage", + "Comment": "" + }, + { + "Id": "bdg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bonggi", + "Comment": "" + }, + { + "Id": "bdh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Baka (South Sudan)", + "Comment": "" + }, + { + "Id": "bdi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Burun", + "Comment": "" + }, + { + "Id": "bdj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bai (South Sudan)", + "Comment": "" + }, + { + "Id": "bdk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Budukh", + "Comment": "" + }, + { + "Id": "bdl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Indonesian Bajau", + "Comment": "" + }, + { + "Id": "bdm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Buduma", + "Comment": "" + }, + { + "Id": "bdn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Baldemu", + "Comment": "" + }, + { + "Id": "bdo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Morom", + "Comment": "" + }, + { + "Id": "bdp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bende", + "Comment": "" + }, + { + "Id": "bdq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bahnar", + "Comment": "" + }, + { + "Id": "bdr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "West Coast Bajau", + "Comment": "" + }, + { + "Id": "bds", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Burunge", + "Comment": "" + }, + { + "Id": "bdt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bokoto", + "Comment": "" + }, + { + "Id": "bdu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Oroko", + "Comment": "" + }, + { + "Id": "bdv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bodo Parja", + "Comment": "" + }, + { + "Id": "bdw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Baham", + "Comment": "" + }, + { + "Id": "bdx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Budong-Budong", + "Comment": "" + }, + { + "Id": "bdy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bandjalang", + "Comment": "" + }, + { + "Id": "bdz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Badeshi", + "Comment": "" + }, + { + "Id": "bea", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Beaver", + "Comment": "" + }, + { + "Id": "beb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bebele", + "Comment": "" + }, + { + "Id": "bec", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Iceve-Maci", + "Comment": "" + }, + { + "Id": "bed", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bedoanas", + "Comment": "" + }, + { + "Id": "bee", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Byangsi", + "Comment": "" + }, + { + "Id": "bef", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Benabena", + "Comment": "" + }, + { + "Id": "beg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Belait", + "Comment": "" + }, + { + "Id": "beh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Biali", + "Comment": "" + }, + { + "Id": "bei", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bekati\u0027", + "Comment": "" + }, + { + "Id": "bej", + "Part2B": "bej", + "Part2T": "bej", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Beja", + "Comment": "" + }, + { + "Id": "bek", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bebeli", + "Comment": "" + }, + { + "Id": "bel", + "Part2B": "bel", + "Part2T": "bel", + "Part1": "be", + "Scope": "I", + "LanguageType": "L", + "RefName": "Belarusian", + "Comment": "" + }, + { + "Id": "bem", + "Part2B": "bem", + "Part2T": "bem", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bemba (Zambia)", + "Comment": "" + }, + { + "Id": "ben", + "Part2B": "ben", + "Part2T": "ben", + "Part1": "bn", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bengali", + "Comment": "" + }, + { + "Id": "beo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Beami", + "Comment": "" + }, + { + "Id": "bep", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Besoa", + "Comment": "" + }, + { + "Id": "beq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Beembe", + "Comment": "" + }, + { + "Id": "bes", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Besme", + "Comment": "" + }, + { + "Id": "bet", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Guiberoua B\u00E9te", + "Comment": "" + }, + { + "Id": "beu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Blagar", + "Comment": "" + }, + { + "Id": "bev", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Daloa B\u00E9t\u00E9", + "Comment": "" + }, + { + "Id": "bew", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Betawi", + "Comment": "" + }, + { + "Id": "bex", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Jur Modo", + "Comment": "" + }, + { + "Id": "bey", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Beli (Papua New Guinea)", + "Comment": "" + }, + { + "Id": "bez", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bena (Tanzania)", + "Comment": "" + }, + { + "Id": "bfa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bari", + "Comment": "" + }, + { + "Id": "bfb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pauri Bareli", + "Comment": "" + }, + { + "Id": "bfc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Panyi Bai", + "Comment": "" + }, + { + "Id": "bfd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bafut", + "Comment": "" + }, + { + "Id": "bfe", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Betaf", + "Comment": "" + }, + { + "Id": "bff", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bofi", + "Comment": "" + }, + { + "Id": "bfg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Busang Kayan", + "Comment": "" + }, + { + "Id": "bfh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Blafe", + "Comment": "" + }, + { + "Id": "bfi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "British Sign Language", + "Comment": "" + }, + { + "Id": "bfj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bafanji", + "Comment": "" + }, + { + "Id": "bfk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ban Khor Sign Language", + "Comment": "" + }, + { + "Id": "bfl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Banda-Nd\u00E9l\u00E9", + "Comment": "" + }, + { + "Id": "bfm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mmen", + "Comment": "" + }, + { + "Id": "bfn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bunak", + "Comment": "" + }, + { + "Id": "bfo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Malba Birifor", + "Comment": "" + }, + { + "Id": "bfp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Beba", + "Comment": "" + }, + { + "Id": "bfq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Badaga", + "Comment": "" + }, + { + "Id": "bfr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bazigar", + "Comment": "" + }, + { + "Id": "bfs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southern Bai", + "Comment": "" + }, + { + "Id": "bft", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Balti", + "Comment": "" + }, + { + "Id": "bfu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gahri", + "Comment": "" + }, + { + "Id": "bfw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bondo", + "Comment": "" + }, + { + "Id": "bfx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bantayanon", + "Comment": "" + }, + { + "Id": "bfy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bagheli", + "Comment": "" + }, + { + "Id": "bfz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mahasu Pahari", + "Comment": "" + }, + { + "Id": "bga", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gwamhi-Wuri", + "Comment": "" + }, + { + "Id": "bgb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bobongko", + "Comment": "" + }, + { + "Id": "bgc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Haryanvi", + "Comment": "" + }, + { + "Id": "bgd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Rathwi Bareli", + "Comment": "" + }, + { + "Id": "bge", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bauria", + "Comment": "" + }, + { + "Id": "bgf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bangandu", + "Comment": "" + }, + { + "Id": "bgg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bugun", + "Comment": "" + }, + { + "Id": "bgi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Giangan", + "Comment": "" + }, + { + "Id": "bgj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bangolan", + "Comment": "" + }, + { + "Id": "bgk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bit", + "Comment": "" + }, + { + "Id": "bgl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bo (Laos)", + "Comment": "" + }, + { + "Id": "bgn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Western Balochi", + "Comment": "" + }, + { + "Id": "bgo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Baga Koga", + "Comment": "" + }, + { + "Id": "bgp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Eastern Balochi", + "Comment": "" + }, + { + "Id": "bgq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bagri", + "Comment": "" + }, + { + "Id": "bgr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bawm Chin", + "Comment": "" + }, + { + "Id": "bgs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tagabawa", + "Comment": "" + }, + { + "Id": "bgt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bughotu", + "Comment": "" + }, + { + "Id": "bgu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mbongno", + "Comment": "" + }, + { + "Id": "bgv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Warkay-Bipim", + "Comment": "" + }, + { + "Id": "bgw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bhatri", + "Comment": "" + }, + { + "Id": "bgx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Balkan Gagauz Turkish", + "Comment": "" + }, + { + "Id": "bgy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Benggoi", + "Comment": "" + }, + { + "Id": "bgz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Banggai", + "Comment": "" + }, + { + "Id": "bha", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bharia", + "Comment": "" + }, + { + "Id": "bhb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bhili", + "Comment": "" + }, + { + "Id": "bhc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Biga", + "Comment": "" + }, + { + "Id": "bhd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bhadrawahi", + "Comment": "" + }, + { + "Id": "bhe", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bhaya", + "Comment": "" + }, + { + "Id": "bhf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Odiai", + "Comment": "" + }, + { + "Id": "bhg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Binandere", + "Comment": "" + }, + { + "Id": "bhh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bukharic", + "Comment": "" + }, + { + "Id": "bhi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bhilali", + "Comment": "" + }, + { + "Id": "bhj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bahing", + "Comment": "" + }, + { + "Id": "bhl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bimin", + "Comment": "" + }, + { + "Id": "bhm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bathari", + "Comment": "" + }, + { + "Id": "bhn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bohtan Neo-Aramaic", + "Comment": "" + }, + { + "Id": "bho", + "Part2B": "bho", + "Part2T": "bho", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bhojpuri", + "Comment": "" + }, + { + "Id": "bhp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bima", + "Comment": "" + }, + { + "Id": "bhq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tukang Besi South", + "Comment": "" + }, + { + "Id": "bhr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bara Malagasy", + "Comment": "" + }, + { + "Id": "bhs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Buwal", + "Comment": "" + }, + { + "Id": "bht", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bhattiyali", + "Comment": "" + }, + { + "Id": "bhu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bhunjia", + "Comment": "" + }, + { + "Id": "bhv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bahau", + "Comment": "" + }, + { + "Id": "bhw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Biak", + "Comment": "" + }, + { + "Id": "bhx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bhalay", + "Comment": "" + }, + { + "Id": "bhy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bhele", + "Comment": "" + }, + { + "Id": "bhz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bada (Indonesia)", + "Comment": "" + }, + { + "Id": "bia", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Badimaya", + "Comment": "" + }, + { + "Id": "bib", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bissa", + "Comment": "" + }, + { + "Id": "bid", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bidiyo", + "Comment": "" + }, + { + "Id": "bie", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bepour", + "Comment": "" + }, + { + "Id": "bif", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Biafada", + "Comment": "" + }, + { + "Id": "big", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Biangai", + "Comment": "" + }, + { + "Id": "bik", + "Part2B": "bik", + "Part2T": "bik", + "Part1": "", + "Scope": "M", + "LanguageType": "L", + "RefName": "Bikol", + "Comment": "" + }, + { + "Id": "bil", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bile", + "Comment": "" + }, + { + "Id": "bim", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bimoba", + "Comment": "" + }, + { + "Id": "bin", + "Part2B": "bin", + "Part2T": "bin", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bini", + "Comment": "" + }, + { + "Id": "bio", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nai", + "Comment": "" + }, + { + "Id": "bip", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bila", + "Comment": "" + }, + { + "Id": "biq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bipi", + "Comment": "" + }, + { + "Id": "bir", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bisorio", + "Comment": "" + }, + { + "Id": "bis", + "Part2B": "bis", + "Part2T": "bis", + "Part1": "bi", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bislama", + "Comment": "" + }, + { + "Id": "bit", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Berinomo", + "Comment": "" + }, + { + "Id": "biu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Biete", + "Comment": "" + }, + { + "Id": "biv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southern Birifor", + "Comment": "" + }, + { + "Id": "biw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kol (Cameroon)", + "Comment": "" + }, + { + "Id": "bix", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bijori", + "Comment": "" + }, + { + "Id": "biy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Birhor", + "Comment": "" + }, + { + "Id": "biz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Baloi", + "Comment": "" + }, + { + "Id": "bja", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Budza", + "Comment": "" + }, + { + "Id": "bjb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Banggarla", + "Comment": "" + }, + { + "Id": "bjc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bariji", + "Comment": "" + }, + { + "Id": "bje", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Biao-Jiao Mien", + "Comment": "" + }, + { + "Id": "bjf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Barzani Jewish Neo-Aramaic", + "Comment": "" + }, + { + "Id": "bjg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bidyogo", + "Comment": "" + }, + { + "Id": "bjh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bahinemo", + "Comment": "" + }, + { + "Id": "bji", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Burji", + "Comment": "" + }, + { + "Id": "bjj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kanauji", + "Comment": "" + }, + { + "Id": "bjk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Barok", + "Comment": "" + }, + { + "Id": "bjl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bulu (Papua New Guinea)", + "Comment": "" + }, + { + "Id": "bjm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bajelani", + "Comment": "" + }, + { + "Id": "bjn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Banjar", + "Comment": "" + }, + { + "Id": "bjo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mid-Southern Banda", + "Comment": "" + }, + { + "Id": "bjp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Fanamaket", + "Comment": "" + }, + { + "Id": "bjr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Binumarien", + "Comment": "" + }, + { + "Id": "bjs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bajan", + "Comment": "" + }, + { + "Id": "bjt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Balanta-Ganja", + "Comment": "" + }, + { + "Id": "bju", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Busuu", + "Comment": "" + }, + { + "Id": "bjv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bedjond", + "Comment": "" + }, + { + "Id": "bjw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bakw\u00E9", + "Comment": "" + }, + { + "Id": "bjx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Banao Itneg", + "Comment": "" + }, + { + "Id": "bjy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Bayali", + "Comment": "" + }, + { + "Id": "bjz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Baruga", + "Comment": "" + }, + { + "Id": "bka", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kyak", + "Comment": "" + }, + { + "Id": "bkc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Baka (Cameroon)", + "Comment": "" + }, + { + "Id": "bkd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Binukid", + "Comment": "" + }, + { + "Id": "bkf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Beeke", + "Comment": "" + }, + { + "Id": "bkg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Buraka", + "Comment": "" + }, + { + "Id": "bkh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bakoko", + "Comment": "" + }, + { + "Id": "bki", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Baki", + "Comment": "" + }, + { + "Id": "bkj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pande", + "Comment": "" + }, + { + "Id": "bkk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Brokskat", + "Comment": "" + }, + { + "Id": "bkl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Berik", + "Comment": "" + }, + { + "Id": "bkm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kom (Cameroon)", + "Comment": "" + }, + { + "Id": "bkn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bukitan", + "Comment": "" + }, + { + "Id": "bko", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kwa\u0027", + "Comment": "" + }, + { + "Id": "bkp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Boko (Democratic Republic of Congo)", + "Comment": "" + }, + { + "Id": "bkq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bakair\u00ED", + "Comment": "" + }, + { + "Id": "bkr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bakumpai", + "Comment": "" + }, + { + "Id": "bks", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Northern Sorsoganon", + "Comment": "" + }, + { + "Id": "bkt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Boloki", + "Comment": "" + }, + { + "Id": "bku", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Buhid", + "Comment": "" + }, + { + "Id": "bkv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bekwarra", + "Comment": "" + }, + { + "Id": "bkw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bekwel", + "Comment": "" + }, + { + "Id": "bkx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Baikeno", + "Comment": "" + }, + { + "Id": "bky", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bokyi", + "Comment": "" + }, + { + "Id": "bkz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bungku", + "Comment": "" + }, + { + "Id": "bla", + "Part2B": "bla", + "Part2T": "bla", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Siksika", + "Comment": "" + }, + { + "Id": "blb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bilua", + "Comment": "" + }, + { + "Id": "blc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bella Coola", + "Comment": "" + }, + { + "Id": "bld", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bolango", + "Comment": "" + }, + { + "Id": "ble", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Balanta-Kentohe", + "Comment": "" + }, + { + "Id": "blf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Buol", + "Comment": "" + }, + { + "Id": "blh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kuwaa", + "Comment": "" + }, + { + "Id": "bli", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bolia", + "Comment": "" + }, + { + "Id": "blj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bolongan", + "Comment": "" + }, + { + "Id": "blk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pa\u0027o Karen", + "Comment": "" + }, + { + "Id": "bll", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Biloxi", + "Comment": "" + }, + { + "Id": "blm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Beli (South Sudan)", + "Comment": "" + }, + { + "Id": "bln", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southern Catanduanes Bikol", + "Comment": "" + }, + { + "Id": "blo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Anii", + "Comment": "" + }, + { + "Id": "blp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Blablanga", + "Comment": "" + }, + { + "Id": "blq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Baluan-Pam", + "Comment": "" + }, + { + "Id": "blr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Blang", + "Comment": "" + }, + { + "Id": "bls", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Balaesang", + "Comment": "" + }, + { + "Id": "blt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tai Dam", + "Comment": "" + }, + { + "Id": "blv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kibala", + "Comment": "" + }, + { + "Id": "blw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Balangao", + "Comment": "" + }, + { + "Id": "blx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mag-Indi Ayta", + "Comment": "" + }, + { + "Id": "bly", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Notre", + "Comment": "" + }, + { + "Id": "blz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Balantak", + "Comment": "" + }, + { + "Id": "bma", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lame", + "Comment": "" + }, + { + "Id": "bmb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bembe", + "Comment": "" + }, + { + "Id": "bmc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Biem", + "Comment": "" + }, + { + "Id": "bmd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Baga Manduri", + "Comment": "" + }, + { + "Id": "bme", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Limassa", + "Comment": "" + }, + { + "Id": "bmf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bom-Kim", + "Comment": "" + }, + { + "Id": "bmg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bamwe", + "Comment": "" + }, + { + "Id": "bmh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kein", + "Comment": "" + }, + { + "Id": "bmi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bagirmi", + "Comment": "" + }, + { + "Id": "bmj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bote-Majhi", + "Comment": "" + }, + { + "Id": "bmk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ghayavi", + "Comment": "" + }, + { + "Id": "bml", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bomboli", + "Comment": "" + }, + { + "Id": "bmm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Northern Betsimisaraka Malagasy", + "Comment": "" + }, + { + "Id": "bmn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Bina (Papua New Guinea)", + "Comment": "" + }, + { + "Id": "bmo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bambalang", + "Comment": "" + }, + { + "Id": "bmp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bulgebi", + "Comment": "" + }, + { + "Id": "bmq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bomu", + "Comment": "" + }, + { + "Id": "bmr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Muinane", + "Comment": "" + }, + { + "Id": "bms", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bilma Kanuri", + "Comment": "" + }, + { + "Id": "bmt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Biao Mon", + "Comment": "" + }, + { + "Id": "bmu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Somba-Siawari", + "Comment": "" + }, + { + "Id": "bmv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bum", + "Comment": "" + }, + { + "Id": "bmw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bomwali", + "Comment": "" + }, + { + "Id": "bmx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Baimak", + "Comment": "" + }, + { + "Id": "bmz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Baramu", + "Comment": "" + }, + { + "Id": "bna", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bonerate", + "Comment": "" + }, + { + "Id": "bnb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bookan", + "Comment": "" + }, + { + "Id": "bnc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "M", + "LanguageType": "L", + "RefName": "Bontok", + "Comment": "" + }, + { + "Id": "bnd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Banda (Indonesia)", + "Comment": "" + }, + { + "Id": "bne", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bintauna", + "Comment": "" + }, + { + "Id": "bnf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Masiwang", + "Comment": "" + }, + { + "Id": "bng", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Benga", + "Comment": "" + }, + { + "Id": "bni", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bangi", + "Comment": "" + }, + { + "Id": "bnj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Eastern Tawbuid", + "Comment": "" + }, + { + "Id": "bnk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bierebo", + "Comment": "" + }, + { + "Id": "bnl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Boon", + "Comment": "" + }, + { + "Id": "bnm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Batanga", + "Comment": "" + }, + { + "Id": "bnn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bunun", + "Comment": "" + }, + { + "Id": "bno", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bantoanon", + "Comment": "" + }, + { + "Id": "bnp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bola", + "Comment": "" + }, + { + "Id": "bnq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bantik", + "Comment": "" + }, + { + "Id": "bnr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Butmas-Tur", + "Comment": "" + }, + { + "Id": "bns", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bundeli", + "Comment": "" + }, + { + "Id": "bnu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bentong", + "Comment": "" + }, + { + "Id": "bnv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bonerif", + "Comment": "" + }, + { + "Id": "bnw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bisis", + "Comment": "" + }, + { + "Id": "bnx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bangubangu", + "Comment": "" + }, + { + "Id": "bny", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bintulu", + "Comment": "" + }, + { + "Id": "bnz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Beezen", + "Comment": "" + }, + { + "Id": "boa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bora", + "Comment": "" + }, + { + "Id": "bob", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Aweer", + "Comment": "" + }, + { + "Id": "bod", + "Part2B": "tib", + "Part2T": "bod", + "Part1": "bo", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tibetan", + "Comment": "" + }, + { + "Id": "boe", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mundabli", + "Comment": "" + }, + { + "Id": "bof", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bolon", + "Comment": "" + }, + { + "Id": "bog", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bamako Sign Language", + "Comment": "" + }, + { + "Id": "boh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Boma", + "Comment": "" + }, + { + "Id": "boi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Barbare\u00F1o", + "Comment": "" + }, + { + "Id": "boj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Anjam", + "Comment": "" + }, + { + "Id": "bok", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bonjo", + "Comment": "" + }, + { + "Id": "bol", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bole", + "Comment": "" + }, + { + "Id": "bom", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Berom", + "Comment": "" + }, + { + "Id": "bon", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bine", + "Comment": "" + }, + { + "Id": "boo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tiemac\u00E8w\u00E8 Bozo", + "Comment": "" + }, + { + "Id": "bop", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bonkiman", + "Comment": "" + }, + { + "Id": "boq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bogaya", + "Comment": "" + }, + { + "Id": "bor", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bor\u00F4ro", + "Comment": "" + }, + { + "Id": "bos", + "Part2B": "bos", + "Part2T": "bos", + "Part1": "bs", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bosnian", + "Comment": "" + }, + { + "Id": "bot", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bongo", + "Comment": "" + }, + { + "Id": "bou", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bondei", + "Comment": "" + }, + { + "Id": "bov", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tuwuli", + "Comment": "" + }, + { + "Id": "bow", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Rema", + "Comment": "" + }, + { + "Id": "box", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Buamu", + "Comment": "" + }, + { + "Id": "boy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bodo (Central African Republic)", + "Comment": "" + }, + { + "Id": "boz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ti\u00E9yaxo Bozo", + "Comment": "" + }, + { + "Id": "bpa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Daakaka", + "Comment": "" + }, + { + "Id": "bpc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mbuk", + "Comment": "" + }, + { + "Id": "bpd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Banda-Banda", + "Comment": "" + }, + { + "Id": "bpe", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bauni", + "Comment": "" + }, + { + "Id": "bpg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bonggo", + "Comment": "" + }, + { + "Id": "bph", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Botlikh", + "Comment": "" + }, + { + "Id": "bpi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bagupi", + "Comment": "" + }, + { + "Id": "bpj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Binji", + "Comment": "" + }, + { + "Id": "bpk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Orowe", + "Comment": "" + }, + { + "Id": "bpl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Broome Pearling Lugger Pidgin", + "Comment": "" + }, + { + "Id": "bpm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Biyom", + "Comment": "" + }, + { + "Id": "bpn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dzao Min", + "Comment": "" + }, + { + "Id": "bpo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Anasi", + "Comment": "" + }, + { + "Id": "bpp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kaure", + "Comment": "" + }, + { + "Id": "bpq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Banda Malay", + "Comment": "" + }, + { + "Id": "bpr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Koronadal Blaan", + "Comment": "" + }, + { + "Id": "bps", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sarangani Blaan", + "Comment": "" + }, + { + "Id": "bpt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Barrow Point", + "Comment": "" + }, + { + "Id": "bpu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bongu", + "Comment": "" + }, + { + "Id": "bpv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bian Marind", + "Comment": "" + }, + { + "Id": "bpw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bo (Papua New Guinea)", + "Comment": "" + }, + { + "Id": "bpx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Palya Bareli", + "Comment": "" + }, + { + "Id": "bpy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bishnupriya", + "Comment": "" + }, + { + "Id": "bpz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bilba", + "Comment": "" + }, + { + "Id": "bqa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tchumbuli", + "Comment": "" + }, + { + "Id": "bqb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bagusa", + "Comment": "" + }, + { + "Id": "bqc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Boko (Benin)", + "Comment": "" + }, + { + "Id": "bqd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bung", + "Comment": "" + }, + { + "Id": "bqf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Baga Kaloum", + "Comment": "" + }, + { + "Id": "bqg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bago-Kusuntu", + "Comment": "" + }, + { + "Id": "bqh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Baima", + "Comment": "" + }, + { + "Id": "bqi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bakhtiari", + "Comment": "" + }, + { + "Id": "bqj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bandial", + "Comment": "" + }, + { + "Id": "bqk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Banda-Mbr\u00E8s", + "Comment": "" + }, + { + "Id": "bql", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Karian", + "Comment": "" + }, + { + "Id": "bqm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wumboko", + "Comment": "" + }, + { + "Id": "bqn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bulgarian Sign Language", + "Comment": "" + }, + { + "Id": "bqo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Balo", + "Comment": "" + }, + { + "Id": "bqp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Busa", + "Comment": "" + }, + { + "Id": "bqq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Biritai", + "Comment": "" + }, + { + "Id": "bqr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Burusu", + "Comment": "" + }, + { + "Id": "bqs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bosngun", + "Comment": "" + }, + { + "Id": "bqt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bamukumbit", + "Comment": "" + }, + { + "Id": "bqu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Boguru", + "Comment": "" + }, + { + "Id": "bqv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Koro Wachi", + "Comment": "" + }, + { + "Id": "bqw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Buru (Nigeria)", + "Comment": "" + }, + { + "Id": "bqx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Baangi", + "Comment": "" + }, + { + "Id": "bqy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bengkala Sign Language", + "Comment": "" + }, + { + "Id": "bqz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bakaka", + "Comment": "" + }, + { + "Id": "bra", + "Part2B": "bra", + "Part2T": "bra", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Braj", + "Comment": "" + }, + { + "Id": "brb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Brao", + "Comment": "" + }, + { + "Id": "brc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Berbice Creole Dutch", + "Comment": "" + }, + { + "Id": "brd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Baraamu", + "Comment": "" + }, + { + "Id": "bre", + "Part2B": "bre", + "Part2T": "bre", + "Part1": "br", + "Scope": "I", + "LanguageType": "L", + "RefName": "Breton", + "Comment": "" + }, + { + "Id": "brf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bira", + "Comment": "" + }, + { + "Id": "brg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Baure", + "Comment": "" + }, + { + "Id": "brh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Brahui", + "Comment": "" + }, + { + "Id": "bri", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mokpwe", + "Comment": "" + }, + { + "Id": "brj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bieria", + "Comment": "" + }, + { + "Id": "brk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Birked", + "Comment": "" + }, + { + "Id": "brl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Birwa", + "Comment": "" + }, + { + "Id": "brm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Barambu", + "Comment": "" + }, + { + "Id": "brn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Boruca", + "Comment": "" + }, + { + "Id": "bro", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Brokkat", + "Comment": "" + }, + { + "Id": "brp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Barapasi", + "Comment": "" + }, + { + "Id": "brq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Breri", + "Comment": "" + }, + { + "Id": "brr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Birao", + "Comment": "" + }, + { + "Id": "brs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Baras", + "Comment": "" + }, + { + "Id": "brt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bitare", + "Comment": "" + }, + { + "Id": "bru", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Eastern Bru", + "Comment": "" + }, + { + "Id": "brv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Western Bru", + "Comment": "" + }, + { + "Id": "brw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bellari", + "Comment": "" + }, + { + "Id": "brx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bodo (India)", + "Comment": "" + }, + { + "Id": "bry", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Burui", + "Comment": "" + }, + { + "Id": "brz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bilbil", + "Comment": "" + }, + { + "Id": "bsa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Abinomn", + "Comment": "" + }, + { + "Id": "bsb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Brunei Bisaya", + "Comment": "" + }, + { + "Id": "bsc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bassari", + "Comment": "" + }, + { + "Id": "bse", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wushi", + "Comment": "" + }, + { + "Id": "bsf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bauchi", + "Comment": "" + }, + { + "Id": "bsg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bashkardi", + "Comment": "" + }, + { + "Id": "bsh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kati", + "Comment": "" + }, + { + "Id": "bsi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bassossi", + "Comment": "" + }, + { + "Id": "bsj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bangwinji", + "Comment": "" + }, + { + "Id": "bsk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Burushaski", + "Comment": "" + }, + { + "Id": "bsl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Basa-Gumna", + "Comment": "" + }, + { + "Id": "bsm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Busami", + "Comment": "" + }, + { + "Id": "bsn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Barasana-Eduria", + "Comment": "" + }, + { + "Id": "bso", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Buso", + "Comment": "" + }, + { + "Id": "bsp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Baga Sitemu", + "Comment": "" + }, + { + "Id": "bsq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bassa", + "Comment": "" + }, + { + "Id": "bsr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bassa-Kontagora", + "Comment": "" + }, + { + "Id": "bss", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Akoose", + "Comment": "" + }, + { + "Id": "bst", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Basketo", + "Comment": "" + }, + { + "Id": "bsu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bahonsuai", + "Comment": "" + }, + { + "Id": "bsv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Baga Soban\u00E9", + "Comment": "" + }, + { + "Id": "bsw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Baiso", + "Comment": "" + }, + { + "Id": "bsx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yangkam", + "Comment": "" + }, + { + "Id": "bsy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sabah Bisaya", + "Comment": "" + }, + { + "Id": "bta", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bata", + "Comment": "" + }, + { + "Id": "btc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bati (Cameroon)", + "Comment": "" + }, + { + "Id": "btd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Batak Dairi", + "Comment": "" + }, + { + "Id": "bte", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Gamo-Ningi", + "Comment": "" + }, + { + "Id": "btf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Birgit", + "Comment": "" + }, + { + "Id": "btg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gagnoa B\u00E9t\u00E9", + "Comment": "" + }, + { + "Id": "bth", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Biatah Bidayuh", + "Comment": "" + }, + { + "Id": "bti", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Burate", + "Comment": "" + }, + { + "Id": "btj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bacanese Malay", + "Comment": "" + }, + { + "Id": "btm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Batak Mandailing", + "Comment": "" + }, + { + "Id": "btn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ratagnon", + "Comment": "" + }, + { + "Id": "bto", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Rinconada Bikol", + "Comment": "" + }, + { + "Id": "btp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Budibud", + "Comment": "" + }, + { + "Id": "btq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Batek", + "Comment": "" + }, + { + "Id": "btr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Baetora", + "Comment": "" + }, + { + "Id": "bts", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Batak Simalungun", + "Comment": "" + }, + { + "Id": "btt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bete-Bendi", + "Comment": "" + }, + { + "Id": "btu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Batu", + "Comment": "" + }, + { + "Id": "btv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bateri", + "Comment": "" + }, + { + "Id": "btw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Butuanon", + "Comment": "" + }, + { + "Id": "btx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Batak Karo", + "Comment": "" + }, + { + "Id": "bty", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bobot", + "Comment": "" + }, + { + "Id": "btz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Batak Alas-Kluet", + "Comment": "" + }, + { + "Id": "bua", + "Part2B": "bua", + "Part2T": "bua", + "Part1": "", + "Scope": "M", + "LanguageType": "L", + "RefName": "Buriat", + "Comment": "" + }, + { + "Id": "bub", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bua", + "Comment": "" + }, + { + "Id": "buc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bushi", + "Comment": "" + }, + { + "Id": "bud", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ntcham", + "Comment": "" + }, + { + "Id": "bue", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Beothuk", + "Comment": "" + }, + { + "Id": "buf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bushoong", + "Comment": "" + }, + { + "Id": "bug", + "Part2B": "bug", + "Part2T": "bug", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Buginese", + "Comment": "" + }, + { + "Id": "buh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Younuo Bunu", + "Comment": "" + }, + { + "Id": "bui", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bongili", + "Comment": "" + }, + { + "Id": "buj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Basa-Gurmana", + "Comment": "" + }, + { + "Id": "buk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bugawac", + "Comment": "" + }, + { + "Id": "bul", + "Part2B": "bul", + "Part2T": "bul", + "Part1": "bg", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bulgarian", + "Comment": "" + }, + { + "Id": "bum", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bulu (Cameroon)", + "Comment": "" + }, + { + "Id": "bun", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sherbro", + "Comment": "" + }, + { + "Id": "buo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Terei", + "Comment": "" + }, + { + "Id": "bup", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Busoa", + "Comment": "" + }, + { + "Id": "buq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Brem", + "Comment": "" + }, + { + "Id": "bus", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bokobaru", + "Comment": "" + }, + { + "Id": "but", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bungain", + "Comment": "" + }, + { + "Id": "buu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Budu", + "Comment": "" + }, + { + "Id": "buv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bun", + "Comment": "" + }, + { + "Id": "buw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bubi", + "Comment": "" + }, + { + "Id": "bux", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Boghom", + "Comment": "" + }, + { + "Id": "buy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bullom So", + "Comment": "" + }, + { + "Id": "buz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bukwen", + "Comment": "" + }, + { + "Id": "bva", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Barein", + "Comment": "" + }, + { + "Id": "bvb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bube", + "Comment": "" + }, + { + "Id": "bvc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Baelelea", + "Comment": "" + }, + { + "Id": "bvd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Baeggu", + "Comment": "" + }, + { + "Id": "bve", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Berau Malay", + "Comment": "" + }, + { + "Id": "bvf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Boor", + "Comment": "" + }, + { + "Id": "bvg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bonkeng", + "Comment": "" + }, + { + "Id": "bvh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bure", + "Comment": "" + }, + { + "Id": "bvi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Belanda Viri", + "Comment": "" + }, + { + "Id": "bvj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Baan", + "Comment": "" + }, + { + "Id": "bvk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bukat", + "Comment": "" + }, + { + "Id": "bvl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bolivian Sign Language", + "Comment": "" + }, + { + "Id": "bvm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bamunka", + "Comment": "" + }, + { + "Id": "bvn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Buna", + "Comment": "" + }, + { + "Id": "bvo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bolgo", + "Comment": "" + }, + { + "Id": "bvp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bumang", + "Comment": "" + }, + { + "Id": "bvq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Birri", + "Comment": "" + }, + { + "Id": "bvr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Burarra", + "Comment": "" + }, + { + "Id": "bvt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bati (Indonesia)", + "Comment": "" + }, + { + "Id": "bvu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bukit Malay", + "Comment": "" + }, + { + "Id": "bvv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Baniva", + "Comment": "" + }, + { + "Id": "bvw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Boga", + "Comment": "" + }, + { + "Id": "bvx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dibole", + "Comment": "" + }, + { + "Id": "bvy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Baybayanon", + "Comment": "" + }, + { + "Id": "bvz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bauzi", + "Comment": "" + }, + { + "Id": "bwa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bwatoo", + "Comment": "" + }, + { + "Id": "bwb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Namosi-Naitasiri-Serua", + "Comment": "" + }, + { + "Id": "bwc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bwile", + "Comment": "" + }, + { + "Id": "bwd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bwaidoka", + "Comment": "" + }, + { + "Id": "bwe", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bwe Karen", + "Comment": "" + }, + { + "Id": "bwf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Boselewa", + "Comment": "" + }, + { + "Id": "bwg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Barwe", + "Comment": "" + }, + { + "Id": "bwh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bishuo", + "Comment": "" + }, + { + "Id": "bwi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Baniwa", + "Comment": "" + }, + { + "Id": "bwj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "L\u00E1\u00E1 L\u00E1\u00E1 Bwamu", + "Comment": "" + }, + { + "Id": "bwk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bauwaki", + "Comment": "" + }, + { + "Id": "bwl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bwela", + "Comment": "" + }, + { + "Id": "bwm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Biwat", + "Comment": "" + }, + { + "Id": "bwn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wunai Bunu", + "Comment": "" + }, + { + "Id": "bwo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Boro (Ethiopia)", + "Comment": "" + }, + { + "Id": "bwp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mandobo Bawah", + "Comment": "" + }, + { + "Id": "bwq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southern Bobo Madar\u00E9", + "Comment": "" + }, + { + "Id": "bwr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bura-Pabir", + "Comment": "" + }, + { + "Id": "bws", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bomboma", + "Comment": "" + }, + { + "Id": "bwt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bafaw-Balong", + "Comment": "" + }, + { + "Id": "bwu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Buli (Ghana)", + "Comment": "" + }, + { + "Id": "bww", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bwa", + "Comment": "" + }, + { + "Id": "bwx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bu-Nao Bunu", + "Comment": "" + }, + { + "Id": "bwy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Cwi Bwamu", + "Comment": "" + }, + { + "Id": "bwz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bwisi", + "Comment": "" + }, + { + "Id": "bxa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tairaha", + "Comment": "" + }, + { + "Id": "bxb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Belanda Bor", + "Comment": "" + }, + { + "Id": "bxc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Molengue", + "Comment": "" + }, + { + "Id": "bxd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pela", + "Comment": "" + }, + { + "Id": "bxe", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Birale", + "Comment": "" + }, + { + "Id": "bxf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bilur", + "Comment": "" + }, + { + "Id": "bxg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bangala", + "Comment": "" + }, + { + "Id": "bxh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Buhutu", + "Comment": "" + }, + { + "Id": "bxi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Pirlatapa", + "Comment": "" + }, + { + "Id": "bxj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bayungu", + "Comment": "" + }, + { + "Id": "bxk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bukusu", + "Comment": "" + }, + { + "Id": "bxl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Jalkunan", + "Comment": "" + }, + { + "Id": "bxm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mongolia Buriat", + "Comment": "" + }, + { + "Id": "bxn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Burduna", + "Comment": "" + }, + { + "Id": "bxo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Barikanchi", + "Comment": "" + }, + { + "Id": "bxp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bebil", + "Comment": "" + }, + { + "Id": "bxq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Beele", + "Comment": "" + }, + { + "Id": "bxr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Russia Buriat", + "Comment": "" + }, + { + "Id": "bxs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Busam", + "Comment": "" + }, + { + "Id": "bxu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "China Buriat", + "Comment": "" + }, + { + "Id": "bxv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Berakou", + "Comment": "" + }, + { + "Id": "bxw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bankagooma", + "Comment": "" + }, + { + "Id": "bxz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Binahari", + "Comment": "" + }, + { + "Id": "bya", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Batak", + "Comment": "" + }, + { + "Id": "byb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bikya", + "Comment": "" + }, + { + "Id": "byc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ubaghara", + "Comment": "" + }, + { + "Id": "byd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Benyadu\u0027", + "Comment": "" + }, + { + "Id": "bye", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pouye", + "Comment": "" + }, + { + "Id": "byf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bete", + "Comment": "" + }, + { + "Id": "byg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Baygo", + "Comment": "" + }, + { + "Id": "byh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bhujel", + "Comment": "" + }, + { + "Id": "byi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Buyu", + "Comment": "" + }, + { + "Id": "byj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bina (Nigeria)", + "Comment": "" + }, + { + "Id": "byk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Biao", + "Comment": "" + }, + { + "Id": "byl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bayono", + "Comment": "" + }, + { + "Id": "bym", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bidjara", + "Comment": "" + }, + { + "Id": "byn", + "Part2B": "byn", + "Part2T": "byn", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bilin", + "Comment": "" + }, + { + "Id": "byo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Biyo", + "Comment": "" + }, + { + "Id": "byp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bumaji", + "Comment": "" + }, + { + "Id": "byq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Basay", + "Comment": "" + }, + { + "Id": "byr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Baruya", + "Comment": "" + }, + { + "Id": "bys", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Burak", + "Comment": "" + }, + { + "Id": "byt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Berti", + "Comment": "" + }, + { + "Id": "byv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Medumba", + "Comment": "" + }, + { + "Id": "byw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Belhariya", + "Comment": "" + }, + { + "Id": "byx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Qaqet", + "Comment": "" + }, + { + "Id": "byz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Banaro", + "Comment": "" + }, + { + "Id": "bza", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bandi", + "Comment": "" + }, + { + "Id": "bzb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Andio", + "Comment": "" + }, + { + "Id": "bzc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southern Betsimisaraka Malagasy", + "Comment": "" + }, + { + "Id": "bzd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bribri", + "Comment": "" + }, + { + "Id": "bze", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Jenaama Bozo", + "Comment": "" + }, + { + "Id": "bzf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Boikin", + "Comment": "" + }, + { + "Id": "bzg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Babuza", + "Comment": "" + }, + { + "Id": "bzh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mapos Buang", + "Comment": "" + }, + { + "Id": "bzi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bisu", + "Comment": "" + }, + { + "Id": "bzj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Belize Kriol English", + "Comment": "" + }, + { + "Id": "bzk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nicaragua Creole English", + "Comment": "" + }, + { + "Id": "bzl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Boano (Sulawesi)", + "Comment": "" + }, + { + "Id": "bzm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bolondo", + "Comment": "" + }, + { + "Id": "bzn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Boano (Maluku)", + "Comment": "" + }, + { + "Id": "bzo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bozaba", + "Comment": "" + }, + { + "Id": "bzp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kemberano", + "Comment": "" + }, + { + "Id": "bzq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Buli (Indonesia)", + "Comment": "" + }, + { + "Id": "bzr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Biri", + "Comment": "" + }, + { + "Id": "bzs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Brazilian Sign Language", + "Comment": "" + }, + { + "Id": "bzt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "C", + "RefName": "Brithenig", + "Comment": "" + }, + { + "Id": "bzu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Burmeso", + "Comment": "" + }, + { + "Id": "bzv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Naami", + "Comment": "" + }, + { + "Id": "bzw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Basa (Nigeria)", + "Comment": "" + }, + { + "Id": "bzx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "K\u025Bl\u025Bngaxo Bozo", + "Comment": "" + }, + { + "Id": "bzy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Obanliku", + "Comment": "" + }, + { + "Id": "bzz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Evant", + "Comment": "" + }, + { + "Id": "caa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chort\u00ED", + "Comment": "" + }, + { + "Id": "cab", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Garifuna", + "Comment": "" + }, + { + "Id": "cac", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chuj", + "Comment": "" + }, + { + "Id": "cad", + "Part2B": "cad", + "Part2T": "cad", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Caddo", + "Comment": "" + }, + { + "Id": "cae", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lehar", + "Comment": "" + }, + { + "Id": "caf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southern Carrier", + "Comment": "" + }, + { + "Id": "cag", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nivacl\u00E9", + "Comment": "" + }, + { + "Id": "cah", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Cahuarano", + "Comment": "" + }, + { + "Id": "caj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Chan\u00E9", + "Comment": "" + }, + { + "Id": "cak", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kaqchikel", + "Comment": "" + }, + { + "Id": "cal", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Carolinian", + "Comment": "" + }, + { + "Id": "cam", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Cemuh\u00EE", + "Comment": "" + }, + { + "Id": "can", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chambri", + "Comment": "" + }, + { + "Id": "cao", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ch\u00E1cobo", + "Comment": "" + }, + { + "Id": "cap", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chipaya", + "Comment": "" + }, + { + "Id": "caq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Car Nicobarese", + "Comment": "" + }, + { + "Id": "car", + "Part2B": "car", + "Part2T": "car", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Galibi Carib", + "Comment": "" + }, + { + "Id": "cas", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tsiman\u00E9", + "Comment": "" + }, + { + "Id": "cat", + "Part2B": "cat", + "Part2T": "cat", + "Part1": "ca", + "Scope": "I", + "LanguageType": "L", + "RefName": "Catalan", + "Comment": "" + }, + { + "Id": "cav", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Cavine\u00F1a", + "Comment": "" + }, + { + "Id": "caw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Callawalla", + "Comment": "" + }, + { + "Id": "cax", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chiquitano", + "Comment": "" + }, + { + "Id": "cay", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Cayuga", + "Comment": "" + }, + { + "Id": "caz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Canichana", + "Comment": "" + }, + { + "Id": "cbb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Cabiyar\u00ED", + "Comment": "" + }, + { + "Id": "cbc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Carapana", + "Comment": "" + }, + { + "Id": "cbd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Carijona", + "Comment": "" + }, + { + "Id": "cbg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chimila", + "Comment": "" + }, + { + "Id": "cbi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chachi", + "Comment": "" + }, + { + "Id": "cbj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ede Cabe", + "Comment": "" + }, + { + "Id": "cbk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chavacano", + "Comment": "" + }, + { + "Id": "cbl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bualkhaw Chin", + "Comment": "" + }, + { + "Id": "cbn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nyahkur", + "Comment": "" + }, + { + "Id": "cbo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Izora", + "Comment": "" + }, + { + "Id": "cbq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tsucuba", + "Comment": "" + }, + { + "Id": "cbr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Cashibo-Cacataibo", + "Comment": "" + }, + { + "Id": "cbs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Cashinahua", + "Comment": "" + }, + { + "Id": "cbt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chayahuita", + "Comment": "" + }, + { + "Id": "cbu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Candoshi-Shapra", + "Comment": "" + }, + { + "Id": "cbv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Cacua", + "Comment": "" + }, + { + "Id": "cbw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kinabalian", + "Comment": "" + }, + { + "Id": "cby", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Carabayo", + "Comment": "" + }, + { + "Id": "ccc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chamicuro", + "Comment": "" + }, + { + "Id": "ccd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Cafundo Creole", + "Comment": "" + }, + { + "Id": "cce", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chopi", + "Comment": "" + }, + { + "Id": "ccg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Samba Daka", + "Comment": "" + }, + { + "Id": "cch", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Atsam", + "Comment": "" + }, + { + "Id": "ccj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kasanga", + "Comment": "" + }, + { + "Id": "ccl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Cutchi-Swahili", + "Comment": "" + }, + { + "Id": "ccm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Malaccan Creole Malay", + "Comment": "" + }, + { + "Id": "cco", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Comaltepec Chinantec", + "Comment": "" + }, + { + "Id": "ccp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chakma", + "Comment": "" + }, + { + "Id": "ccr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Cacaopera", + "Comment": "" + }, + { + "Id": "cda", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Choni", + "Comment": "" + }, + { + "Id": "cde", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chenchu", + "Comment": "" + }, + { + "Id": "cdf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chiru", + "Comment": "" + }, + { + "Id": "cdh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chambeali", + "Comment": "" + }, + { + "Id": "cdi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chodri", + "Comment": "" + }, + { + "Id": "cdj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Churahi", + "Comment": "" + }, + { + "Id": "cdm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chepang", + "Comment": "" + }, + { + "Id": "cdn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chaudangsi", + "Comment": "" + }, + { + "Id": "cdo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Min Dong Chinese", + "Comment": "" + }, + { + "Id": "cdr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Cinda-Regi-Tiyal", + "Comment": "" + }, + { + "Id": "cds", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chadian Sign Language", + "Comment": "" + }, + { + "Id": "cdy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chadong", + "Comment": "" + }, + { + "Id": "cdz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Koda", + "Comment": "" + }, + { + "Id": "cea", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Lower Chehalis", + "Comment": "" + }, + { + "Id": "ceb", + "Part2B": "ceb", + "Part2T": "ceb", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Cebuano", + "Comment": "" + }, + { + "Id": "ceg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chamacoco", + "Comment": "" + }, + { + "Id": "cek", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Eastern Khumi Chin", + "Comment": "" + }, + { + "Id": "cen", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Cen", + "Comment": "" + }, + { + "Id": "ces", + "Part2B": "cze", + "Part2T": "ces", + "Part1": "cs", + "Scope": "I", + "LanguageType": "L", + "RefName": "Czech", + "Comment": "" + }, + { + "Id": "cet", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Cent\u00FA\u00FAm", + "Comment": "" + }, + { + "Id": "cey", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ekai Chin", + "Comment": "" + }, + { + "Id": "cfa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dijim-Bwilim", + "Comment": "" + }, + { + "Id": "cfd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Cara", + "Comment": "" + }, + { + "Id": "cfg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Como Karim", + "Comment": "" + }, + { + "Id": "cfm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Falam Chin", + "Comment": "" + }, + { + "Id": "cga", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Changriwa", + "Comment": "" + }, + { + "Id": "cgc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kagayanen", + "Comment": "" + }, + { + "Id": "cgg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chiga", + "Comment": "" + }, + { + "Id": "cgk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chocangacakha", + "Comment": "" + }, + { + "Id": "cha", + "Part2B": "cha", + "Part2T": "cha", + "Part1": "ch", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chamorro", + "Comment": "" + }, + { + "Id": "chb", + "Part2B": "chb", + "Part2T": "chb", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Chibcha", + "Comment": "" + }, + { + "Id": "chc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Catawba", + "Comment": "" + }, + { + "Id": "chd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Highland Oaxaca Chontal", + "Comment": "" + }, + { + "Id": "che", + "Part2B": "che", + "Part2T": "che", + "Part1": "ce", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chechen", + "Comment": "" + }, + { + "Id": "chf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tabasco Chontal", + "Comment": "" + }, + { + "Id": "chg", + "Part2B": "chg", + "Part2T": "chg", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Chagatai", + "Comment": "" + }, + { + "Id": "chh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Chinook", + "Comment": "" + }, + { + "Id": "chj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ojitl\u00E1n Chinantec", + "Comment": "" + }, + { + "Id": "chk", + "Part2B": "chk", + "Part2T": "chk", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chuukese", + "Comment": "" + }, + { + "Id": "chl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Cahuilla", + "Comment": "" + }, + { + "Id": "chm", + "Part2B": "chm", + "Part2T": "chm", + "Part1": "", + "Scope": "M", + "LanguageType": "L", + "RefName": "Mari (Russia)", + "Comment": "" + }, + { + "Id": "chn", + "Part2B": "chn", + "Part2T": "chn", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chinook jargon", + "Comment": "" + }, + { + "Id": "cho", + "Part2B": "cho", + "Part2T": "cho", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Choctaw", + "Comment": "" + }, + { + "Id": "chp", + "Part2B": "chp", + "Part2T": "chp", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chipewyan", + "Comment": "" + }, + { + "Id": "chq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Quiotepec Chinantec", + "Comment": "" + }, + { + "Id": "chr", + "Part2B": "chr", + "Part2T": "chr", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Cherokee", + "Comment": "" + }, + { + "Id": "cht", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Chol\u00F3n", + "Comment": "" + }, + { + "Id": "chu", + "Part2B": "chu", + "Part2T": "chu", + "Part1": "cu", + "Scope": "I", + "LanguageType": "H", + "RefName": "Church Slavic", + "Comment": "" + }, + { + "Id": "chv", + "Part2B": "chv", + "Part2T": "chv", + "Part1": "cv", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chuvash", + "Comment": "" + }, + { + "Id": "chw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chuwabu", + "Comment": "" + }, + { + "Id": "chx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chantyal", + "Comment": "" + }, + { + "Id": "chy", + "Part2B": "chy", + "Part2T": "chy", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Cheyenne", + "Comment": "" + }, + { + "Id": "chz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ozumac\u00EDn Chinantec", + "Comment": "" + }, + { + "Id": "cia", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Cia-Cia", + "Comment": "" + }, + { + "Id": "cib", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ci Gbe", + "Comment": "" + }, + { + "Id": "cic", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chickasaw", + "Comment": "" + }, + { + "Id": "cid", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Chimariko", + "Comment": "" + }, + { + "Id": "cie", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Cineni", + "Comment": "" + }, + { + "Id": "cih", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chinali", + "Comment": "" + }, + { + "Id": "cik", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chitkuli Kinnauri", + "Comment": "" + }, + { + "Id": "cim", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Cimbrian", + "Comment": "" + }, + { + "Id": "cin", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Cinta Larga", + "Comment": "" + }, + { + "Id": "cip", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chiapanec", + "Comment": "" + }, + { + "Id": "cir", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tiri", + "Comment": "" + }, + { + "Id": "ciw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chippewa", + "Comment": "" + }, + { + "Id": "ciy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chaima", + "Comment": "" + }, + { + "Id": "cja", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Western Cham", + "Comment": "" + }, + { + "Id": "cje", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chru", + "Comment": "" + }, + { + "Id": "cjh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Upper Chehalis", + "Comment": "" + }, + { + "Id": "cji", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chamalal", + "Comment": "" + }, + { + "Id": "cjk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chokwe", + "Comment": "" + }, + { + "Id": "cjm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Eastern Cham", + "Comment": "" + }, + { + "Id": "cjn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chenapian", + "Comment": "" + }, + { + "Id": "cjo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ash\u00E9ninka Pajonal", + "Comment": "" + }, + { + "Id": "cjp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Cab\u00E9car", + "Comment": "" + }, + { + "Id": "cjs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Shor", + "Comment": "" + }, + { + "Id": "cjv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chuave", + "Comment": "" + }, + { + "Id": "cjy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Jinyu Chinese", + "Comment": "" + }, + { + "Id": "ckb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Central Kurdish", + "Comment": "" + }, + { + "Id": "ckh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chak", + "Comment": "" + }, + { + "Id": "ckl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Cibak", + "Comment": "" + }, + { + "Id": "ckm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chakavian", + "Comment": "" + }, + { + "Id": "ckn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kaang Chin", + "Comment": "" + }, + { + "Id": "cko", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Anufo", + "Comment": "" + }, + { + "Id": "ckq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kajakse", + "Comment": "" + }, + { + "Id": "ckr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kairak", + "Comment": "" + }, + { + "Id": "cks", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tayo", + "Comment": "" + }, + { + "Id": "ckt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chukot", + "Comment": "" + }, + { + "Id": "cku", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Koasati", + "Comment": "" + }, + { + "Id": "ckv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kavalan", + "Comment": "" + }, + { + "Id": "ckx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Caka", + "Comment": "" + }, + { + "Id": "cky", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Cakfem-Mushere", + "Comment": "" + }, + { + "Id": "ckz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Cakchiquel-Quich\u00E9 Mixed Language", + "Comment": "" + }, + { + "Id": "cla", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ron", + "Comment": "" + }, + { + "Id": "clc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chilcotin", + "Comment": "" + }, + { + "Id": "cld", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chaldean Neo-Aramaic", + "Comment": "" + }, + { + "Id": "cle", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lealao Chinantec", + "Comment": "" + }, + { + "Id": "clh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chilisso", + "Comment": "" + }, + { + "Id": "cli", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chakali", + "Comment": "" + }, + { + "Id": "clj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Laitu Chin", + "Comment": "" + }, + { + "Id": "clk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Idu-Mishmi", + "Comment": "" + }, + { + "Id": "cll", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chala", + "Comment": "" + }, + { + "Id": "clm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Clallam", + "Comment": "" + }, + { + "Id": "clo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lowland Oaxaca Chontal", + "Comment": "" + }, + { + "Id": "cls", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Classical Sanskrit", + "Comment": "" + }, + { + "Id": "clt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lautu Chin", + "Comment": "" + }, + { + "Id": "clu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Caluyanun", + "Comment": "" + }, + { + "Id": "clw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chulym", + "Comment": "" + }, + { + "Id": "cly", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Eastern Highland Chatino", + "Comment": "" + }, + { + "Id": "cma", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Maa", + "Comment": "" + }, + { + "Id": "cme", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Cerma", + "Comment": "" + }, + { + "Id": "cmg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Classical Mongolian", + "Comment": "" + }, + { + "Id": "cmi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ember\u00E1-Cham\u00ED", + "Comment": "" + }, + { + "Id": "cml", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Campalagian", + "Comment": "" + }, + { + "Id": "cmm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Michigamea", + "Comment": "" + }, + { + "Id": "cmn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mandarin Chinese", + "Comment": "" + }, + { + "Id": "cmo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Central Mnong", + "Comment": "" + }, + { + "Id": "cmr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mro-Khimi Chin", + "Comment": "" + }, + { + "Id": "cms", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Messapic", + "Comment": "" + }, + { + "Id": "cmt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Camtho", + "Comment": "" + }, + { + "Id": "cna", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Changthang", + "Comment": "" + }, + { + "Id": "cnb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chinbon Chin", + "Comment": "" + }, + { + "Id": "cnc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "C\u00F4\u00F4ng", + "Comment": "" + }, + { + "Id": "cng", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Northern Qiang", + "Comment": "" + }, + { + "Id": "cnh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hakha Chin", + "Comment": "" + }, + { + "Id": "cni", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ash\u00E1ninka", + "Comment": "" + }, + { + "Id": "cnk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Khumi Chin", + "Comment": "" + }, + { + "Id": "cnl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lalana Chinantec", + "Comment": "" + }, + { + "Id": "cno", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Con", + "Comment": "" + }, + { + "Id": "cnp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Northern Ping Chinese", + "Comment": "" + }, + { + "Id": "cnq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chung", + "Comment": "" + }, + { + "Id": "cnr", + "Part2B": "cnr", + "Part2T": "cnr", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Montenegrin", + "Comment": "" + }, + { + "Id": "cns", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Central Asmat", + "Comment": "" + }, + { + "Id": "cnt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tepetotutla Chinantec", + "Comment": "" + }, + { + "Id": "cnu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chenoua", + "Comment": "" + }, + { + "Id": "cnw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ngawn Chin", + "Comment": "" + }, + { + "Id": "cnx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Middle Cornish", + "Comment": "" + }, + { + "Id": "coa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Cocos Islands Malay", + "Comment": "" + }, + { + "Id": "cob", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Chicomuceltec", + "Comment": "" + }, + { + "Id": "coc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Cocopa", + "Comment": "" + }, + { + "Id": "cod", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Cocama-Cocamilla", + "Comment": "" + }, + { + "Id": "coe", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Koreguaje", + "Comment": "" + }, + { + "Id": "cof", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Colorado", + "Comment": "" + }, + { + "Id": "cog", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chong", + "Comment": "" + }, + { + "Id": "coh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chonyi-Dzihana-Kauma", + "Comment": "" + }, + { + "Id": "coj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Cochimi", + "Comment": "" + }, + { + "Id": "cok", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Santa Teresa Cora", + "Comment": "" + }, + { + "Id": "col", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Columbia-Wenatchi", + "Comment": "" + }, + { + "Id": "com", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Comanche", + "Comment": "" + }, + { + "Id": "con", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Cof\u00E1n", + "Comment": "" + }, + { + "Id": "coo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Comox", + "Comment": "" + }, + { + "Id": "cop", + "Part2B": "cop", + "Part2T": "cop", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Coptic", + "Comment": "" + }, + { + "Id": "coq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Coquille", + "Comment": "" + }, + { + "Id": "cor", + "Part2B": "cor", + "Part2T": "cor", + "Part1": "kw", + "Scope": "I", + "LanguageType": "L", + "RefName": "Cornish", + "Comment": "" + }, + { + "Id": "cos", + "Part2B": "cos", + "Part2T": "cos", + "Part1": "co", + "Scope": "I", + "LanguageType": "L", + "RefName": "Corsican", + "Comment": "" + }, + { + "Id": "cot", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Caquinte", + "Comment": "" + }, + { + "Id": "cou", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wamey", + "Comment": "" + }, + { + "Id": "cov", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Cao Miao", + "Comment": "" + }, + { + "Id": "cow", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Cowlitz", + "Comment": "" + }, + { + "Id": "cox", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nanti", + "Comment": "" + }, + { + "Id": "coz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chochotec", + "Comment": "" + }, + { + "Id": "cpa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Palantla Chinantec", + "Comment": "" + }, + { + "Id": "cpb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ucayali-Yur\u00FAa Ash\u00E9ninka", + "Comment": "" + }, + { + "Id": "cpc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ajy\u00EDninka Apurucayali", + "Comment": "" + }, + { + "Id": "cpg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Cappadocian Greek", + "Comment": "" + }, + { + "Id": "cpi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chinese Pidgin English", + "Comment": "" + }, + { + "Id": "cpn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Cherepon", + "Comment": "" + }, + { + "Id": "cpo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kpeego", + "Comment": "" + }, + { + "Id": "cps", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Capiznon", + "Comment": "" + }, + { + "Id": "cpu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pichis Ash\u00E9ninka", + "Comment": "" + }, + { + "Id": "cpx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pu-Xian Chinese", + "Comment": "" + }, + { + "Id": "cpy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "South Ucayali Ash\u00E9ninka", + "Comment": "" + }, + { + "Id": "cqd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chuanqiandian Cluster Miao", + "Comment": "" + }, + { + "Id": "cra", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chara", + "Comment": "" + }, + { + "Id": "crb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Island Carib", + "Comment": "" + }, + { + "Id": "crc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lonwolwol", + "Comment": "" + }, + { + "Id": "crd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Coeur d\u0027Alene", + "Comment": "" + }, + { + "Id": "cre", + "Part2B": "cre", + "Part2T": "cre", + "Part1": "cr", + "Scope": "M", + "LanguageType": "L", + "RefName": "Cree", + "Comment": "" + }, + { + "Id": "crf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Caramanta", + "Comment": "" + }, + { + "Id": "crg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Michif", + "Comment": "" + }, + { + "Id": "crh", + "Part2B": "crh", + "Part2T": "crh", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Crimean Tatar", + "Comment": "" + }, + { + "Id": "cri", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "S\u00E3otomense", + "Comment": "" + }, + { + "Id": "crj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southern East Cree", + "Comment": "" + }, + { + "Id": "crk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Plains Cree", + "Comment": "" + }, + { + "Id": "crl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Northern East Cree", + "Comment": "" + }, + { + "Id": "crm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Moose Cree", + "Comment": "" + }, + { + "Id": "crn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "El Nayar Cora", + "Comment": "" + }, + { + "Id": "cro", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Crow", + "Comment": "" + }, + { + "Id": "crq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Iyo\u0027wujwa Chorote", + "Comment": "" + }, + { + "Id": "crr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Carolina Algonquian", + "Comment": "" + }, + { + "Id": "crs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Seselwa Creole French", + "Comment": "" + }, + { + "Id": "crt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Iyojwa\u0027ja Chorote", + "Comment": "" + }, + { + "Id": "crv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chaura", + "Comment": "" + }, + { + "Id": "crw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chrau", + "Comment": "" + }, + { + "Id": "crx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Carrier", + "Comment": "" + }, + { + "Id": "cry", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Cori", + "Comment": "" + }, + { + "Id": "crz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Cruze\u00F1o", + "Comment": "" + }, + { + "Id": "csa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chiltepec Chinantec", + "Comment": "" + }, + { + "Id": "csb", + "Part2B": "csb", + "Part2T": "csb", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kashubian", + "Comment": "" + }, + { + "Id": "csc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Catalan Sign Language", + "Comment": "" + }, + { + "Id": "csd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chiangmai Sign Language", + "Comment": "" + }, + { + "Id": "cse", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Czech Sign Language", + "Comment": "" + }, + { + "Id": "csf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Cuba Sign Language", + "Comment": "" + }, + { + "Id": "csg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chilean Sign Language", + "Comment": "" + }, + { + "Id": "csh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Asho Chin", + "Comment": "" + }, + { + "Id": "csi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Coast Miwok", + "Comment": "" + }, + { + "Id": "csj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Songlai Chin", + "Comment": "" + }, + { + "Id": "csk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Jola-Kasa", + "Comment": "" + }, + { + "Id": "csl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chinese Sign Language", + "Comment": "" + }, + { + "Id": "csm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Central Sierra Miwok", + "Comment": "" + }, + { + "Id": "csn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Colombian Sign Language", + "Comment": "" + }, + { + "Id": "cso", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sochiapam Chinantec", + "Comment": "" + }, + { + "Id": "csp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southern Ping Chinese", + "Comment": "" + }, + { + "Id": "csq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Croatia Sign Language", + "Comment": "" + }, + { + "Id": "csr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Costa Rican Sign Language", + "Comment": "" + }, + { + "Id": "css", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Southern Ohlone", + "Comment": "" + }, + { + "Id": "cst", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Northern Ohlone", + "Comment": "" + }, + { + "Id": "csv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sumtu Chin", + "Comment": "" + }, + { + "Id": "csw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Swampy Cree", + "Comment": "" + }, + { + "Id": "csx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Cambodian Sign Language", + "Comment": "" + }, + { + "Id": "csy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Siyin Chin", + "Comment": "" + }, + { + "Id": "csz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Coos", + "Comment": "" + }, + { + "Id": "cta", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tataltepec Chatino", + "Comment": "" + }, + { + "Id": "ctc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Chetco", + "Comment": "" + }, + { + "Id": "ctd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tedim Chin", + "Comment": "" + }, + { + "Id": "cte", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tepinapa Chinantec", + "Comment": "" + }, + { + "Id": "ctg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chittagonian", + "Comment": "" + }, + { + "Id": "cth", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Thaiphum Chin", + "Comment": "" + }, + { + "Id": "ctl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tlacoatzintepec Chinantec", + "Comment": "" + }, + { + "Id": "ctm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Chitimacha", + "Comment": "" + }, + { + "Id": "ctn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chhintange", + "Comment": "" + }, + { + "Id": "cto", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ember\u00E1-Cat\u00EDo", + "Comment": "" + }, + { + "Id": "ctp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Western Highland Chatino", + "Comment": "" + }, + { + "Id": "cts", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Northern Catanduanes Bikol", + "Comment": "" + }, + { + "Id": "ctt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wayanad Chetti", + "Comment": "" + }, + { + "Id": "ctu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chol", + "Comment": "" + }, + { + "Id": "cty", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Moundadan Chetty", + "Comment": "" + }, + { + "Id": "ctz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Zacatepec Chatino", + "Comment": "" + }, + { + "Id": "cua", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Cua", + "Comment": "" + }, + { + "Id": "cub", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Cubeo", + "Comment": "" + }, + { + "Id": "cuc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Usila Chinantec", + "Comment": "" + }, + { + "Id": "cuh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chuka", + "Comment": "" + }, + { + "Id": "cui", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Cuiba", + "Comment": "" + }, + { + "Id": "cuj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mashco Piro", + "Comment": "" + }, + { + "Id": "cuk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "San Blas Kuna", + "Comment": "" + }, + { + "Id": "cul", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Culina", + "Comment": "" + }, + { + "Id": "cuo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Cumanagoto", + "Comment": "" + }, + { + "Id": "cup", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Cupe\u00F1o", + "Comment": "" + }, + { + "Id": "cuq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Cun", + "Comment": "" + }, + { + "Id": "cur", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chhulung", + "Comment": "" + }, + { + "Id": "cut", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Teutila Cuicatec", + "Comment": "" + }, + { + "Id": "cuu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tai Ya", + "Comment": "" + }, + { + "Id": "cuv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Cuvok", + "Comment": "" + }, + { + "Id": "cuw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chukwa", + "Comment": "" + }, + { + "Id": "cux", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tepeuxila Cuicatec", + "Comment": "" + }, + { + "Id": "cuy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Cuitlatec", + "Comment": "" + }, + { + "Id": "cvg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chug", + "Comment": "" + }, + { + "Id": "cvn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Valle Nacional Chinantec", + "Comment": "" + }, + { + "Id": "cwa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kabwa", + "Comment": "" + }, + { + "Id": "cwb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Maindo", + "Comment": "" + }, + { + "Id": "cwd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Woods Cree", + "Comment": "" + }, + { + "Id": "cwe", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kwere", + "Comment": "" + }, + { + "Id": "cwg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chewong", + "Comment": "" + }, + { + "Id": "cwt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kuwaataay", + "Comment": "" + }, + { + "Id": "cxh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Cha\u0027ari", + "Comment": "" + }, + { + "Id": "cya", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nopala Chatino", + "Comment": "" + }, + { + "Id": "cyb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Cayubaba", + "Comment": "" + }, + { + "Id": "cym", + "Part2B": "wel", + "Part2T": "cym", + "Part1": "cy", + "Scope": "I", + "LanguageType": "L", + "RefName": "Welsh", + "Comment": "" + }, + { + "Id": "cyo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Cuyonon", + "Comment": "" + }, + { + "Id": "czh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Huizhou Chinese", + "Comment": "" + }, + { + "Id": "czk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Knaanic", + "Comment": "" + }, + { + "Id": "czn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Zenzontepec Chatino", + "Comment": "" + }, + { + "Id": "czo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Min Zhong Chinese", + "Comment": "" + }, + { + "Id": "czt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Zotung Chin", + "Comment": "" + }, + { + "Id": "daa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dangal\u00E9at", + "Comment": "" + }, + { + "Id": "dac", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dambi", + "Comment": "" + }, + { + "Id": "dad", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Marik", + "Comment": "" + }, + { + "Id": "dae", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Duupa", + "Comment": "" + }, + { + "Id": "dag", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dagbani", + "Comment": "" + }, + { + "Id": "dah", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gwahatike", + "Comment": "" + }, + { + "Id": "dai", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Day", + "Comment": "" + }, + { + "Id": "daj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dar Fur Daju", + "Comment": "" + }, + { + "Id": "dak", + "Part2B": "dak", + "Part2T": "dak", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dakota", + "Comment": "" + }, + { + "Id": "dal", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dahalo", + "Comment": "" + }, + { + "Id": "dam", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Damakawa", + "Comment": "" + }, + { + "Id": "dan", + "Part2B": "dan", + "Part2T": "dan", + "Part1": "da", + "Scope": "I", + "LanguageType": "L", + "RefName": "Danish", + "Comment": "" + }, + { + "Id": "dao", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Daai Chin", + "Comment": "" + }, + { + "Id": "daq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dandami Maria", + "Comment": "" + }, + { + "Id": "dar", + "Part2B": "dar", + "Part2T": "dar", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dargwa", + "Comment": "" + }, + { + "Id": "das", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Daho-Doo", + "Comment": "" + }, + { + "Id": "dau", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dar Sila Daju", + "Comment": "" + }, + { + "Id": "dav", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Taita", + "Comment": "" + }, + { + "Id": "daw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Davawenyo", + "Comment": "" + }, + { + "Id": "dax", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dayi", + "Comment": "" + }, + { + "Id": "daz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Moi-Wadea", + "Comment": "" + }, + { + "Id": "dba", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bangime", + "Comment": "" + }, + { + "Id": "dbb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Deno", + "Comment": "" + }, + { + "Id": "dbd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dadiya", + "Comment": "" + }, + { + "Id": "dbe", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dabe", + "Comment": "" + }, + { + "Id": "dbf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Edopi", + "Comment": "" + }, + { + "Id": "dbg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dogul Dom Dogon", + "Comment": "" + }, + { + "Id": "dbi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Doka", + "Comment": "" + }, + { + "Id": "dbj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ida\u0027an", + "Comment": "" + }, + { + "Id": "dbl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dyirbal", + "Comment": "" + }, + { + "Id": "dbm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Duguri", + "Comment": "" + }, + { + "Id": "dbn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Duriankere", + "Comment": "" + }, + { + "Id": "dbo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dulbu", + "Comment": "" + }, + { + "Id": "dbp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Duwai", + "Comment": "" + }, + { + "Id": "dbq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Daba", + "Comment": "" + }, + { + "Id": "dbr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dabarre", + "Comment": "" + }, + { + "Id": "dbt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ben Tey Dogon", + "Comment": "" + }, + { + "Id": "dbu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bondum Dom Dogon", + "Comment": "" + }, + { + "Id": "dbv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dungu", + "Comment": "" + }, + { + "Id": "dbw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bankan Tey Dogon", + "Comment": "" + }, + { + "Id": "dby", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dibiyaso", + "Comment": "" + }, + { + "Id": "dcc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Deccan", + "Comment": "" + }, + { + "Id": "dcr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Negerhollands", + "Comment": "" + }, + { + "Id": "dda", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Dadi Dadi", + "Comment": "" + }, + { + "Id": "ddd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dongotono", + "Comment": "" + }, + { + "Id": "dde", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Doondo", + "Comment": "" + }, + { + "Id": "ddg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Fataluku", + "Comment": "" + }, + { + "Id": "ddi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "West Goodenough", + "Comment": "" + }, + { + "Id": "ddj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Jaru", + "Comment": "" + }, + { + "Id": "ddn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dendi (Benin)", + "Comment": "" + }, + { + "Id": "ddo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dido", + "Comment": "" + }, + { + "Id": "ddr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Dhudhuroa", + "Comment": "" + }, + { + "Id": "dds", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Donno So Dogon", + "Comment": "" + }, + { + "Id": "ddw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dawera-Daweloor", + "Comment": "" + }, + { + "Id": "dec", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dagik", + "Comment": "" + }, + { + "Id": "ded", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dedua", + "Comment": "" + }, + { + "Id": "dee", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dewoin", + "Comment": "" + }, + { + "Id": "def", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dezfuli", + "Comment": "" + }, + { + "Id": "deg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Degema", + "Comment": "" + }, + { + "Id": "deh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dehwari", + "Comment": "" + }, + { + "Id": "dei", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Demisa", + "Comment": "" + }, + { + "Id": "del", + "Part2B": "del", + "Part2T": "del", + "Part1": "", + "Scope": "M", + "LanguageType": "L", + "RefName": "Delaware", + "Comment": "" + }, + { + "Id": "dem", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dem", + "Comment": "" + }, + { + "Id": "den", + "Part2B": "den", + "Part2T": "den", + "Part1": "", + "Scope": "M", + "LanguageType": "L", + "RefName": "Slave (Athapascan)", + "Comment": "" + }, + { + "Id": "dep", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Pidgin Delaware", + "Comment": "" + }, + { + "Id": "deq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dendi (Central African Republic)", + "Comment": "" + }, + { + "Id": "der", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Deori", + "Comment": "" + }, + { + "Id": "des", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Desano", + "Comment": "" + }, + { + "Id": "deu", + "Part2B": "ger", + "Part2T": "deu", + "Part1": "de", + "Scope": "I", + "LanguageType": "L", + "RefName": "German", + "Comment": "" + }, + { + "Id": "dev", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Domung", + "Comment": "" + }, + { + "Id": "dez", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dengese", + "Comment": "" + }, + { + "Id": "dga", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southern Dagaare", + "Comment": "" + }, + { + "Id": "dgb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bunoge Dogon", + "Comment": "" + }, + { + "Id": "dgc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Casiguran Dumagat Agta", + "Comment": "" + }, + { + "Id": "dgd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dagaari Dioula", + "Comment": "" + }, + { + "Id": "dge", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Degenan", + "Comment": "" + }, + { + "Id": "dgg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Doga", + "Comment": "" + }, + { + "Id": "dgh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dghwede", + "Comment": "" + }, + { + "Id": "dgi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Northern Dagara", + "Comment": "" + }, + { + "Id": "dgk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dagba", + "Comment": "" + }, + { + "Id": "dgl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Andaandi", + "Comment": "" + }, + { + "Id": "dgn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Dagoman", + "Comment": "" + }, + { + "Id": "dgo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dogri (individual language)", + "Comment": "" + }, + { + "Id": "dgr", + "Part2B": "dgr", + "Part2T": "dgr", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tlicho", + "Comment": "" + }, + { + "Id": "dgs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dogoso", + "Comment": "" + }, + { + "Id": "dgt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Ndra\u0027ngith", + "Comment": "" + }, + { + "Id": "dgw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Daungwurrung", + "Comment": "" + }, + { + "Id": "dgx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Doghoro", + "Comment": "" + }, + { + "Id": "dgz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Daga", + "Comment": "" + }, + { + "Id": "dhd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dhundari", + "Comment": "" + }, + { + "Id": "dhg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dhangu-Djangu", + "Comment": "" + }, + { + "Id": "dhi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dhimal", + "Comment": "" + }, + { + "Id": "dhl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dhalandji", + "Comment": "" + }, + { + "Id": "dhm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Zemba", + "Comment": "" + }, + { + "Id": "dhn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dhanki", + "Comment": "" + }, + { + "Id": "dho", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dhodia", + "Comment": "" + }, + { + "Id": "dhr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dhargari", + "Comment": "" + }, + { + "Id": "dhs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dhaiso", + "Comment": "" + }, + { + "Id": "dhu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Dhurga", + "Comment": "" + }, + { + "Id": "dhv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dehu", + "Comment": "" + }, + { + "Id": "dhw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dhanwar (Nepal)", + "Comment": "" + }, + { + "Id": "dhx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dhungaloo", + "Comment": "" + }, + { + "Id": "dia", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dia", + "Comment": "" + }, + { + "Id": "dib", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "South Central Dinka", + "Comment": "" + }, + { + "Id": "dic", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lakota Dida", + "Comment": "" + }, + { + "Id": "did", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Didinga", + "Comment": "" + }, + { + "Id": "dif", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Dieri", + "Comment": "" + }, + { + "Id": "dig", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Digo", + "Comment": "" + }, + { + "Id": "dih", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kumiai", + "Comment": "" + }, + { + "Id": "dii", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dimbong", + "Comment": "" + }, + { + "Id": "dij", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dai", + "Comment": "" + }, + { + "Id": "dik", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southwestern Dinka", + "Comment": "" + }, + { + "Id": "dil", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dilling", + "Comment": "" + }, + { + "Id": "dim", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dime", + "Comment": "" + }, + { + "Id": "din", + "Part2B": "din", + "Part2T": "din", + "Part1": "", + "Scope": "M", + "LanguageType": "L", + "RefName": "Dinka", + "Comment": "" + }, + { + "Id": "dio", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dibo", + "Comment": "" + }, + { + "Id": "dip", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Northeastern Dinka", + "Comment": "" + }, + { + "Id": "diq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dimli (individual language)", + "Comment": "" + }, + { + "Id": "dir", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dirim", + "Comment": "" + }, + { + "Id": "dis", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dimasa", + "Comment": "" + }, + { + "Id": "diu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Diriku", + "Comment": "" + }, + { + "Id": "div", + "Part2B": "div", + "Part2T": "div", + "Part1": "dv", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dhivehi", + "Comment": "" + }, + { + "Id": "diw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Northwestern Dinka", + "Comment": "" + }, + { + "Id": "dix", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dixon Reef", + "Comment": "" + }, + { + "Id": "diy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Diuwe", + "Comment": "" + }, + { + "Id": "diz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ding", + "Comment": "" + }, + { + "Id": "dja", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Djadjawurrung", + "Comment": "" + }, + { + "Id": "djb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Djinba", + "Comment": "" + }, + { + "Id": "djc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dar Daju Daju", + "Comment": "" + }, + { + "Id": "djd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Djamindjung", + "Comment": "" + }, + { + "Id": "dje", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Zarma", + "Comment": "" + }, + { + "Id": "djf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Djangun", + "Comment": "" + }, + { + "Id": "dji", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Djinang", + "Comment": "" + }, + { + "Id": "djj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Djeebbana", + "Comment": "" + }, + { + "Id": "djk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Eastern Maroon Creole", + "Comment": "" + }, + { + "Id": "djm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Jamsay Dogon", + "Comment": "" + }, + { + "Id": "djn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Jawoyn", + "Comment": "" + }, + { + "Id": "djo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Jangkang", + "Comment": "" + }, + { + "Id": "djr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Djambarrpuyngu", + "Comment": "" + }, + { + "Id": "dju", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kapriman", + "Comment": "" + }, + { + "Id": "djw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Djawi", + "Comment": "" + }, + { + "Id": "dka", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dakpakha", + "Comment": "" + }, + { + "Id": "dkg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kadung", + "Comment": "" + }, + { + "Id": "dkk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dakka", + "Comment": "" + }, + { + "Id": "dkr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kuijau", + "Comment": "" + }, + { + "Id": "dks", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southeastern Dinka", + "Comment": "" + }, + { + "Id": "dkx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mazagway", + "Comment": "" + }, + { + "Id": "dlg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dolgan", + "Comment": "" + }, + { + "Id": "dlk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dahalik", + "Comment": "" + }, + { + "Id": "dlm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Dalmatian", + "Comment": "" + }, + { + "Id": "dln", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Darlong", + "Comment": "" + }, + { + "Id": "dma", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Duma", + "Comment": "" + }, + { + "Id": "dmb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mombo Dogon", + "Comment": "" + }, + { + "Id": "dmc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gavak", + "Comment": "" + }, + { + "Id": "dmd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Madhi Madhi", + "Comment": "" + }, + { + "Id": "dme", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dugwor", + "Comment": "" + }, + { + "Id": "dmf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Medefaidrin", + "Comment": "" + }, + { + "Id": "dmg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Upper Kinabatangan", + "Comment": "" + }, + { + "Id": "dmk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Domaaki", + "Comment": "" + }, + { + "Id": "dml", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dameli", + "Comment": "" + }, + { + "Id": "dmm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dama", + "Comment": "" + }, + { + "Id": "dmo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kemedzung", + "Comment": "" + }, + { + "Id": "dmr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "East Damar", + "Comment": "" + }, + { + "Id": "dms", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dampelas", + "Comment": "" + }, + { + "Id": "dmu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dubu", + "Comment": "" + }, + { + "Id": "dmv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dumpas", + "Comment": "" + }, + { + "Id": "dmw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mudburra", + "Comment": "" + }, + { + "Id": "dmx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dema", + "Comment": "" + }, + { + "Id": "dmy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Demta", + "Comment": "" + }, + { + "Id": "dna", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Upper Grand Valley Dani", + "Comment": "" + }, + { + "Id": "dnd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Daonda", + "Comment": "" + }, + { + "Id": "dne", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ndendeule", + "Comment": "" + }, + { + "Id": "dng", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dungan", + "Comment": "" + }, + { + "Id": "dni", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lower Grand Valley Dani", + "Comment": "" + }, + { + "Id": "dnj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dan", + "Comment": "" + }, + { + "Id": "dnk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dengka", + "Comment": "" + }, + { + "Id": "dnn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dz\u00F9\u00F9ngoo", + "Comment": "" + }, + { + "Id": "dno", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ndrulo", + "Comment": "" + }, + { + "Id": "dnr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Danaru", + "Comment": "" + }, + { + "Id": "dnt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mid Grand Valley Dani", + "Comment": "" + }, + { + "Id": "dnu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Danau", + "Comment": "" + }, + { + "Id": "dnv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Danu", + "Comment": "" + }, + { + "Id": "dnw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Western Dani", + "Comment": "" + }, + { + "Id": "dny", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Den\u00ED", + "Comment": "" + }, + { + "Id": "doa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dom", + "Comment": "" + }, + { + "Id": "dob", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dobu", + "Comment": "" + }, + { + "Id": "doc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Northern Dong", + "Comment": "" + }, + { + "Id": "doe", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Doe", + "Comment": "" + }, + { + "Id": "dof", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Domu", + "Comment": "" + }, + { + "Id": "doh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dong", + "Comment": "" + }, + { + "Id": "doi", + "Part2B": "doi", + "Part2T": "doi", + "Part1": "", + "Scope": "M", + "LanguageType": "L", + "RefName": "Dogri (macrolanguage)", + "Comment": "" + }, + { + "Id": "dok", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dondo", + "Comment": "" + }, + { + "Id": "dol", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Doso", + "Comment": "" + }, + { + "Id": "don", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Toura (Papua New Guinea)", + "Comment": "" + }, + { + "Id": "doo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dongo", + "Comment": "" + }, + { + "Id": "dop", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lukpa", + "Comment": "" + }, + { + "Id": "doq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dominican Sign Language", + "Comment": "" + }, + { + "Id": "dor", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dori\u0027o", + "Comment": "" + }, + { + "Id": "dos", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dogos\u00E9", + "Comment": "" + }, + { + "Id": "dot", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dass", + "Comment": "" + }, + { + "Id": "dov", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dombe", + "Comment": "" + }, + { + "Id": "dow", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Doyayo", + "Comment": "" + }, + { + "Id": "dox", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bussa", + "Comment": "" + }, + { + "Id": "doy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dompo", + "Comment": "" + }, + { + "Id": "doz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dorze", + "Comment": "" + }, + { + "Id": "dpp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Papar", + "Comment": "" + }, + { + "Id": "drb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dair", + "Comment": "" + }, + { + "Id": "drc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Minderico", + "Comment": "" + }, + { + "Id": "drd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Darmiya", + "Comment": "" + }, + { + "Id": "dre", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dolpo", + "Comment": "" + }, + { + "Id": "drg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Rungus", + "Comment": "" + }, + { + "Id": "dri", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "C\u0027Lela", + "Comment": "" + }, + { + "Id": "drl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Paakantyi", + "Comment": "" + }, + { + "Id": "drn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "West Damar", + "Comment": "" + }, + { + "Id": "dro", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Daro-Matu Melanau", + "Comment": "" + }, + { + "Id": "drq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Dura", + "Comment": "" + }, + { + "Id": "drs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gedeo", + "Comment": "" + }, + { + "Id": "drt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Drents", + "Comment": "" + }, + { + "Id": "dru", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Rukai", + "Comment": "" + }, + { + "Id": "dry", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Darai", + "Comment": "" + }, + { + "Id": "dsb", + "Part2B": "dsb", + "Part2T": "dsb", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lower Sorbian", + "Comment": "" + }, + { + "Id": "dse", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dutch Sign Language", + "Comment": "" + }, + { + "Id": "dsh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Daasanach", + "Comment": "" + }, + { + "Id": "dsi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Disa", + "Comment": "" + }, + { + "Id": "dsk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dokshi", + "Comment": "" + }, + { + "Id": "dsl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Danish Sign Language", + "Comment": "" + }, + { + "Id": "dsn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Dusner", + "Comment": "" + }, + { + "Id": "dso", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Desiya", + "Comment": "" + }, + { + "Id": "dsq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tadaksahak", + "Comment": "" + }, + { + "Id": "dsz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mardin Sign Language", + "Comment": "" + }, + { + "Id": "dta", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Daur", + "Comment": "" + }, + { + "Id": "dtb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Labuk-Kinabatangan Kadazan", + "Comment": "" + }, + { + "Id": "dtd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ditidaht", + "Comment": "" + }, + { + "Id": "dth", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Adithinngithigh", + "Comment": "" + }, + { + "Id": "dti", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ana Tinga Dogon", + "Comment": "" + }, + { + "Id": "dtk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tene Kan Dogon", + "Comment": "" + }, + { + "Id": "dtm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tomo Kan Dogon", + "Comment": "" + }, + { + "Id": "dtn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Daats\u02BCi\u0301in", + "Comment": "" + }, + { + "Id": "dto", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tommo So Dogon", + "Comment": "" + }, + { + "Id": "dtp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kadazan Dusun", + "Comment": "" + }, + { + "Id": "dtr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lotud", + "Comment": "" + }, + { + "Id": "dts", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Toro So Dogon", + "Comment": "" + }, + { + "Id": "dtt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Toro Tegu Dogon", + "Comment": "" + }, + { + "Id": "dtu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tebul Ure Dogon", + "Comment": "" + }, + { + "Id": "dty", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dotyali", + "Comment": "" + }, + { + "Id": "dua", + "Part2B": "dua", + "Part2T": "dua", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Duala", + "Comment": "" + }, + { + "Id": "dub", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dubli", + "Comment": "" + }, + { + "Id": "duc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Duna", + "Comment": "" + }, + { + "Id": "due", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Umiray Dumaget Agta", + "Comment": "" + }, + { + "Id": "duf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dumbea", + "Comment": "" + }, + { + "Id": "dug", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Duruma", + "Comment": "" + }, + { + "Id": "duh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dungra Bhil", + "Comment": "" + }, + { + "Id": "dui", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dumun", + "Comment": "" + }, + { + "Id": "duk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Uyajitaya", + "Comment": "" + }, + { + "Id": "dul", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Alabat Island Agta", + "Comment": "" + }, + { + "Id": "dum", + "Part2B": "dum", + "Part2T": "dum", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Middle Dutch (ca. 1050-1350)", + "Comment": "" + }, + { + "Id": "dun", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dusun Deyah", + "Comment": "" + }, + { + "Id": "duo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dupaninan Agta", + "Comment": "" + }, + { + "Id": "dup", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Duano", + "Comment": "" + }, + { + "Id": "duq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dusun Malang", + "Comment": "" + }, + { + "Id": "dur", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dii", + "Comment": "" + }, + { + "Id": "dus", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dumi", + "Comment": "" + }, + { + "Id": "duu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Drung", + "Comment": "" + }, + { + "Id": "duv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Duvle", + "Comment": "" + }, + { + "Id": "duw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dusun Witu", + "Comment": "" + }, + { + "Id": "dux", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Duungooma", + "Comment": "" + }, + { + "Id": "duy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Dicamay Agta", + "Comment": "" + }, + { + "Id": "duz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Duli-Gey", + "Comment": "" + }, + { + "Id": "dva", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Duau", + "Comment": "" + }, + { + "Id": "dwa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Diri", + "Comment": "" + }, + { + "Id": "dwk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dawik Kui", + "Comment": "" + }, + { + "Id": "dwr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dawro", + "Comment": "" + }, + { + "Id": "dws", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "C", + "RefName": "Dutton World Speedwords", + "Comment": "" + }, + { + "Id": "dwu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dhuwal", + "Comment": "" + }, + { + "Id": "dww", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dawawa", + "Comment": "" + }, + { + "Id": "dwy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dhuwaya", + "Comment": "" + }, + { + "Id": "dwz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dewas Rai", + "Comment": "" + }, + { + "Id": "dya", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dyan", + "Comment": "" + }, + { + "Id": "dyb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Dyaberdyaber", + "Comment": "" + }, + { + "Id": "dyd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Dyugun", + "Comment": "" + }, + { + "Id": "dyg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Villa Viciosa Agta", + "Comment": "" + }, + { + "Id": "dyi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Djimini Senoufo", + "Comment": "" + }, + { + "Id": "dym", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yanda Dom Dogon", + "Comment": "" + }, + { + "Id": "dyn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dyangadi", + "Comment": "" + }, + { + "Id": "dyo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Jola-Fonyi", + "Comment": "" + }, + { + "Id": "dyr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dyarim", + "Comment": "" + }, + { + "Id": "dyu", + "Part2B": "dyu", + "Part2T": "dyu", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dyula", + "Comment": "" + }, + { + "Id": "dyy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Djabugay", + "Comment": "" + }, + { + "Id": "dza", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tunzu", + "Comment": "" + }, + { + "Id": "dzd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Daza", + "Comment": "" + }, + { + "Id": "dze", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Djiwarli", + "Comment": "" + }, + { + "Id": "dzg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dazaga", + "Comment": "" + }, + { + "Id": "dzl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dzalakha", + "Comment": "" + }, + { + "Id": "dzn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dzando", + "Comment": "" + }, + { + "Id": "dzo", + "Part2B": "dzo", + "Part2T": "dzo", + "Part1": "dz", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dzongkha", + "Comment": "" + }, + { + "Id": "eaa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Karenggapa", + "Comment": "" + }, + { + "Id": "ebc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Beginci", + "Comment": "" + }, + { + "Id": "ebg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ebughu", + "Comment": "" + }, + { + "Id": "ebk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Eastern Bontok", + "Comment": "" + }, + { + "Id": "ebo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Teke-Ebo", + "Comment": "" + }, + { + "Id": "ebr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ebri\u00E9", + "Comment": "" + }, + { + "Id": "ebu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Embu", + "Comment": "" + }, + { + "Id": "ecr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Eteocretan", + "Comment": "" + }, + { + "Id": "ecs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ecuadorian Sign Language", + "Comment": "" + }, + { + "Id": "ecy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Eteocypriot", + "Comment": "" + }, + { + "Id": "eee", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "E", + "Comment": "" + }, + { + "Id": "efa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Efai", + "Comment": "" + }, + { + "Id": "efe", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Efe", + "Comment": "" + }, + { + "Id": "efi", + "Part2B": "efi", + "Part2T": "efi", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Efik", + "Comment": "" + }, + { + "Id": "ega", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ega", + "Comment": "" + }, + { + "Id": "egl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Emilian", + "Comment": "" + }, + { + "Id": "egm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Benamanga", + "Comment": "" + }, + { + "Id": "ego", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Eggon", + "Comment": "" + }, + { + "Id": "egy", + "Part2B": "egy", + "Part2T": "egy", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Egyptian (Ancient)", + "Comment": "" + }, + { + "Id": "ehs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Miyakubo Sign Language", + "Comment": "" + }, + { + "Id": "ehu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ehueun", + "Comment": "" + }, + { + "Id": "eip", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Eipomek", + "Comment": "" + }, + { + "Id": "eit", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Eitiep", + "Comment": "" + }, + { + "Id": "eiv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Askopan", + "Comment": "" + }, + { + "Id": "eja", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ejamat", + "Comment": "" + }, + { + "Id": "eka", + "Part2B": "eka", + "Part2T": "eka", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ekajuk", + "Comment": "" + }, + { + "Id": "eke", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ekit", + "Comment": "" + }, + { + "Id": "ekg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ekari", + "Comment": "" + }, + { + "Id": "eki", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Eki", + "Comment": "" + }, + { + "Id": "ekk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Standard Estonian", + "Comment": "" + }, + { + "Id": "ekl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kol (Bangladesh)", + "Comment": "" + }, + { + "Id": "ekm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Elip", + "Comment": "" + }, + { + "Id": "eko", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Koti", + "Comment": "" + }, + { + "Id": "ekp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ekpeye", + "Comment": "" + }, + { + "Id": "ekr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yace", + "Comment": "" + }, + { + "Id": "eky", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Eastern Kayah", + "Comment": "" + }, + { + "Id": "ele", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Elepi", + "Comment": "" + }, + { + "Id": "elh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "El Hugeirat", + "Comment": "" + }, + { + "Id": "eli", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Nding", + "Comment": "" + }, + { + "Id": "elk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Elkei", + "Comment": "" + }, + { + "Id": "ell", + "Part2B": "gre", + "Part2T": "ell", + "Part1": "el", + "Scope": "I", + "LanguageType": "L", + "RefName": "Modern Greek (1453-)", + "Comment": "" + }, + { + "Id": "elm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Eleme", + "Comment": "" + }, + { + "Id": "elo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "El Molo", + "Comment": "" + }, + { + "Id": "elu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Elu", + "Comment": "" + }, + { + "Id": "elx", + "Part2B": "elx", + "Part2T": "elx", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Elamite", + "Comment": "" + }, + { + "Id": "ema", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Emai-Iuleha-Ora", + "Comment": "" + }, + { + "Id": "emb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Embaloh", + "Comment": "" + }, + { + "Id": "eme", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Emerillon", + "Comment": "" + }, + { + "Id": "emg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Eastern Meohang", + "Comment": "" + }, + { + "Id": "emi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mussau-Emira", + "Comment": "" + }, + { + "Id": "emk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Eastern Maninkakan", + "Comment": "" + }, + { + "Id": "emm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Mamulique", + "Comment": "" + }, + { + "Id": "emn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Eman", + "Comment": "" + }, + { + "Id": "emp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Northern Ember\u00E1", + "Comment": "" + }, + { + "Id": "emq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Eastern Minyag", + "Comment": "" + }, + { + "Id": "ems", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pacific Gulf Yupik", + "Comment": "" + }, + { + "Id": "emu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Eastern Muria", + "Comment": "" + }, + { + "Id": "emw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Emplawas", + "Comment": "" + }, + { + "Id": "emx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Erromintxela", + "Comment": "" + }, + { + "Id": "emy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Epigraphic Mayan", + "Comment": "" + }, + { + "Id": "emz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mbessa", + "Comment": "" + }, + { + "Id": "ena", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Apali", + "Comment": "" + }, + { + "Id": "enb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Markweeta", + "Comment": "" + }, + { + "Id": "enc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "En", + "Comment": "" + }, + { + "Id": "end", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ende", + "Comment": "" + }, + { + "Id": "enf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Forest Enets", + "Comment": "" + }, + { + "Id": "eng", + "Part2B": "eng", + "Part2T": "eng", + "Part1": "en", + "Scope": "I", + "LanguageType": "L", + "RefName": "English", + "Comment": "" + }, + { + "Id": "enh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tundra Enets", + "Comment": "" + }, + { + "Id": "enl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Enlhet", + "Comment": "" + }, + { + "Id": "enm", + "Part2B": "enm", + "Part2T": "enm", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Middle English (1100-1500)", + "Comment": "" + }, + { + "Id": "enn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Engenni", + "Comment": "" + }, + { + "Id": "eno", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Enggano", + "Comment": "" + }, + { + "Id": "enq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Enga", + "Comment": "" + }, + { + "Id": "enr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Emumu", + "Comment": "" + }, + { + "Id": "enu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Enu", + "Comment": "" + }, + { + "Id": "env", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Enwan (Edo State)", + "Comment": "" + }, + { + "Id": "enw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Enwan (Akwa Ibom State)", + "Comment": "" + }, + { + "Id": "enx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Enxet", + "Comment": "" + }, + { + "Id": "eot", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Beti (C\u00F4te d\u0027Ivoire)", + "Comment": "" + }, + { + "Id": "epi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Epie", + "Comment": "" + }, + { + "Id": "epo", + "Part2B": "epo", + "Part2T": "epo", + "Part1": "eo", + "Scope": "I", + "LanguageType": "C", + "RefName": "Esperanto", + "Comment": "" + }, + { + "Id": "era", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Eravallan", + "Comment": "" + }, + { + "Id": "erg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sie", + "Comment": "" + }, + { + "Id": "erh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Eruwa", + "Comment": "" + }, + { + "Id": "eri", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ogea", + "Comment": "" + }, + { + "Id": "erk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "South Efate", + "Comment": "" + }, + { + "Id": "ero", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Horpa", + "Comment": "" + }, + { + "Id": "err", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Erre", + "Comment": "" + }, + { + "Id": "ers", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ersu", + "Comment": "" + }, + { + "Id": "ert", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Eritai", + "Comment": "" + }, + { + "Id": "erw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Erokwanas", + "Comment": "" + }, + { + "Id": "ese", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ese Ejja", + "Comment": "" + }, + { + "Id": "esg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Aheri Gondi", + "Comment": "" + }, + { + "Id": "esh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Eshtehardi", + "Comment": "" + }, + { + "Id": "esi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "North Alaskan Inupiatun", + "Comment": "" + }, + { + "Id": "esk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Northwest Alaska Inupiatun", + "Comment": "" + }, + { + "Id": "esl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Egypt Sign Language", + "Comment": "" + }, + { + "Id": "esm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Esuma", + "Comment": "" + }, + { + "Id": "esn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Salvadoran Sign Language", + "Comment": "" + }, + { + "Id": "eso", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Estonian Sign Language", + "Comment": "" + }, + { + "Id": "esq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Esselen", + "Comment": "" + }, + { + "Id": "ess", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Central Siberian Yupik", + "Comment": "" + }, + { + "Id": "est", + "Part2B": "est", + "Part2T": "est", + "Part1": "et", + "Scope": "M", + "LanguageType": "L", + "RefName": "Estonian", + "Comment": "" + }, + { + "Id": "esu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Central Yupik", + "Comment": "" + }, + { + "Id": "esy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Eskayan", + "Comment": "" + }, + { + "Id": "etb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Etebi", + "Comment": "" + }, + { + "Id": "etc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Etchemin", + "Comment": "" + }, + { + "Id": "eth", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ethiopian Sign Language", + "Comment": "" + }, + { + "Id": "etn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Eton (Vanuatu)", + "Comment": "" + }, + { + "Id": "eto", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Eton (Cameroon)", + "Comment": "" + }, + { + "Id": "etr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Edolo", + "Comment": "" + }, + { + "Id": "ets", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yekhee", + "Comment": "" + }, + { + "Id": "ett", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Etruscan", + "Comment": "" + }, + { + "Id": "etu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ejagham", + "Comment": "" + }, + { + "Id": "etx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Eten", + "Comment": "" + }, + { + "Id": "etz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Semimi", + "Comment": "" + }, + { + "Id": "eud", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Eudeve", + "Comment": "" + }, + { + "Id": "eus", + "Part2B": "baq", + "Part2T": "eus", + "Part1": "eu", + "Scope": "I", + "LanguageType": "L", + "RefName": "Basque", + "Comment": "" + }, + { + "Id": "eve", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Even", + "Comment": "" + }, + { + "Id": "evh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Uvbie", + "Comment": "" + }, + { + "Id": "evn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Evenki", + "Comment": "" + }, + { + "Id": "ewe", + "Part2B": "ewe", + "Part2T": "ewe", + "Part1": "ee", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ewe", + "Comment": "" + }, + { + "Id": "ewo", + "Part2B": "ewo", + "Part2T": "ewo", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ewondo", + "Comment": "" + }, + { + "Id": "ext", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Extremaduran", + "Comment": "" + }, + { + "Id": "eya", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Eyak", + "Comment": "" + }, + { + "Id": "eyo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Keiyo", + "Comment": "" + }, + { + "Id": "eza", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ezaa", + "Comment": "" + }, + { + "Id": "eze", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Uzekwe", + "Comment": "" + }, + { + "Id": "faa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Fasu", + "Comment": "" + }, + { + "Id": "fab", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Fa d\u0027Ambu", + "Comment": "" + }, + { + "Id": "fad", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wagi", + "Comment": "" + }, + { + "Id": "faf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Fagani", + "Comment": "" + }, + { + "Id": "fag", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Finongan", + "Comment": "" + }, + { + "Id": "fah", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Baissa Fali", + "Comment": "" + }, + { + "Id": "fai", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Faiwol", + "Comment": "" + }, + { + "Id": "faj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Faita", + "Comment": "" + }, + { + "Id": "fak", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Fang (Cameroon)", + "Comment": "" + }, + { + "Id": "fal", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "South Fali", + "Comment": "" + }, + { + "Id": "fam", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Fam", + "Comment": "" + }, + { + "Id": "fan", + "Part2B": "fan", + "Part2T": "fan", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Fang (Equatorial Guinea)", + "Comment": "" + }, + { + "Id": "fao", + "Part2B": "fao", + "Part2T": "fao", + "Part1": "fo", + "Scope": "I", + "LanguageType": "L", + "RefName": "Faroese", + "Comment": "" + }, + { + "Id": "fap", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Paloor", + "Comment": "" + }, + { + "Id": "far", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Fataleka", + "Comment": "" + }, + { + "Id": "fas", + "Part2B": "per", + "Part2T": "fas", + "Part1": "fa", + "Scope": "M", + "LanguageType": "L", + "RefName": "Persian", + "Comment": "" + }, + { + "Id": "fat", + "Part2B": "fat", + "Part2T": "fat", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Fanti", + "Comment": "" + }, + { + "Id": "fau", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Fayu", + "Comment": "" + }, + { + "Id": "fax", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Fala", + "Comment": "" + }, + { + "Id": "fay", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southwestern Fars", + "Comment": "" + }, + { + "Id": "faz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Northwestern Fars", + "Comment": "" + }, + { + "Id": "fbl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "West Albay Bikol", + "Comment": "" + }, + { + "Id": "fcs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Quebec Sign Language", + "Comment": "" + }, + { + "Id": "fer", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Feroge", + "Comment": "" + }, + { + "Id": "ffi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Foia Foia", + "Comment": "" + }, + { + "Id": "ffm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Maasina Fulfulde", + "Comment": "" + }, + { + "Id": "fgr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Fongoro", + "Comment": "" + }, + { + "Id": "fia", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nobiin", + "Comment": "" + }, + { + "Id": "fie", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Fyer", + "Comment": "" + }, + { + "Id": "fif", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Faifi", + "Comment": "" + }, + { + "Id": "fij", + "Part2B": "fij", + "Part2T": "fij", + "Part1": "fj", + "Scope": "I", + "LanguageType": "L", + "RefName": "Fijian", + "Comment": "" + }, + { + "Id": "fil", + "Part2B": "fil", + "Part2T": "fil", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Filipino", + "Comment": "" + }, + { + "Id": "fin", + "Part2B": "fin", + "Part2T": "fin", + "Part1": "fi", + "Scope": "I", + "LanguageType": "L", + "RefName": "Finnish", + "Comment": "" + }, + { + "Id": "fip", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Fipa", + "Comment": "" + }, + { + "Id": "fir", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Firan", + "Comment": "" + }, + { + "Id": "fit", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tornedalen Finnish", + "Comment": "" + }, + { + "Id": "fiw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Fiwaga", + "Comment": "" + }, + { + "Id": "fkk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kirya-Konz\u0259l", + "Comment": "" + }, + { + "Id": "fkv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kven Finnish", + "Comment": "" + }, + { + "Id": "fla", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kalispel-Pend d\u0027Oreille", + "Comment": "" + }, + { + "Id": "flh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Foau", + "Comment": "" + }, + { + "Id": "fli", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Fali", + "Comment": "" + }, + { + "Id": "fll", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "North Fali", + "Comment": "" + }, + { + "Id": "fln", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Flinders Island", + "Comment": "" + }, + { + "Id": "flr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Fuliiru", + "Comment": "" + }, + { + "Id": "fly", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Flaaitaal", + "Comment": "" + }, + { + "Id": "fmp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Fe\u0027fe\u0027", + "Comment": "" + }, + { + "Id": "fmu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Far Western Muria", + "Comment": "" + }, + { + "Id": "fnb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Fanbak", + "Comment": "" + }, + { + "Id": "fng", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Fanagalo", + "Comment": "" + }, + { + "Id": "fni", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Fania", + "Comment": "" + }, + { + "Id": "fod", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Foodo", + "Comment": "" + }, + { + "Id": "foi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Foi", + "Comment": "" + }, + { + "Id": "fom", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Foma", + "Comment": "" + }, + { + "Id": "fon", + "Part2B": "fon", + "Part2T": "fon", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Fon", + "Comment": "" + }, + { + "Id": "for", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Fore", + "Comment": "" + }, + { + "Id": "fos", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Siraya", + "Comment": "" + }, + { + "Id": "fpe", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Fernando Po Creole English", + "Comment": "" + }, + { + "Id": "fqs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Fas", + "Comment": "" + }, + { + "Id": "fra", + "Part2B": "fre", + "Part2T": "fra", + "Part1": "fr", + "Scope": "I", + "LanguageType": "L", + "RefName": "French", + "Comment": "" + }, + { + "Id": "frc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Cajun French", + "Comment": "" + }, + { + "Id": "frd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Fordata", + "Comment": "" + }, + { + "Id": "frk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Frankish", + "Comment": "" + }, + { + "Id": "frm", + "Part2B": "frm", + "Part2T": "frm", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Middle French (ca. 1400-1600)", + "Comment": "" + }, + { + "Id": "fro", + "Part2B": "fro", + "Part2T": "fro", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Old French (842-ca. 1400)", + "Comment": "" + }, + { + "Id": "frp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Arpitan", + "Comment": "" + }, + { + "Id": "frq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Forak", + "Comment": "" + }, + { + "Id": "frr", + "Part2B": "frr", + "Part2T": "frr", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Northern Frisian", + "Comment": "" + }, + { + "Id": "frs", + "Part2B": "frs", + "Part2T": "frs", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Eastern Frisian", + "Comment": "" + }, + { + "Id": "frt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Fortsenal", + "Comment": "" + }, + { + "Id": "fry", + "Part2B": "fry", + "Part2T": "fry", + "Part1": "fy", + "Scope": "I", + "LanguageType": "L", + "RefName": "Western Frisian", + "Comment": "" + }, + { + "Id": "fse", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Finnish Sign Language", + "Comment": "" + }, + { + "Id": "fsl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "French Sign Language", + "Comment": "" + }, + { + "Id": "fss", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Finland-Swedish Sign Language", + "Comment": "" + }, + { + "Id": "fub", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Adamawa Fulfulde", + "Comment": "" + }, + { + "Id": "fuc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pulaar", + "Comment": "" + }, + { + "Id": "fud", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "East Futuna", + "Comment": "" + }, + { + "Id": "fue", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Borgu Fulfulde", + "Comment": "" + }, + { + "Id": "fuf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pular", + "Comment": "" + }, + { + "Id": "fuh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Western Niger Fulfulde", + "Comment": "" + }, + { + "Id": "fui", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bagirmi Fulfulde", + "Comment": "" + }, + { + "Id": "fuj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ko", + "Comment": "" + }, + { + "Id": "ful", + "Part2B": "ful", + "Part2T": "ful", + "Part1": "ff", + "Scope": "M", + "LanguageType": "L", + "RefName": "Fulah", + "Comment": "" + }, + { + "Id": "fum", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Fum", + "Comment": "" + }, + { + "Id": "fun", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Fulni\u00F4", + "Comment": "" + }, + { + "Id": "fuq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Central-Eastern Niger Fulfulde", + "Comment": "" + }, + { + "Id": "fur", + "Part2B": "fur", + "Part2T": "fur", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Friulian", + "Comment": "" + }, + { + "Id": "fut", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Futuna-Aniwa", + "Comment": "" + }, + { + "Id": "fuu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Furu", + "Comment": "" + }, + { + "Id": "fuv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nigerian Fulfulde", + "Comment": "" + }, + { + "Id": "fuy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Fuyug", + "Comment": "" + }, + { + "Id": "fvr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Fur", + "Comment": "" + }, + { + "Id": "fwa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Fw\u00E2i", + "Comment": "" + }, + { + "Id": "fwe", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Fwe", + "Comment": "" + }, + { + "Id": "gaa", + "Part2B": "gaa", + "Part2T": "gaa", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ga", + "Comment": "" + }, + { + "Id": "gab", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gabri", + "Comment": "" + }, + { + "Id": "gac", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mixed Great Andamanese", + "Comment": "" + }, + { + "Id": "gad", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gaddang", + "Comment": "" + }, + { + "Id": "gae", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Guarequena", + "Comment": "" + }, + { + "Id": "gaf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gende", + "Comment": "" + }, + { + "Id": "gag", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gagauz", + "Comment": "" + }, + { + "Id": "gah", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Alekano", + "Comment": "" + }, + { + "Id": "gai", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Borei", + "Comment": "" + }, + { + "Id": "gaj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gadsup", + "Comment": "" + }, + { + "Id": "gak", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gamkonora", + "Comment": "" + }, + { + "Id": "gal", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Galolen", + "Comment": "" + }, + { + "Id": "gam", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kandawo", + "Comment": "" + }, + { + "Id": "gan", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gan Chinese", + "Comment": "" + }, + { + "Id": "gao", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gants", + "Comment": "" + }, + { + "Id": "gap", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gal", + "Comment": "" + }, + { + "Id": "gaq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gata\u0027", + "Comment": "" + }, + { + "Id": "gar", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Galeya", + "Comment": "" + }, + { + "Id": "gas", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Adiwasi Garasia", + "Comment": "" + }, + { + "Id": "gat", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kenati", + "Comment": "" + }, + { + "Id": "gau", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mudhili Gadaba", + "Comment": "" + }, + { + "Id": "gaw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nobonob", + "Comment": "" + }, + { + "Id": "gax", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Borana-Arsi-Guji Oromo", + "Comment": "" + }, + { + "Id": "gay", + "Part2B": "gay", + "Part2T": "gay", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gayo", + "Comment": "" + }, + { + "Id": "gaz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "West Central Oromo", + "Comment": "" + }, + { + "Id": "gba", + "Part2B": "gba", + "Part2T": "gba", + "Part1": "", + "Scope": "M", + "LanguageType": "L", + "RefName": "Gbaya (Central African Republic)", + "Comment": "" + }, + { + "Id": "gbb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kaytetye", + "Comment": "" + }, + { + "Id": "gbd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Karajarri", + "Comment": "" + }, + { + "Id": "gbe", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Niksek", + "Comment": "" + }, + { + "Id": "gbf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gaikundi", + "Comment": "" + }, + { + "Id": "gbg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gbanziri", + "Comment": "" + }, + { + "Id": "gbh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Defi Gbe", + "Comment": "" + }, + { + "Id": "gbi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Galela", + "Comment": "" + }, + { + "Id": "gbj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bodo Gadaba", + "Comment": "" + }, + { + "Id": "gbk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gaddi", + "Comment": "" + }, + { + "Id": "gbl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gamit", + "Comment": "" + }, + { + "Id": "gbm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Garhwali", + "Comment": "" + }, + { + "Id": "gbn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mo\u0027da", + "Comment": "" + }, + { + "Id": "gbo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Northern Grebo", + "Comment": "" + }, + { + "Id": "gbp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gbaya-Bossangoa", + "Comment": "" + }, + { + "Id": "gbq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gbaya-Bozoum", + "Comment": "" + }, + { + "Id": "gbr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gbagyi", + "Comment": "" + }, + { + "Id": "gbs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gbesi Gbe", + "Comment": "" + }, + { + "Id": "gbu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gagadu", + "Comment": "" + }, + { + "Id": "gbv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gbanu", + "Comment": "" + }, + { + "Id": "gbw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gabi-Gabi", + "Comment": "" + }, + { + "Id": "gbx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Eastern Xwla Gbe", + "Comment": "" + }, + { + "Id": "gby", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gbari", + "Comment": "" + }, + { + "Id": "gbz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Zoroastrian Dari", + "Comment": "" + }, + { + "Id": "gcc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mali", + "Comment": "" + }, + { + "Id": "gcd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Ganggalida", + "Comment": "" + }, + { + "Id": "gce", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Galice", + "Comment": "" + }, + { + "Id": "gcf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Guadeloupean Creole French", + "Comment": "" + }, + { + "Id": "gcl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Grenadian Creole English", + "Comment": "" + }, + { + "Id": "gcn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gaina", + "Comment": "" + }, + { + "Id": "gcr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Guianese Creole French", + "Comment": "" + }, + { + "Id": "gct", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Colonia Tovar German", + "Comment": "" + }, + { + "Id": "gda", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gade Lohar", + "Comment": "" + }, + { + "Id": "gdb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pottangi Ollar Gadaba", + "Comment": "" + }, + { + "Id": "gdc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Gugu Badhun", + "Comment": "" + }, + { + "Id": "gdd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gedaged", + "Comment": "" + }, + { + "Id": "gde", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gude", + "Comment": "" + }, + { + "Id": "gdf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Guduf-Gava", + "Comment": "" + }, + { + "Id": "gdg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ga\u0027dang", + "Comment": "" + }, + { + "Id": "gdh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gadjerawang", + "Comment": "" + }, + { + "Id": "gdi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gundi", + "Comment": "" + }, + { + "Id": "gdj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gurdjar", + "Comment": "" + }, + { + "Id": "gdk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gadang", + "Comment": "" + }, + { + "Id": "gdl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dirasha", + "Comment": "" + }, + { + "Id": "gdm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Laal", + "Comment": "" + }, + { + "Id": "gdn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Umanakaina", + "Comment": "" + }, + { + "Id": "gdo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ghodoberi", + "Comment": "" + }, + { + "Id": "gdq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mehri", + "Comment": "" + }, + { + "Id": "gdr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wipi", + "Comment": "" + }, + { + "Id": "gds", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ghandruk Sign Language", + "Comment": "" + }, + { + "Id": "gdt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Kungardutyi", + "Comment": "" + }, + { + "Id": "gdu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gudu", + "Comment": "" + }, + { + "Id": "gdx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Godwari", + "Comment": "" + }, + { + "Id": "gea", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Geruma", + "Comment": "" + }, + { + "Id": "geb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kire", + "Comment": "" + }, + { + "Id": "gec", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gboloo Grebo", + "Comment": "" + }, + { + "Id": "ged", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gade", + "Comment": "" + }, + { + "Id": "gef", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gerai", + "Comment": "" + }, + { + "Id": "geg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gengle", + "Comment": "" + }, + { + "Id": "geh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hutterite German", + "Comment": "" + }, + { + "Id": "gei", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gebe", + "Comment": "" + }, + { + "Id": "gej", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gen", + "Comment": "" + }, + { + "Id": "gek", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ywom", + "Comment": "" + }, + { + "Id": "gel", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "ut-Ma\u0027in", + "Comment": "" + }, + { + "Id": "geq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Geme", + "Comment": "" + }, + { + "Id": "ges", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Geser-Gorom", + "Comment": "" + }, + { + "Id": "gev", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Eviya", + "Comment": "" + }, + { + "Id": "gew", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gera", + "Comment": "" + }, + { + "Id": "gex", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Garre", + "Comment": "" + }, + { + "Id": "gey", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Enya", + "Comment": "" + }, + { + "Id": "gez", + "Part2B": "gez", + "Part2T": "gez", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Geez", + "Comment": "" + }, + { + "Id": "gfk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Patpatar", + "Comment": "" + }, + { + "Id": "gft", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Gafat", + "Comment": "" + }, + { + "Id": "gga", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gao", + "Comment": "" + }, + { + "Id": "ggb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gbii", + "Comment": "" + }, + { + "Id": "ggd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Gugadj", + "Comment": "" + }, + { + "Id": "gge", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gurr-goni", + "Comment": "" + }, + { + "Id": "ggg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gurgula", + "Comment": "" + }, + { + "Id": "ggk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Kungarakany", + "Comment": "" + }, + { + "Id": "ggl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ganglau", + "Comment": "" + }, + { + "Id": "ggt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gitua", + "Comment": "" + }, + { + "Id": "ggu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gagu", + "Comment": "" + }, + { + "Id": "ggw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gogodala", + "Comment": "" + }, + { + "Id": "gha", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ghadam\u00E8s", + "Comment": "" + }, + { + "Id": "ghc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Hiberno-Scottish Gaelic", + "Comment": "" + }, + { + "Id": "ghe", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southern Ghale", + "Comment": "" + }, + { + "Id": "ghh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Northern Ghale", + "Comment": "" + }, + { + "Id": "ghk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Geko Karen", + "Comment": "" + }, + { + "Id": "ghl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ghulfan", + "Comment": "" + }, + { + "Id": "ghn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ghanongga", + "Comment": "" + }, + { + "Id": "gho", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ghomara", + "Comment": "" + }, + { + "Id": "ghr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ghera", + "Comment": "" + }, + { + "Id": "ghs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Guhu-Samane", + "Comment": "" + }, + { + "Id": "ght", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kuke", + "Comment": "" + }, + { + "Id": "gia", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kija", + "Comment": "" + }, + { + "Id": "gib", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gibanawa", + "Comment": "" + }, + { + "Id": "gic", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gail", + "Comment": "" + }, + { + "Id": "gid", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gidar", + "Comment": "" + }, + { + "Id": "gie", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ga\u0253ogbo", + "Comment": "" + }, + { + "Id": "gig", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Goaria", + "Comment": "" + }, + { + "Id": "gih", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Githabul", + "Comment": "" + }, + { + "Id": "gii", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Girirra", + "Comment": "" + }, + { + "Id": "gil", + "Part2B": "gil", + "Part2T": "gil", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gilbertese", + "Comment": "" + }, + { + "Id": "gim", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gimi (Eastern Highlands)", + "Comment": "" + }, + { + "Id": "gin", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hinukh", + "Comment": "" + }, + { + "Id": "gip", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gimi (West New Britain)", + "Comment": "" + }, + { + "Id": "giq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Green Gelao", + "Comment": "" + }, + { + "Id": "gir", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Red Gelao", + "Comment": "" + }, + { + "Id": "gis", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "North Giziga", + "Comment": "" + }, + { + "Id": "git", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gitxsan", + "Comment": "" + }, + { + "Id": "giu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mulao", + "Comment": "" + }, + { + "Id": "giw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "White Gelao", + "Comment": "" + }, + { + "Id": "gix", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gilima", + "Comment": "" + }, + { + "Id": "giy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Giyug", + "Comment": "" + }, + { + "Id": "giz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "South Giziga", + "Comment": "" + }, + { + "Id": "gjk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kachi Koli", + "Comment": "" + }, + { + "Id": "gjm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Gunditjmara", + "Comment": "" + }, + { + "Id": "gjn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gonja", + "Comment": "" + }, + { + "Id": "gjr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gurindji Kriol", + "Comment": "" + }, + { + "Id": "gju", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gujari", + "Comment": "" + }, + { + "Id": "gka", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Guya", + "Comment": "" + }, + { + "Id": "gkd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mag\u0268 (Madang Province)", + "Comment": "" + }, + { + "Id": "gke", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ndai", + "Comment": "" + }, + { + "Id": "gkn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gokana", + "Comment": "" + }, + { + "Id": "gko", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Kok-Nar", + "Comment": "" + }, + { + "Id": "gkp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Guinea Kpelle", + "Comment": "" + }, + { + "Id": "gku", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "\u01C2Ungkue", + "Comment": "" + }, + { + "Id": "gla", + "Part2B": "gla", + "Part2T": "gla", + "Part1": "gd", + "Scope": "I", + "LanguageType": "L", + "RefName": "Scottish Gaelic", + "Comment": "" + }, + { + "Id": "glb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Belning", + "Comment": "" + }, + { + "Id": "glc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bon Gula", + "Comment": "" + }, + { + "Id": "gld", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nanai", + "Comment": "" + }, + { + "Id": "gle", + "Part2B": "gle", + "Part2T": "gle", + "Part1": "ga", + "Scope": "I", + "LanguageType": "L", + "RefName": "Irish", + "Comment": "" + }, + { + "Id": "glg", + "Part2B": "glg", + "Part2T": "glg", + "Part1": "gl", + "Scope": "I", + "LanguageType": "L", + "RefName": "Galician", + "Comment": "" + }, + { + "Id": "glh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Northwest Pashai", + "Comment": "" + }, + { + "Id": "glj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gula Iro", + "Comment": "" + }, + { + "Id": "glk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gilaki", + "Comment": "" + }, + { + "Id": "gll", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Garlali", + "Comment": "" + }, + { + "Id": "glo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Galambu", + "Comment": "" + }, + { + "Id": "glr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Glaro-Twabo", + "Comment": "" + }, + { + "Id": "glu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gula (Chad)", + "Comment": "" + }, + { + "Id": "glv", + "Part2B": "glv", + "Part2T": "glv", + "Part1": "gv", + "Scope": "I", + "LanguageType": "L", + "RefName": "Manx", + "Comment": "" + }, + { + "Id": "glw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Glavda", + "Comment": "" + }, + { + "Id": "gly", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Gule", + "Comment": "" + }, + { + "Id": "gma", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Gambera", + "Comment": "" + }, + { + "Id": "gmb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gula\u0027alaa", + "Comment": "" + }, + { + "Id": "gmd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "M\u00E1ghd\u00EC", + "Comment": "" + }, + { + "Id": "gmg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mag\u0268yi", + "Comment": "" + }, + { + "Id": "gmh", + "Part2B": "gmh", + "Part2T": "gmh", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Middle High German (ca. 1050-1500)", + "Comment": "" + }, + { + "Id": "gml", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Middle Low German", + "Comment": "" + }, + { + "Id": "gmm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gbaya-Mbodomo", + "Comment": "" + }, + { + "Id": "gmn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gimnime", + "Comment": "" + }, + { + "Id": "gmr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mirning", + "Comment": "" + }, + { + "Id": "gmu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gumalu", + "Comment": "" + }, + { + "Id": "gmv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gamo", + "Comment": "" + }, + { + "Id": "gmx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Magoma", + "Comment": "" + }, + { + "Id": "gmy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Mycenaean Greek", + "Comment": "" + }, + { + "Id": "gmz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mgbolizhia", + "Comment": "" + }, + { + "Id": "gna", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kaansa", + "Comment": "" + }, + { + "Id": "gnb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gangte", + "Comment": "" + }, + { + "Id": "gnc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Guanche", + "Comment": "" + }, + { + "Id": "gnd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Zulgo-Gemzek", + "Comment": "" + }, + { + "Id": "gne", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ganang", + "Comment": "" + }, + { + "Id": "gng", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ngangam", + "Comment": "" + }, + { + "Id": "gnh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lere", + "Comment": "" + }, + { + "Id": "gni", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gooniyandi", + "Comment": "" + }, + { + "Id": "gnj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ngen", + "Comment": "" + }, + { + "Id": "gnk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "\u01C1Gana", + "Comment": "" + }, + { + "Id": "gnl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Gangulu", + "Comment": "" + }, + { + "Id": "gnm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ginuman", + "Comment": "" + }, + { + "Id": "gnn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gumatj", + "Comment": "" + }, + { + "Id": "gno", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Northern Gondi", + "Comment": "" + }, + { + "Id": "gnq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gana", + "Comment": "" + }, + { + "Id": "gnr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Gureng Gureng", + "Comment": "" + }, + { + "Id": "gnt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Guntai", + "Comment": "" + }, + { + "Id": "gnu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gnau", + "Comment": "" + }, + { + "Id": "gnw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Western Bolivian Guaran\u00ED", + "Comment": "" + }, + { + "Id": "gnz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ganzi", + "Comment": "" + }, + { + "Id": "goa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Guro", + "Comment": "" + }, + { + "Id": "gob", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Playero", + "Comment": "" + }, + { + "Id": "goc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gorakor", + "Comment": "" + }, + { + "Id": "god", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Godi\u00E9", + "Comment": "" + }, + { + "Id": "goe", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gongduk", + "Comment": "" + }, + { + "Id": "gof", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gofa", + "Comment": "" + }, + { + "Id": "gog", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gogo", + "Comment": "" + }, + { + "Id": "goh", + "Part2B": "goh", + "Part2T": "goh", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Old High German (ca. 750-1050)", + "Comment": "" + }, + { + "Id": "goi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gobasi", + "Comment": "" + }, + { + "Id": "goj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gowlan", + "Comment": "" + }, + { + "Id": "gok", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gowli", + "Comment": "" + }, + { + "Id": "gol", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gola", + "Comment": "" + }, + { + "Id": "gom", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Goan Konkani", + "Comment": "" + }, + { + "Id": "gon", + "Part2B": "gon", + "Part2T": "gon", + "Part1": "", + "Scope": "M", + "LanguageType": "L", + "RefName": "Gondi", + "Comment": "" + }, + { + "Id": "goo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gone Dau", + "Comment": "" + }, + { + "Id": "gop", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yeretuar", + "Comment": "" + }, + { + "Id": "goq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gorap", + "Comment": "" + }, + { + "Id": "gor", + "Part2B": "gor", + "Part2T": "gor", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gorontalo", + "Comment": "" + }, + { + "Id": "gos", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gronings", + "Comment": "" + }, + { + "Id": "got", + "Part2B": "got", + "Part2T": "got", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Gothic", + "Comment": "" + }, + { + "Id": "gou", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gavar", + "Comment": "" + }, + { + "Id": "gov", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Goo", + "Comment": "" + }, + { + "Id": "gow", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gorowa", + "Comment": "" + }, + { + "Id": "gox", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gobu", + "Comment": "" + }, + { + "Id": "goy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Goundo", + "Comment": "" + }, + { + "Id": "goz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gozarkhani", + "Comment": "" + }, + { + "Id": "gpa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gupa-Abawa", + "Comment": "" + }, + { + "Id": "gpe", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ghanaian Pidgin English", + "Comment": "" + }, + { + "Id": "gpn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Taiap", + "Comment": "" + }, + { + "Id": "gqa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ga\u0027anda", + "Comment": "" + }, + { + "Id": "gqi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Guiqiong", + "Comment": "" + }, + { + "Id": "gqn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Guana (Brazil)", + "Comment": "" + }, + { + "Id": "gqr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gor", + "Comment": "" + }, + { + "Id": "gqu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Qau", + "Comment": "" + }, + { + "Id": "gra", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Rajput Garasia", + "Comment": "" + }, + { + "Id": "grb", + "Part2B": "grb", + "Part2T": "grb", + "Part1": "", + "Scope": "M", + "LanguageType": "L", + "RefName": "Grebo", + "Comment": "" + }, + { + "Id": "grc", + "Part2B": "grc", + "Part2T": "grc", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Ancient Greek (to 1453)", + "Comment": "" + }, + { + "Id": "grd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Guruntum-Mbaaru", + "Comment": "" + }, + { + "Id": "grg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Madi", + "Comment": "" + }, + { + "Id": "grh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gbiri-Niragu", + "Comment": "" + }, + { + "Id": "gri", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ghari", + "Comment": "" + }, + { + "Id": "grj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southern Grebo", + "Comment": "" + }, + { + "Id": "grm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kota Marudu Talantang", + "Comment": "" + }, + { + "Id": "grn", + "Part2B": "grn", + "Part2T": "grn", + "Part1": "gn", + "Scope": "M", + "LanguageType": "L", + "RefName": "Guarani", + "Comment": "" + }, + { + "Id": "gro", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Groma", + "Comment": "" + }, + { + "Id": "grq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gorovu", + "Comment": "" + }, + { + "Id": "grr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Taznatit", + "Comment": "" + }, + { + "Id": "grs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gresi", + "Comment": "" + }, + { + "Id": "grt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Garo", + "Comment": "" + }, + { + "Id": "gru", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kistane", + "Comment": "" + }, + { + "Id": "grv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Central Grebo", + "Comment": "" + }, + { + "Id": "grw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gweda", + "Comment": "" + }, + { + "Id": "grx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Guriaso", + "Comment": "" + }, + { + "Id": "gry", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Barclayville Grebo", + "Comment": "" + }, + { + "Id": "grz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Guramalum", + "Comment": "" + }, + { + "Id": "gse", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ghanaian Sign Language", + "Comment": "" + }, + { + "Id": "gsg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "German Sign Language", + "Comment": "" + }, + { + "Id": "gsl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gusilay", + "Comment": "" + }, + { + "Id": "gsm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Guatemalan Sign Language", + "Comment": "" + }, + { + "Id": "gsn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nema", + "Comment": "" + }, + { + "Id": "gso", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southwest Gbaya", + "Comment": "" + }, + { + "Id": "gsp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wasembo", + "Comment": "" + }, + { + "Id": "gss", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Greek Sign Language", + "Comment": "" + }, + { + "Id": "gsw", + "Part2B": "gsw", + "Part2T": "gsw", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Swiss German", + "Comment": "" + }, + { + "Id": "gta", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Guat\u00F3", + "Comment": "" + }, + { + "Id": "gtu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Aghu-Tharnggala", + "Comment": "" + }, + { + "Id": "gua", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Shiki", + "Comment": "" + }, + { + "Id": "gub", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Guajaj\u00E1ra", + "Comment": "" + }, + { + "Id": "guc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wayuu", + "Comment": "" + }, + { + "Id": "gud", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yocobou\u00E9 Dida", + "Comment": "" + }, + { + "Id": "gue", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gurindji", + "Comment": "" + }, + { + "Id": "guf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gupapuyngu", + "Comment": "" + }, + { + "Id": "gug", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Paraguayan Guaran\u00ED", + "Comment": "" + }, + { + "Id": "guh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Guahibo", + "Comment": "" + }, + { + "Id": "gui", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Eastern Bolivian Guaran\u00ED", + "Comment": "" + }, + { + "Id": "guj", + "Part2B": "guj", + "Part2T": "guj", + "Part1": "gu", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gujarati", + "Comment": "" + }, + { + "Id": "guk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gumuz", + "Comment": "" + }, + { + "Id": "gul", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sea Island Creole English", + "Comment": "" + }, + { + "Id": "gum", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Guambiano", + "Comment": "" + }, + { + "Id": "gun", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mby\u00E1 Guaran\u00ED", + "Comment": "" + }, + { + "Id": "guo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Guayabero", + "Comment": "" + }, + { + "Id": "gup", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gunwinggu", + "Comment": "" + }, + { + "Id": "guq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ach\u00E9", + "Comment": "" + }, + { + "Id": "gur", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Farefare", + "Comment": "" + }, + { + "Id": "gus", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Guinean Sign Language", + "Comment": "" + }, + { + "Id": "gut", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mal\u00E9ku Ja\u00EDka", + "Comment": "" + }, + { + "Id": "guu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yanomam\u00F6", + "Comment": "" + }, + { + "Id": "guw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gun", + "Comment": "" + }, + { + "Id": "gux", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gourmanch\u00E9ma", + "Comment": "" + }, + { + "Id": "guz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gusii", + "Comment": "" + }, + { + "Id": "gva", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Guana (Paraguay)", + "Comment": "" + }, + { + "Id": "gvc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Guanano", + "Comment": "" + }, + { + "Id": "gve", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Duwet", + "Comment": "" + }, + { + "Id": "gvf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Golin", + "Comment": "" + }, + { + "Id": "gvj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Guaj\u00E1", + "Comment": "" + }, + { + "Id": "gvl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gulay", + "Comment": "" + }, + { + "Id": "gvm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gurmana", + "Comment": "" + }, + { + "Id": "gvn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kuku-Yalanji", + "Comment": "" + }, + { + "Id": "gvo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gavi\u00E3o Do Jiparan\u00E1", + "Comment": "" + }, + { + "Id": "gvp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Par\u00E1 Gavi\u00E3o", + "Comment": "" + }, + { + "Id": "gvr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gurung", + "Comment": "" + }, + { + "Id": "gvs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gumawana", + "Comment": "" + }, + { + "Id": "gvy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Guyani", + "Comment": "" + }, + { + "Id": "gwa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mbato", + "Comment": "" + }, + { + "Id": "gwb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gwa", + "Comment": "" + }, + { + "Id": "gwc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gawri", + "Comment": "" + }, + { + "Id": "gwd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gawwada", + "Comment": "" + }, + { + "Id": "gwe", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gweno", + "Comment": "" + }, + { + "Id": "gwf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gowro", + "Comment": "" + }, + { + "Id": "gwg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Moo", + "Comment": "" + }, + { + "Id": "gwi", + "Part2B": "gwi", + "Part2T": "gwi", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gwich\u02BCin", + "Comment": "" + }, + { + "Id": "gwj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "\u01C0Gwi", + "Comment": "" + }, + { + "Id": "gwm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Awngthim", + "Comment": "" + }, + { + "Id": "gwn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gwandara", + "Comment": "" + }, + { + "Id": "gwr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gwere", + "Comment": "" + }, + { + "Id": "gwt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gawar-Bati", + "Comment": "" + }, + { + "Id": "gwu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Guwamu", + "Comment": "" + }, + { + "Id": "gww", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kwini", + "Comment": "" + }, + { + "Id": "gwx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gua", + "Comment": "" + }, + { + "Id": "gxx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "W\u00E8 Southern", + "Comment": "" + }, + { + "Id": "gya", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Northwest Gbaya", + "Comment": "" + }, + { + "Id": "gyb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Garus", + "Comment": "" + }, + { + "Id": "gyd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kayardild", + "Comment": "" + }, + { + "Id": "gye", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gyem", + "Comment": "" + }, + { + "Id": "gyf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Gungabula", + "Comment": "" + }, + { + "Id": "gyg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gbayi", + "Comment": "" + }, + { + "Id": "gyi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gyele", + "Comment": "" + }, + { + "Id": "gyl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gayil", + "Comment": "" + }, + { + "Id": "gym", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ng\u00E4bere", + "Comment": "" + }, + { + "Id": "gyn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Guyanese Creole English", + "Comment": "" + }, + { + "Id": "gyo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gyalsumdo", + "Comment": "" + }, + { + "Id": "gyr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Guarayu", + "Comment": "" + }, + { + "Id": "gyy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Gunya", + "Comment": "" + }, + { + "Id": "gyz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Geji", + "Comment": "" + }, + { + "Id": "gza", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ganza", + "Comment": "" + }, + { + "Id": "gzi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gazi", + "Comment": "" + }, + { + "Id": "gzn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gane", + "Comment": "" + }, + { + "Id": "haa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Han", + "Comment": "" + }, + { + "Id": "hab", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hanoi Sign Language", + "Comment": "" + }, + { + "Id": "hac", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gurani", + "Comment": "" + }, + { + "Id": "had", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hatam", + "Comment": "" + }, + { + "Id": "hae", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Eastern Oromo", + "Comment": "" + }, + { + "Id": "haf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Haiphong Sign Language", + "Comment": "" + }, + { + "Id": "hag", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hanga", + "Comment": "" + }, + { + "Id": "hah", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hahon", + "Comment": "" + }, + { + "Id": "hai", + "Part2B": "hai", + "Part2T": "hai", + "Part1": "", + "Scope": "M", + "LanguageType": "L", + "RefName": "Haida", + "Comment": "" + }, + { + "Id": "haj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hajong", + "Comment": "" + }, + { + "Id": "hak", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hakka Chinese", + "Comment": "" + }, + { + "Id": "hal", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Halang", + "Comment": "" + }, + { + "Id": "ham", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hewa", + "Comment": "" + }, + { + "Id": "han", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hangaza", + "Comment": "" + }, + { + "Id": "hao", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hak\u00F6", + "Comment": "" + }, + { + "Id": "hap", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hupla", + "Comment": "" + }, + { + "Id": "haq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ha", + "Comment": "" + }, + { + "Id": "har", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Harari", + "Comment": "" + }, + { + "Id": "has", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Haisla", + "Comment": "" + }, + { + "Id": "hat", + "Part2B": "hat", + "Part2T": "hat", + "Part1": "ht", + "Scope": "I", + "LanguageType": "L", + "RefName": "Haitian", + "Comment": "" + }, + { + "Id": "hau", + "Part2B": "hau", + "Part2T": "hau", + "Part1": "ha", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hausa", + "Comment": "" + }, + { + "Id": "hav", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Havu", + "Comment": "" + }, + { + "Id": "haw", + "Part2B": "haw", + "Part2T": "haw", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hawaiian", + "Comment": "" + }, + { + "Id": "hax", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southern Haida", + "Comment": "" + }, + { + "Id": "hay", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Haya", + "Comment": "" + }, + { + "Id": "haz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hazaragi", + "Comment": "" + }, + { + "Id": "hba", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hamba", + "Comment": "" + }, + { + "Id": "hbb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Huba", + "Comment": "" + }, + { + "Id": "hbn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Heiban", + "Comment": "" + }, + { + "Id": "hbo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Ancient Hebrew", + "Comment": "" + }, + { + "Id": "hbs", + "Part2B": "", + "Part2T": "", + "Part1": "sh", + "Scope": "M", + "LanguageType": "L", + "RefName": "Serbo-Croatian", + "Comment": "Code element for 639-1 has been deprecated" + }, + { + "Id": "hbu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Habu", + "Comment": "" + }, + { + "Id": "hca", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Andaman Creole Hindi", + "Comment": "" + }, + { + "Id": "hch", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Huichol", + "Comment": "" + }, + { + "Id": "hdn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Northern Haida", + "Comment": "" + }, + { + "Id": "hds", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Honduras Sign Language", + "Comment": "" + }, + { + "Id": "hdy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hadiyya", + "Comment": "" + }, + { + "Id": "hea", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Northern Qiandong Miao", + "Comment": "" + }, + { + "Id": "heb", + "Part2B": "heb", + "Part2T": "heb", + "Part1": "he", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hebrew", + "Comment": "" + }, + { + "Id": "hed", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Herd\u00E9", + "Comment": "" + }, + { + "Id": "heg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Helong", + "Comment": "" + }, + { + "Id": "heh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hehe", + "Comment": "" + }, + { + "Id": "hei", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Heiltsuk", + "Comment": "" + }, + { + "Id": "hem", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hemba", + "Comment": "" + }, + { + "Id": "her", + "Part2B": "her", + "Part2T": "her", + "Part1": "hz", + "Scope": "I", + "LanguageType": "L", + "RefName": "Herero", + "Comment": "" + }, + { + "Id": "hgm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hai\u01C1om", + "Comment": "" + }, + { + "Id": "hgw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Haigwai", + "Comment": "" + }, + { + "Id": "hhi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hoia Hoia", + "Comment": "" + }, + { + "Id": "hhr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kerak", + "Comment": "" + }, + { + "Id": "hhy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hoyahoya", + "Comment": "" + }, + { + "Id": "hia", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lamang", + "Comment": "" + }, + { + "Id": "hib", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Hibito", + "Comment": "" + }, + { + "Id": "hid", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hidatsa", + "Comment": "" + }, + { + "Id": "hif", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Fiji Hindi", + "Comment": "" + }, + { + "Id": "hig", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kamwe", + "Comment": "" + }, + { + "Id": "hih", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pamosu", + "Comment": "" + }, + { + "Id": "hii", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hinduri", + "Comment": "" + }, + { + "Id": "hij", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hijuk", + "Comment": "" + }, + { + "Id": "hik", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Seit-Kaitetu", + "Comment": "" + }, + { + "Id": "hil", + "Part2B": "hil", + "Part2T": "hil", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hiligaynon", + "Comment": "" + }, + { + "Id": "hin", + "Part2B": "hin", + "Part2T": "hin", + "Part1": "hi", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hindi", + "Comment": "" + }, + { + "Id": "hio", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tsoa", + "Comment": "" + }, + { + "Id": "hir", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Himarim\u00E3", + "Comment": "" + }, + { + "Id": "hit", + "Part2B": "hit", + "Part2T": "hit", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Hittite", + "Comment": "" + }, + { + "Id": "hiw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hiw", + "Comment": "" + }, + { + "Id": "hix", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hixkary\u00E1na", + "Comment": "" + }, + { + "Id": "hji", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Haji", + "Comment": "" + }, + { + "Id": "hka", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kahe", + "Comment": "" + }, + { + "Id": "hke", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hunde", + "Comment": "" + }, + { + "Id": "hkh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Khah", + "Comment": "" + }, + { + "Id": "hkk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hunjara-Kaina Ke", + "Comment": "" + }, + { + "Id": "hkn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mel-Khaonh", + "Comment": "" + }, + { + "Id": "hks", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hong Kong Sign Language", + "Comment": "" + }, + { + "Id": "hla", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Halia", + "Comment": "" + }, + { + "Id": "hlb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Halbi", + "Comment": "" + }, + { + "Id": "hld", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Halang Doan", + "Comment": "" + }, + { + "Id": "hle", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hlersu", + "Comment": "" + }, + { + "Id": "hlt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Matu Chin", + "Comment": "" + }, + { + "Id": "hlu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Hieroglyphic Luwian", + "Comment": "" + }, + { + "Id": "hma", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southern Mashan Hmong", + "Comment": "" + }, + { + "Id": "hmb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Humburi Senni Songhay", + "Comment": "" + }, + { + "Id": "hmc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Central Huishui Hmong", + "Comment": "" + }, + { + "Id": "hmd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Large Flowery Miao", + "Comment": "" + }, + { + "Id": "hme", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Eastern Huishui Hmong", + "Comment": "" + }, + { + "Id": "hmf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hmong Don", + "Comment": "" + }, + { + "Id": "hmg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southwestern Guiyang Hmong", + "Comment": "" + }, + { + "Id": "hmh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southwestern Huishui Hmong", + "Comment": "" + }, + { + "Id": "hmi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Northern Huishui Hmong", + "Comment": "" + }, + { + "Id": "hmj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ge", + "Comment": "" + }, + { + "Id": "hmk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Maek", + "Comment": "" + }, + { + "Id": "hml", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Luopohe Hmong", + "Comment": "" + }, + { + "Id": "hmm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Central Mashan Hmong", + "Comment": "" + }, + { + "Id": "hmn", + "Part2B": "hmn", + "Part2T": "hmn", + "Part1": "", + "Scope": "M", + "LanguageType": "L", + "RefName": "Hmong", + "Comment": "" + }, + { + "Id": "hmo", + "Part2B": "hmo", + "Part2T": "hmo", + "Part1": "ho", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hiri Motu", + "Comment": "" + }, + { + "Id": "hmp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Northern Mashan Hmong", + "Comment": "" + }, + { + "Id": "hmq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Eastern Qiandong Miao", + "Comment": "" + }, + { + "Id": "hmr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hmar", + "Comment": "" + }, + { + "Id": "hms", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southern Qiandong Miao", + "Comment": "" + }, + { + "Id": "hmt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hamtai", + "Comment": "" + }, + { + "Id": "hmu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hamap", + "Comment": "" + }, + { + "Id": "hmv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hmong D\u00F4", + "Comment": "" + }, + { + "Id": "hmw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Western Mashan Hmong", + "Comment": "" + }, + { + "Id": "hmy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southern Guiyang Hmong", + "Comment": "" + }, + { + "Id": "hmz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hmong Shua", + "Comment": "" + }, + { + "Id": "hna", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mina (Cameroon)", + "Comment": "" + }, + { + "Id": "hnd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southern Hindko", + "Comment": "" + }, + { + "Id": "hne", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chhattisgarhi", + "Comment": "" + }, + { + "Id": "hng", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hungu", + "Comment": "" + }, + { + "Id": "hnh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "\u01C1Ani", + "Comment": "" + }, + { + "Id": "hni", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hani", + "Comment": "" + }, + { + "Id": "hnj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hmong Njua", + "Comment": "" + }, + { + "Id": "hnm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hainanese", + "Comment": "" + }, + { + "Id": "hnn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hanunoo", + "Comment": "" + }, + { + "Id": "hno", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Northern Hindko", + "Comment": "" + }, + { + "Id": "hns", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Caribbean Hindustani", + "Comment": "" + }, + { + "Id": "hnu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hung", + "Comment": "" + }, + { + "Id": "hoa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hoava", + "Comment": "" + }, + { + "Id": "hob", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mari (Madang Province)", + "Comment": "" + }, + { + "Id": "hoc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ho", + "Comment": "" + }, + { + "Id": "hod", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Holma", + "Comment": "" + }, + { + "Id": "hoe", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Horom", + "Comment": "" + }, + { + "Id": "hoh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hoby\u00F3t", + "Comment": "" + }, + { + "Id": "hoi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Holikachuk", + "Comment": "" + }, + { + "Id": "hoj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hadothi", + "Comment": "" + }, + { + "Id": "hol", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Holu", + "Comment": "" + }, + { + "Id": "hom", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Homa", + "Comment": "" + }, + { + "Id": "hoo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Holoholo", + "Comment": "" + }, + { + "Id": "hop", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hopi", + "Comment": "" + }, + { + "Id": "hor", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Horo", + "Comment": "" + }, + { + "Id": "hos", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ho Chi Minh City Sign Language", + "Comment": "" + }, + { + "Id": "hot", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hote", + "Comment": "" + }, + { + "Id": "hov", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hovongan", + "Comment": "" + }, + { + "Id": "how", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Honi", + "Comment": "" + }, + { + "Id": "hoy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Holiya", + "Comment": "" + }, + { + "Id": "hoz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hozo", + "Comment": "" + }, + { + "Id": "hpo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Hpon", + "Comment": "" + }, + { + "Id": "hps", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hawai\u0027i Sign Language (HSL)", + "Comment": "" + }, + { + "Id": "hra", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hrangkhol", + "Comment": "" + }, + { + "Id": "hrc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Niwer Mil", + "Comment": "" + }, + { + "Id": "hre", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hre", + "Comment": "" + }, + { + "Id": "hrk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Haruku", + "Comment": "" + }, + { + "Id": "hrm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Horned Miao", + "Comment": "" + }, + { + "Id": "hro", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Haroi", + "Comment": "" + }, + { + "Id": "hrp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Nhirrpi", + "Comment": "" + }, + { + "Id": "hrt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "H\u00E9rtevin", + "Comment": "" + }, + { + "Id": "hru", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hruso", + "Comment": "" + }, + { + "Id": "hrv", + "Part2B": "hrv", + "Part2T": "hrv", + "Part1": "hr", + "Scope": "I", + "LanguageType": "L", + "RefName": "Croatian", + "Comment": "" + }, + { + "Id": "hrw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Warwar Feni", + "Comment": "" + }, + { + "Id": "hrx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hunsrik", + "Comment": "" + }, + { + "Id": "hrz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Harzani", + "Comment": "" + }, + { + "Id": "hsb", + "Part2B": "hsb", + "Part2T": "hsb", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Upper Sorbian", + "Comment": "" + }, + { + "Id": "hsh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hungarian Sign Language", + "Comment": "" + }, + { + "Id": "hsl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hausa Sign Language", + "Comment": "" + }, + { + "Id": "hsn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Xiang Chinese", + "Comment": "" + }, + { + "Id": "hss", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Harsusi", + "Comment": "" + }, + { + "Id": "hti", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Hoti", + "Comment": "" + }, + { + "Id": "hto", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Minica Huitoto", + "Comment": "" + }, + { + "Id": "hts", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hadza", + "Comment": "" + }, + { + "Id": "htu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hitu", + "Comment": "" + }, + { + "Id": "htx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Middle Hittite", + "Comment": "" + }, + { + "Id": "hub", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Huambisa", + "Comment": "" + }, + { + "Id": "huc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "\u01C2Hua", + "Comment": "" + }, + { + "Id": "hud", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Huaulu", + "Comment": "" + }, + { + "Id": "hue", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "San Francisco Del Mar Huave", + "Comment": "" + }, + { + "Id": "huf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Humene", + "Comment": "" + }, + { + "Id": "hug", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Huachipaeri", + "Comment": "" + }, + { + "Id": "huh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Huilliche", + "Comment": "" + }, + { + "Id": "hui", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Huli", + "Comment": "" + }, + { + "Id": "huj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Northern Guiyang Hmong", + "Comment": "" + }, + { + "Id": "huk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Hulung", + "Comment": "" + }, + { + "Id": "hul", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hula", + "Comment": "" + }, + { + "Id": "hum", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hungana", + "Comment": "" + }, + { + "Id": "hun", + "Part2B": "hun", + "Part2T": "hun", + "Part1": "hu", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hungarian", + "Comment": "" + }, + { + "Id": "huo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hu", + "Comment": "" + }, + { + "Id": "hup", + "Part2B": "hup", + "Part2T": "hup", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hupa", + "Comment": "" + }, + { + "Id": "huq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tsat", + "Comment": "" + }, + { + "Id": "hur", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Halkomelem", + "Comment": "" + }, + { + "Id": "hus", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Huastec", + "Comment": "" + }, + { + "Id": "hut", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Humla", + "Comment": "" + }, + { + "Id": "huu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Murui Huitoto", + "Comment": "" + }, + { + "Id": "huv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "San Mateo Del Mar Huave", + "Comment": "" + }, + { + "Id": "huw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Hukumina", + "Comment": "" + }, + { + "Id": "hux", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "N\u00FCpode Huitoto", + "Comment": "" + }, + { + "Id": "huy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hulaul\u00E1", + "Comment": "" + }, + { + "Id": "huz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hunzib", + "Comment": "" + }, + { + "Id": "hvc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Haitian Vodoun Culture Language", + "Comment": "" + }, + { + "Id": "hve", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "San Dionisio Del Mar Huave", + "Comment": "" + }, + { + "Id": "hvk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Haveke", + "Comment": "" + }, + { + "Id": "hvn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sabu", + "Comment": "" + }, + { + "Id": "hvv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Santa Mar\u00EDa Del Mar Huave", + "Comment": "" + }, + { + "Id": "hwa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wan\u00E9", + "Comment": "" + }, + { + "Id": "hwc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hawai\u0027i Creole English", + "Comment": "" + }, + { + "Id": "hwo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hwana", + "Comment": "" + }, + { + "Id": "hya", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hya", + "Comment": "" + }, + { + "Id": "hye", + "Part2B": "arm", + "Part2T": "hye", + "Part1": "hy", + "Scope": "I", + "LanguageType": "L", + "RefName": "Armenian", + "Comment": "" + }, + { + "Id": "hyw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Western Armenian", + "Comment": "" + }, + { + "Id": "iai", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Iaai", + "Comment": "" + }, + { + "Id": "ian", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Iatmul", + "Comment": "" + }, + { + "Id": "iar", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Purari", + "Comment": "" + }, + { + "Id": "iba", + "Part2B": "iba", + "Part2T": "iba", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Iban", + "Comment": "" + }, + { + "Id": "ibb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ibibio", + "Comment": "" + }, + { + "Id": "ibd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Iwaidja", + "Comment": "" + }, + { + "Id": "ibe", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Akpes", + "Comment": "" + }, + { + "Id": "ibg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ibanag", + "Comment": "" + }, + { + "Id": "ibh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bih", + "Comment": "" + }, + { + "Id": "ibl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ibaloi", + "Comment": "" + }, + { + "Id": "ibm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Agoi", + "Comment": "" + }, + { + "Id": "ibn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ibino", + "Comment": "" + }, + { + "Id": "ibo", + "Part2B": "ibo", + "Part2T": "ibo", + "Part1": "ig", + "Scope": "I", + "LanguageType": "L", + "RefName": "Igbo", + "Comment": "" + }, + { + "Id": "ibr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ibuoro", + "Comment": "" + }, + { + "Id": "ibu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ibu", + "Comment": "" + }, + { + "Id": "iby", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ibani", + "Comment": "" + }, + { + "Id": "ica", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ede Ica", + "Comment": "" + }, + { + "Id": "ich", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Etkywan", + "Comment": "" + }, + { + "Id": "icl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Icelandic Sign Language", + "Comment": "" + }, + { + "Id": "icr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Islander Creole English", + "Comment": "" + }, + { + "Id": "ida", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Idakho-Isukha-Tiriki", + "Comment": "" + }, + { + "Id": "idb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Indo-Portuguese", + "Comment": "" + }, + { + "Id": "idc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Idon", + "Comment": "" + }, + { + "Id": "idd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ede Idaca", + "Comment": "" + }, + { + "Id": "ide", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Idere", + "Comment": "" + }, + { + "Id": "idi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Idi", + "Comment": "" + }, + { + "Id": "ido", + "Part2B": "ido", + "Part2T": "ido", + "Part1": "io", + "Scope": "I", + "LanguageType": "C", + "RefName": "Ido", + "Comment": "" + }, + { + "Id": "idr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Indri", + "Comment": "" + }, + { + "Id": "ids", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Idesa", + "Comment": "" + }, + { + "Id": "idt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Idat\u00E9", + "Comment": "" + }, + { + "Id": "idu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Idoma", + "Comment": "" + }, + { + "Id": "ifa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Amganad Ifugao", + "Comment": "" + }, + { + "Id": "ifb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Batad Ifugao", + "Comment": "" + }, + { + "Id": "ife", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "If\u00E8", + "Comment": "" + }, + { + "Id": "iff", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Ifo", + "Comment": "" + }, + { + "Id": "ifk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tuwali Ifugao", + "Comment": "" + }, + { + "Id": "ifm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Teke-Fuumu", + "Comment": "" + }, + { + "Id": "ifu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mayoyao Ifugao", + "Comment": "" + }, + { + "Id": "ify", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Keley-I Kallahan", + "Comment": "" + }, + { + "Id": "igb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ebira", + "Comment": "" + }, + { + "Id": "ige", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Igede", + "Comment": "" + }, + { + "Id": "igg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Igana", + "Comment": "" + }, + { + "Id": "igl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Igala", + "Comment": "" + }, + { + "Id": "igm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kanggape", + "Comment": "" + }, + { + "Id": "ign", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ignaciano", + "Comment": "" + }, + { + "Id": "igo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Isebe", + "Comment": "" + }, + { + "Id": "igs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "C", + "RefName": "Interglossa", + "Comment": "" + }, + { + "Id": "igw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Igwe", + "Comment": "" + }, + { + "Id": "ihb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Iha Based Pidgin", + "Comment": "" + }, + { + "Id": "ihi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ihievbe", + "Comment": "" + }, + { + "Id": "ihp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Iha", + "Comment": "" + }, + { + "Id": "ihw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Bidhawal", + "Comment": "" + }, + { + "Id": "iii", + "Part2B": "iii", + "Part2T": "iii", + "Part1": "ii", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sichuan Yi", + "Comment": "" + }, + { + "Id": "iin", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Thiin", + "Comment": "" + }, + { + "Id": "ijc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Izon", + "Comment": "" + }, + { + "Id": "ije", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Biseni", + "Comment": "" + }, + { + "Id": "ijj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ede Ije", + "Comment": "" + }, + { + "Id": "ijn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kalabari", + "Comment": "" + }, + { + "Id": "ijs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southeast Ijo", + "Comment": "" + }, + { + "Id": "ike", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Eastern Canadian Inuktitut", + "Comment": "" + }, + { + "Id": "ikh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ikhin-Arokho", + "Comment": "" + }, + { + "Id": "iki", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Iko", + "Comment": "" + }, + { + "Id": "ikk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ika", + "Comment": "" + }, + { + "Id": "ikl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ikulu", + "Comment": "" + }, + { + "Id": "iko", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Olulumo-Ikom", + "Comment": "" + }, + { + "Id": "ikp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ikpeshi", + "Comment": "" + }, + { + "Id": "ikr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Ikaranggal", + "Comment": "" + }, + { + "Id": "iks", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Inuit Sign Language", + "Comment": "" + }, + { + "Id": "ikt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Inuinnaqtun", + "Comment": "" + }, + { + "Id": "iku", + "Part2B": "iku", + "Part2T": "iku", + "Part1": "iu", + "Scope": "M", + "LanguageType": "L", + "RefName": "Inuktitut", + "Comment": "" + }, + { + "Id": "ikv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Iku-Gora-Ankwa", + "Comment": "" + }, + { + "Id": "ikw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ikwere", + "Comment": "" + }, + { + "Id": "ikx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ik", + "Comment": "" + }, + { + "Id": "ikz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ikizu", + "Comment": "" + }, + { + "Id": "ila", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ile Ape", + "Comment": "" + }, + { + "Id": "ilb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ila", + "Comment": "" + }, + { + "Id": "ile", + "Part2B": "ile", + "Part2T": "ile", + "Part1": "ie", + "Scope": "I", + "LanguageType": "C", + "RefName": "Interlingue", + "Comment": "" + }, + { + "Id": "ilg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Garig-Ilgar", + "Comment": "" + }, + { + "Id": "ili", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ili Turki", + "Comment": "" + }, + { + "Id": "ilk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ilongot", + "Comment": "" + }, + { + "Id": "ilm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Iranun (Malaysia)", + "Comment": "" + }, + { + "Id": "ilo", + "Part2B": "ilo", + "Part2T": "ilo", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Iloko", + "Comment": "" + }, + { + "Id": "ilp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Iranun (Philippines)", + "Comment": "" + }, + { + "Id": "ils", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "International Sign", + "Comment": "" + }, + { + "Id": "ilu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ili\u0027uun", + "Comment": "" + }, + { + "Id": "ilv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ilue", + "Comment": "" + }, + { + "Id": "ima", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mala Malasar", + "Comment": "" + }, + { + "Id": "imi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Anamgura", + "Comment": "" + }, + { + "Id": "iml", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Miluk", + "Comment": "" + }, + { + "Id": "imn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Imonda", + "Comment": "" + }, + { + "Id": "imo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Imbongu", + "Comment": "" + }, + { + "Id": "imr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Imroing", + "Comment": "" + }, + { + "Id": "ims", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Marsian", + "Comment": "" + }, + { + "Id": "imt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Imotong", + "Comment": "" + }, + { + "Id": "imy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Milyan", + "Comment": "" + }, + { + "Id": "ina", + "Part2B": "ina", + "Part2T": "ina", + "Part1": "ia", + "Scope": "I", + "LanguageType": "C", + "RefName": "Interlingua (International Auxiliary Language Association)", + "Comment": "" + }, + { + "Id": "inb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Inga", + "Comment": "" + }, + { + "Id": "ind", + "Part2B": "ind", + "Part2T": "ind", + "Part1": "id", + "Scope": "I", + "LanguageType": "L", + "RefName": "Indonesian", + "Comment": "" + }, + { + "Id": "ing", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Degexit\u0027an", + "Comment": "" + }, + { + "Id": "inh", + "Part2B": "inh", + "Part2T": "inh", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ingush", + "Comment": "" + }, + { + "Id": "inj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Jungle Inga", + "Comment": "" + }, + { + "Id": "inl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Indonesian Sign Language", + "Comment": "" + }, + { + "Id": "inm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Minaean", + "Comment": "" + }, + { + "Id": "inn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Isinai", + "Comment": "" + }, + { + "Id": "ino", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Inoke-Yate", + "Comment": "" + }, + { + "Id": "inp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "I\u00F1apari", + "Comment": "" + }, + { + "Id": "ins", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Indian Sign Language", + "Comment": "" + }, + { + "Id": "int", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Intha", + "Comment": "" + }, + { + "Id": "inz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Inese\u00F1o", + "Comment": "" + }, + { + "Id": "ior", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Inor", + "Comment": "" + }, + { + "Id": "iou", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tuma-Irumu", + "Comment": "" + }, + { + "Id": "iow", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Iowa-Oto", + "Comment": "" + }, + { + "Id": "ipi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ipili", + "Comment": "" + }, + { + "Id": "ipk", + "Part2B": "ipk", + "Part2T": "ipk", + "Part1": "ik", + "Scope": "M", + "LanguageType": "L", + "RefName": "Inupiaq", + "Comment": "" + }, + { + "Id": "ipo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ipiko", + "Comment": "" + }, + { + "Id": "iqu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Iquito", + "Comment": "" + }, + { + "Id": "iqw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ikwo", + "Comment": "" + }, + { + "Id": "ire", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Iresim", + "Comment": "" + }, + { + "Id": "irh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Irarutu", + "Comment": "" + }, + { + "Id": "iri", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Rigwe", + "Comment": "" + }, + { + "Id": "irk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Iraqw", + "Comment": "" + }, + { + "Id": "irn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ir\u00E1ntxe", + "Comment": "" + }, + { + "Id": "irr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ir", + "Comment": "" + }, + { + "Id": "iru", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Irula", + "Comment": "" + }, + { + "Id": "irx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kamberau", + "Comment": "" + }, + { + "Id": "iry", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Iraya", + "Comment": "" + }, + { + "Id": "isa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Isabi", + "Comment": "" + }, + { + "Id": "isc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Isconahua", + "Comment": "" + }, + { + "Id": "isd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Isnag", + "Comment": "" + }, + { + "Id": "ise", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Italian Sign Language", + "Comment": "" + }, + { + "Id": "isg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Irish Sign Language", + "Comment": "" + }, + { + "Id": "ish", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Esan", + "Comment": "" + }, + { + "Id": "isi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nkem-Nkum", + "Comment": "" + }, + { + "Id": "isk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ishkashimi", + "Comment": "" + }, + { + "Id": "isl", + "Part2B": "ice", + "Part2T": "isl", + "Part1": "is", + "Scope": "I", + "LanguageType": "L", + "RefName": "Icelandic", + "Comment": "" + }, + { + "Id": "ism", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Masimasi", + "Comment": "" + }, + { + "Id": "isn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Isanzu", + "Comment": "" + }, + { + "Id": "iso", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Isoko", + "Comment": "" + }, + { + "Id": "isr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Israeli Sign Language", + "Comment": "" + }, + { + "Id": "ist", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Istriot", + "Comment": "" + }, + { + "Id": "isu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Isu (Menchum Division)", + "Comment": "" + }, + { + "Id": "isv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "C", + "RefName": "Interslavic", + "Comment": "" + }, + { + "Id": "ita", + "Part2B": "ita", + "Part2T": "ita", + "Part1": "it", + "Scope": "I", + "LanguageType": "L", + "RefName": "Italian", + "Comment": "" + }, + { + "Id": "itb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Binongan Itneg", + "Comment": "" + }, + { + "Id": "itd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southern Tidung", + "Comment": "" + }, + { + "Id": "ite", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Itene", + "Comment": "" + }, + { + "Id": "iti", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Inlaod Itneg", + "Comment": "" + }, + { + "Id": "itk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Judeo-Italian", + "Comment": "" + }, + { + "Id": "itl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Itelmen", + "Comment": "" + }, + { + "Id": "itm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Itu Mbon Uzo", + "Comment": "" + }, + { + "Id": "ito", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Itonama", + "Comment": "" + }, + { + "Id": "itr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Iteri", + "Comment": "" + }, + { + "Id": "its", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Isekiri", + "Comment": "" + }, + { + "Id": "itt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Maeng Itneg", + "Comment": "" + }, + { + "Id": "itv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Itawit", + "Comment": "" + }, + { + "Id": "itw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ito", + "Comment": "" + }, + { + "Id": "itx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Itik", + "Comment": "" + }, + { + "Id": "ity", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Moyadan Itneg", + "Comment": "" + }, + { + "Id": "itz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Itz\u00E1", + "Comment": "" + }, + { + "Id": "ium", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Iu Mien", + "Comment": "" + }, + { + "Id": "ivb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ibatan", + "Comment": "" + }, + { + "Id": "ivv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ivatan", + "Comment": "" + }, + { + "Id": "iwk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "I-Wak", + "Comment": "" + }, + { + "Id": "iwm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Iwam", + "Comment": "" + }, + { + "Id": "iwo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Iwur", + "Comment": "" + }, + { + "Id": "iws", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sepik Iwam", + "Comment": "" + }, + { + "Id": "ixc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ixcatec", + "Comment": "" + }, + { + "Id": "ixl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ixil", + "Comment": "" + }, + { + "Id": "iya", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Iyayu", + "Comment": "" + }, + { + "Id": "iyo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mesaka", + "Comment": "" + }, + { + "Id": "iyx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yaka (Congo)", + "Comment": "" + }, + { + "Id": "izh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ingrian", + "Comment": "" + }, + { + "Id": "izm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kizamani", + "Comment": "" + }, + { + "Id": "izr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Izere", + "Comment": "" + }, + { + "Id": "izz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Izii", + "Comment": "" + }, + { + "Id": "jaa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Jamamad\u00ED", + "Comment": "" + }, + { + "Id": "jab", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hyam", + "Comment": "" + }, + { + "Id": "jac", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Popti\u0027", + "Comment": "" + }, + { + "Id": "jad", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Jahanka", + "Comment": "" + }, + { + "Id": "jae", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yabem", + "Comment": "" + }, + { + "Id": "jaf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Jara", + "Comment": "" + }, + { + "Id": "jah", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Jah Hut", + "Comment": "" + }, + { + "Id": "jaj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Zazao", + "Comment": "" + }, + { + "Id": "jak", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Jakun", + "Comment": "" + }, + { + "Id": "jal", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yalahatan", + "Comment": "" + }, + { + "Id": "jam", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Jamaican Creole English", + "Comment": "" + }, + { + "Id": "jan", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Jandai", + "Comment": "" + }, + { + "Id": "jao", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yanyuwa", + "Comment": "" + }, + { + "Id": "jaq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yaqay", + "Comment": "" + }, + { + "Id": "jas", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "New Caledonian Javanese", + "Comment": "" + }, + { + "Id": "jat", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Jakati", + "Comment": "" + }, + { + "Id": "jau", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yaur", + "Comment": "" + }, + { + "Id": "jav", + "Part2B": "jav", + "Part2T": "jav", + "Part1": "jv", + "Scope": "I", + "LanguageType": "L", + "RefName": "Javanese", + "Comment": "" + }, + { + "Id": "jax", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Jambi Malay", + "Comment": "" + }, + { + "Id": "jay", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yan-nhangu", + "Comment": "" + }, + { + "Id": "jaz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Jawe", + "Comment": "" + }, + { + "Id": "jbe", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Judeo-Berber", + "Comment": "" + }, + { + "Id": "jbi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Badjiri", + "Comment": "" + }, + { + "Id": "jbj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Arandai", + "Comment": "" + }, + { + "Id": "jbk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Barikewa", + "Comment": "" + }, + { + "Id": "jbm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bijim", + "Comment": "" + }, + { + "Id": "jbn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nafusi", + "Comment": "" + }, + { + "Id": "jbo", + "Part2B": "jbo", + "Part2T": "jbo", + "Part1": "", + "Scope": "I", + "LanguageType": "C", + "RefName": "Lojban", + "Comment": "" + }, + { + "Id": "jbr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Jofotek-Bromnya", + "Comment": "" + }, + { + "Id": "jbt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Jabut\u00ED", + "Comment": "" + }, + { + "Id": "jbu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Jukun Takum", + "Comment": "" + }, + { + "Id": "jbw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Yawijibaya", + "Comment": "" + }, + { + "Id": "jcs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Jamaican Country Sign Language", + "Comment": "" + }, + { + "Id": "jct", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Krymchak", + "Comment": "" + }, + { + "Id": "jda", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Jad", + "Comment": "" + }, + { + "Id": "jdg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Jadgali", + "Comment": "" + }, + { + "Id": "jdt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Judeo-Tat", + "Comment": "" + }, + { + "Id": "jeb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Jebero", + "Comment": "" + }, + { + "Id": "jee", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Jerung", + "Comment": "" + }, + { + "Id": "jeh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Jeh", + "Comment": "" + }, + { + "Id": "jei", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yei", + "Comment": "" + }, + { + "Id": "jek", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Jeri Kuo", + "Comment": "" + }, + { + "Id": "jel", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yelmek", + "Comment": "" + }, + { + "Id": "jen", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dza", + "Comment": "" + }, + { + "Id": "jer", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Jere", + "Comment": "" + }, + { + "Id": "jet", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Manem", + "Comment": "" + }, + { + "Id": "jeu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Jonkor Bourmataguil", + "Comment": "" + }, + { + "Id": "jgb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Ngbee", + "Comment": "" + }, + { + "Id": "jge", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Judeo-Georgian", + "Comment": "" + }, + { + "Id": "jgk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gwak", + "Comment": "" + }, + { + "Id": "jgo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ngomba", + "Comment": "" + }, + { + "Id": "jhi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Jehai", + "Comment": "" + }, + { + "Id": "jhs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Jhankot Sign Language", + "Comment": "" + }, + { + "Id": "jia", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Jina", + "Comment": "" + }, + { + "Id": "jib", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Jibu", + "Comment": "" + }, + { + "Id": "jic", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tol", + "Comment": "" + }, + { + "Id": "jid", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bu (Kaduna State)", + "Comment": "" + }, + { + "Id": "jie", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Jilbe", + "Comment": "" + }, + { + "Id": "jig", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Jingulu", + "Comment": "" + }, + { + "Id": "jih", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "sTodsde", + "Comment": "" + }, + { + "Id": "jii", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Jiiddu", + "Comment": "" + }, + { + "Id": "jil", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Jilim", + "Comment": "" + }, + { + "Id": "jim", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Jimi (Cameroon)", + "Comment": "" + }, + { + "Id": "jio", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Jiamao", + "Comment": "" + }, + { + "Id": "jiq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Guanyinqiao", + "Comment": "" + }, + { + "Id": "jit", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Jita", + "Comment": "" + }, + { + "Id": "jiu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Youle Jinuo", + "Comment": "" + }, + { + "Id": "jiv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Shuar", + "Comment": "" + }, + { + "Id": "jiy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Buyuan Jinuo", + "Comment": "" + }, + { + "Id": "jje", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Jejueo", + "Comment": "" + }, + { + "Id": "jjr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bankal", + "Comment": "" + }, + { + "Id": "jka", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kaera", + "Comment": "" + }, + { + "Id": "jkm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mobwa Karen", + "Comment": "" + }, + { + "Id": "jko", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kubo", + "Comment": "" + }, + { + "Id": "jkp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Paku Karen", + "Comment": "" + }, + { + "Id": "jkr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Koro (India)", + "Comment": "" + }, + { + "Id": "jks", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Amami Koniya Sign Language", + "Comment": "" + }, + { + "Id": "jku", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Labir", + "Comment": "" + }, + { + "Id": "jle", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ngile", + "Comment": "" + }, + { + "Id": "jls", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Jamaican Sign Language", + "Comment": "" + }, + { + "Id": "jma", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dima", + "Comment": "" + }, + { + "Id": "jmb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Zumbun", + "Comment": "" + }, + { + "Id": "jmc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Machame", + "Comment": "" + }, + { + "Id": "jmd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yamdena", + "Comment": "" + }, + { + "Id": "jmi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Jimi (Nigeria)", + "Comment": "" + }, + { + "Id": "jml", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Jumli", + "Comment": "" + }, + { + "Id": "jmn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Makuri Naga", + "Comment": "" + }, + { + "Id": "jmr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kamara", + "Comment": "" + }, + { + "Id": "jms", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mashi (Nigeria)", + "Comment": "" + }, + { + "Id": "jmw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mouwase", + "Comment": "" + }, + { + "Id": "jmx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Western Juxtlahuaca Mixtec", + "Comment": "" + }, + { + "Id": "jna", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Jangshung", + "Comment": "" + }, + { + "Id": "jnd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Jandavra", + "Comment": "" + }, + { + "Id": "jng", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Yangman", + "Comment": "" + }, + { + "Id": "jni", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Janji", + "Comment": "" + }, + { + "Id": "jnj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yemsa", + "Comment": "" + }, + { + "Id": "jnl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Rawat", + "Comment": "" + }, + { + "Id": "jns", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Jaunsari", + "Comment": "" + }, + { + "Id": "job", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Joba", + "Comment": "" + }, + { + "Id": "jod", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wojenaka", + "Comment": "" + }, + { + "Id": "jog", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Jogi", + "Comment": "" + }, + { + "Id": "jor", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Jor\u00E1", + "Comment": "" + }, + { + "Id": "jos", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Jordanian Sign Language", + "Comment": "" + }, + { + "Id": "jow", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Jowulu", + "Comment": "" + }, + { + "Id": "jpa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Jewish Palestinian Aramaic", + "Comment": "" + }, + { + "Id": "jpn", + "Part2B": "jpn", + "Part2T": "jpn", + "Part1": "ja", + "Scope": "I", + "LanguageType": "L", + "RefName": "Japanese", + "Comment": "" + }, + { + "Id": "jpr", + "Part2B": "jpr", + "Part2T": "jpr", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Judeo-Persian", + "Comment": "" + }, + { + "Id": "jqr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Jaqaru", + "Comment": "" + }, + { + "Id": "jra", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Jarai", + "Comment": "" + }, + { + "Id": "jrb", + "Part2B": "jrb", + "Part2T": "jrb", + "Part1": "", + "Scope": "M", + "LanguageType": "L", + "RefName": "Judeo-Arabic", + "Comment": "" + }, + { + "Id": "jrr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Jiru", + "Comment": "" + }, + { + "Id": "jrt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Jakattoe", + "Comment": "" + }, + { + "Id": "jru", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Japrer\u00EDa", + "Comment": "" + }, + { + "Id": "jsl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Japanese Sign Language", + "Comment": "" + }, + { + "Id": "jua", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "J\u00FAma", + "Comment": "" + }, + { + "Id": "jub", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wannu", + "Comment": "" + }, + { + "Id": "juc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Jurchen", + "Comment": "" + }, + { + "Id": "jud", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Worodougou", + "Comment": "" + }, + { + "Id": "juh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "H\u00F5ne", + "Comment": "" + }, + { + "Id": "jui", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Ngadjuri", + "Comment": "" + }, + { + "Id": "juk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wapan", + "Comment": "" + }, + { + "Id": "jul", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Jirel", + "Comment": "" + }, + { + "Id": "jum", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Jumjum", + "Comment": "" + }, + { + "Id": "jun", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Juang", + "Comment": "" + }, + { + "Id": "juo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Jiba", + "Comment": "" + }, + { + "Id": "jup", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hupd\u00EB", + "Comment": "" + }, + { + "Id": "jur", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Jur\u00FAna", + "Comment": "" + }, + { + "Id": "jus", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Jumla Sign Language", + "Comment": "" + }, + { + "Id": "jut", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Jutish", + "Comment": "" + }, + { + "Id": "juu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ju", + "Comment": "" + }, + { + "Id": "juw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "W\u00E3pha", + "Comment": "" + }, + { + "Id": "juy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Juray", + "Comment": "" + }, + { + "Id": "jvd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Javindo", + "Comment": "" + }, + { + "Id": "jvn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Caribbean Javanese", + "Comment": "" + }, + { + "Id": "jwi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Jwira-Pepesa", + "Comment": "" + }, + { + "Id": "jya", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Jiarong", + "Comment": "" + }, + { + "Id": "jye", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Judeo-Yemeni Arabic", + "Comment": "" + }, + { + "Id": "jyy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Jaya", + "Comment": "" + }, + { + "Id": "kaa", + "Part2B": "kaa", + "Part2T": "kaa", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kara-Kalpak", + "Comment": "" + }, + { + "Id": "kab", + "Part2B": "kab", + "Part2T": "kab", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kabyle", + "Comment": "" + }, + { + "Id": "kac", + "Part2B": "kac", + "Part2T": "kac", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kachin", + "Comment": "" + }, + { + "Id": "kad", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Adara", + "Comment": "" + }, + { + "Id": "kae", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Ketangalan", + "Comment": "" + }, + { + "Id": "kaf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Katso", + "Comment": "" + }, + { + "Id": "kag", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kajaman", + "Comment": "" + }, + { + "Id": "kah", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kara (Central African Republic)", + "Comment": "" + }, + { + "Id": "kai", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Karekare", + "Comment": "" + }, + { + "Id": "kaj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Jju", + "Comment": "" + }, + { + "Id": "kak", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kalanguya", + "Comment": "" + }, + { + "Id": "kal", + "Part2B": "kal", + "Part2T": "kal", + "Part1": "kl", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kalaallisut", + "Comment": "" + }, + { + "Id": "kam", + "Part2B": "kam", + "Part2T": "kam", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kamba (Kenya)", + "Comment": "" + }, + { + "Id": "kan", + "Part2B": "kan", + "Part2T": "kan", + "Part1": "kn", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kannada", + "Comment": "" + }, + { + "Id": "kao", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Xaasongaxango", + "Comment": "" + }, + { + "Id": "kap", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bezhta", + "Comment": "" + }, + { + "Id": "kaq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Capanahua", + "Comment": "" + }, + { + "Id": "kas", + "Part2B": "kas", + "Part2T": "kas", + "Part1": "ks", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kashmiri", + "Comment": "" + }, + { + "Id": "kat", + "Part2B": "geo", + "Part2T": "kat", + "Part1": "ka", + "Scope": "I", + "LanguageType": "L", + "RefName": "Georgian", + "Comment": "" + }, + { + "Id": "kau", + "Part2B": "kau", + "Part2T": "kau", + "Part1": "kr", + "Scope": "M", + "LanguageType": "L", + "RefName": "Kanuri", + "Comment": "" + }, + { + "Id": "kav", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Katuk\u00EDna", + "Comment": "" + }, + { + "Id": "kaw", + "Part2B": "kaw", + "Part2T": "kaw", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Kawi", + "Comment": "" + }, + { + "Id": "kax", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kao", + "Comment": "" + }, + { + "Id": "kay", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kamayur\u00E1", + "Comment": "" + }, + { + "Id": "kaz", + "Part2B": "kaz", + "Part2T": "kaz", + "Part1": "kk", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kazakh", + "Comment": "" + }, + { + "Id": "kba", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Kalarko", + "Comment": "" + }, + { + "Id": "kbb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Kaxui\u00E2na", + "Comment": "" + }, + { + "Id": "kbc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kadiw\u00E9u", + "Comment": "" + }, + { + "Id": "kbd", + "Part2B": "kbd", + "Part2T": "kbd", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kabardian", + "Comment": "" + }, + { + "Id": "kbe", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kanju", + "Comment": "" + }, + { + "Id": "kbg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Khamba", + "Comment": "" + }, + { + "Id": "kbh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Cams\u00E1", + "Comment": "" + }, + { + "Id": "kbi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kaptiau", + "Comment": "" + }, + { + "Id": "kbj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kari", + "Comment": "" + }, + { + "Id": "kbk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Grass Koiari", + "Comment": "" + }, + { + "Id": "kbl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kanembu", + "Comment": "" + }, + { + "Id": "kbm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Iwal", + "Comment": "" + }, + { + "Id": "kbn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kare (Central African Republic)", + "Comment": "" + }, + { + "Id": "kbo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Keliko", + "Comment": "" + }, + { + "Id": "kbp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kabiy\u00E8", + "Comment": "" + }, + { + "Id": "kbq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kamano", + "Comment": "" + }, + { + "Id": "kbr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kafa", + "Comment": "" + }, + { + "Id": "kbs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kande", + "Comment": "" + }, + { + "Id": "kbt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Abadi", + "Comment": "" + }, + { + "Id": "kbu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kabutra", + "Comment": "" + }, + { + "Id": "kbv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dera (Indonesia)", + "Comment": "" + }, + { + "Id": "kbw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kaiep", + "Comment": "" + }, + { + "Id": "kbx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ap Ma", + "Comment": "" + }, + { + "Id": "kby", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Manga Kanuri", + "Comment": "" + }, + { + "Id": "kbz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Duhwa", + "Comment": "" + }, + { + "Id": "kca", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Khanty", + "Comment": "" + }, + { + "Id": "kcb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kawacha", + "Comment": "" + }, + { + "Id": "kcc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lubila", + "Comment": "" + }, + { + "Id": "kcd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ngk\u00E2lmpw Kanum", + "Comment": "" + }, + { + "Id": "kce", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kaivi", + "Comment": "" + }, + { + "Id": "kcf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ukaan", + "Comment": "" + }, + { + "Id": "kcg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tyap", + "Comment": "" + }, + { + "Id": "kch", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Vono", + "Comment": "" + }, + { + "Id": "kci", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ngyian", + "Comment": "" + }, + { + "Id": "kcj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kobiana", + "Comment": "" + }, + { + "Id": "kck", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kalanga", + "Comment": "" + }, + { + "Id": "kcl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kela (Papua New Guinea)", + "Comment": "" + }, + { + "Id": "kcm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gula (Central African Republic)", + "Comment": "" + }, + { + "Id": "kcn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nubi", + "Comment": "" + }, + { + "Id": "kco", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kinalakna", + "Comment": "" + }, + { + "Id": "kcp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kanga", + "Comment": "" + }, + { + "Id": "kcq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kamo", + "Comment": "" + }, + { + "Id": "kcr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Katla", + "Comment": "" + }, + { + "Id": "kcs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Koenoem", + "Comment": "" + }, + { + "Id": "kct", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kaian", + "Comment": "" + }, + { + "Id": "kcu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kami (Tanzania)", + "Comment": "" + }, + { + "Id": "kcv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kete", + "Comment": "" + }, + { + "Id": "kcw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kabwari", + "Comment": "" + }, + { + "Id": "kcx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kachama-Ganjule", + "Comment": "" + }, + { + "Id": "kcy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Korandje", + "Comment": "" + }, + { + "Id": "kcz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Konongo", + "Comment": "" + }, + { + "Id": "kda", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Worimi", + "Comment": "" + }, + { + "Id": "kdc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kutu", + "Comment": "" + }, + { + "Id": "kdd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yankunytjatjara", + "Comment": "" + }, + { + "Id": "kde", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Makonde", + "Comment": "" + }, + { + "Id": "kdf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mamusi", + "Comment": "" + }, + { + "Id": "kdg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Seba", + "Comment": "" + }, + { + "Id": "kdh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tem", + "Comment": "" + }, + { + "Id": "kdi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kumam", + "Comment": "" + }, + { + "Id": "kdj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Karamojong", + "Comment": "" + }, + { + "Id": "kdk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Num\u00E8\u00E8", + "Comment": "" + }, + { + "Id": "kdl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tsikimba", + "Comment": "" + }, + { + "Id": "kdm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kagoma", + "Comment": "" + }, + { + "Id": "kdn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kunda", + "Comment": "" + }, + { + "Id": "kdp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kaningdon-Nindem", + "Comment": "" + }, + { + "Id": "kdq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Koch", + "Comment": "" + }, + { + "Id": "kdr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Karaim", + "Comment": "" + }, + { + "Id": "kdt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kuy", + "Comment": "" + }, + { + "Id": "kdu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kadaru", + "Comment": "" + }, + { + "Id": "kdw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Koneraw", + "Comment": "" + }, + { + "Id": "kdx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kam", + "Comment": "" + }, + { + "Id": "kdy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Keder", + "Comment": "" + }, + { + "Id": "kdz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kwaja", + "Comment": "" + }, + { + "Id": "kea", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kabuverdianu", + "Comment": "" + }, + { + "Id": "keb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "K\u00E9l\u00E9", + "Comment": "" + }, + { + "Id": "kec", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Keiga", + "Comment": "" + }, + { + "Id": "ked", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kerewe", + "Comment": "" + }, + { + "Id": "kee", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Eastern Keres", + "Comment": "" + }, + { + "Id": "kef", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kpessi", + "Comment": "" + }, + { + "Id": "keg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tese", + "Comment": "" + }, + { + "Id": "keh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Keak", + "Comment": "" + }, + { + "Id": "kei", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kei", + "Comment": "" + }, + { + "Id": "kej", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kadar", + "Comment": "" + }, + { + "Id": "kek", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kekch\u00ED", + "Comment": "" + }, + { + "Id": "kel", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kela (Democratic Republic of Congo)", + "Comment": "" + }, + { + "Id": "kem", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kemak", + "Comment": "" + }, + { + "Id": "ken", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kenyang", + "Comment": "" + }, + { + "Id": "keo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kakwa", + "Comment": "" + }, + { + "Id": "kep", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kaikadi", + "Comment": "" + }, + { + "Id": "keq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kamar", + "Comment": "" + }, + { + "Id": "ker", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kera", + "Comment": "" + }, + { + "Id": "kes", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kugbo", + "Comment": "" + }, + { + "Id": "ket", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ket", + "Comment": "" + }, + { + "Id": "keu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Akebu", + "Comment": "" + }, + { + "Id": "kev", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kanikkaran", + "Comment": "" + }, + { + "Id": "kew", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "West Kewa", + "Comment": "" + }, + { + "Id": "kex", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kukna", + "Comment": "" + }, + { + "Id": "key", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kupia", + "Comment": "" + }, + { + "Id": "kez", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kukele", + "Comment": "" + }, + { + "Id": "kfa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kodava", + "Comment": "" + }, + { + "Id": "kfb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Northwestern Kolami", + "Comment": "" + }, + { + "Id": "kfc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Konda-Dora", + "Comment": "" + }, + { + "Id": "kfd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Korra Koraga", + "Comment": "" + }, + { + "Id": "kfe", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kota (India)", + "Comment": "" + }, + { + "Id": "kff", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Koya", + "Comment": "" + }, + { + "Id": "kfg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kudiya", + "Comment": "" + }, + { + "Id": "kfh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kurichiya", + "Comment": "" + }, + { + "Id": "kfi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kannada Kurumba", + "Comment": "" + }, + { + "Id": "kfj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kemiehua", + "Comment": "" + }, + { + "Id": "kfk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kinnauri", + "Comment": "" + }, + { + "Id": "kfl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kung", + "Comment": "" + }, + { + "Id": "kfm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Khunsari", + "Comment": "" + }, + { + "Id": "kfn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kuk", + "Comment": "" + }, + { + "Id": "kfo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Koro (C\u00F4te d\u0027Ivoire)", + "Comment": "" + }, + { + "Id": "kfp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Korwa", + "Comment": "" + }, + { + "Id": "kfq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Korku", + "Comment": "" + }, + { + "Id": "kfr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kachhi", + "Comment": "" + }, + { + "Id": "kfs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bilaspuri", + "Comment": "" + }, + { + "Id": "kft", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kanjari", + "Comment": "" + }, + { + "Id": "kfu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Katkari", + "Comment": "" + }, + { + "Id": "kfv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kurmukar", + "Comment": "" + }, + { + "Id": "kfw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kharam Naga", + "Comment": "" + }, + { + "Id": "kfx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kullu Pahari", + "Comment": "" + }, + { + "Id": "kfy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kumaoni", + "Comment": "" + }, + { + "Id": "kfz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Koromf\u00E9", + "Comment": "" + }, + { + "Id": "kga", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Koyaga", + "Comment": "" + }, + { + "Id": "kgb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kawe", + "Comment": "" + }, + { + "Id": "kge", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Komering", + "Comment": "" + }, + { + "Id": "kgf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kube", + "Comment": "" + }, + { + "Id": "kgg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kusunda", + "Comment": "" + }, + { + "Id": "kgi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Selangor Sign Language", + "Comment": "" + }, + { + "Id": "kgj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gamale Kham", + "Comment": "" + }, + { + "Id": "kgk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kaiw\u00E1", + "Comment": "" + }, + { + "Id": "kgl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Kunggari", + "Comment": "" + }, + { + "Id": "kgn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Karingani", + "Comment": "" + }, + { + "Id": "kgo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Krongo", + "Comment": "" + }, + { + "Id": "kgp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kaingang", + "Comment": "" + }, + { + "Id": "kgq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kamoro", + "Comment": "" + }, + { + "Id": "kgr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Abun", + "Comment": "" + }, + { + "Id": "kgs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kumbainggar", + "Comment": "" + }, + { + "Id": "kgt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Somyev", + "Comment": "" + }, + { + "Id": "kgu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kobol", + "Comment": "" + }, + { + "Id": "kgv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Karas", + "Comment": "" + }, + { + "Id": "kgw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Karon Dori", + "Comment": "" + }, + { + "Id": "kgx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kamaru", + "Comment": "" + }, + { + "Id": "kgy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kyerung", + "Comment": "" + }, + { + "Id": "kha", + "Part2B": "kha", + "Part2T": "kha", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Khasi", + "Comment": "" + }, + { + "Id": "khb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "L\u00FC", + "Comment": "" + }, + { + "Id": "khc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tukang Besi North", + "Comment": "" + }, + { + "Id": "khd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "B\u00E4di Kanum", + "Comment": "" + }, + { + "Id": "khe", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Korowai", + "Comment": "" + }, + { + "Id": "khf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Khuen", + "Comment": "" + }, + { + "Id": "khg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Khams Tibetan", + "Comment": "" + }, + { + "Id": "khh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kehu", + "Comment": "" + }, + { + "Id": "khj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kuturmi", + "Comment": "" + }, + { + "Id": "khk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Halh Mongolian", + "Comment": "" + }, + { + "Id": "khl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lusi", + "Comment": "" + }, + { + "Id": "khm", + "Part2B": "khm", + "Part2T": "khm", + "Part1": "km", + "Scope": "I", + "LanguageType": "L", + "RefName": "Khmer", + "Comment": "" + }, + { + "Id": "khn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Khandesi", + "Comment": "" + }, + { + "Id": "kho", + "Part2B": "kho", + "Part2T": "kho", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Khotanese", + "Comment": "" + }, + { + "Id": "khp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kapori", + "Comment": "" + }, + { + "Id": "khq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Koyra Chiini Songhay", + "Comment": "" + }, + { + "Id": "khr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kharia", + "Comment": "" + }, + { + "Id": "khs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kasua", + "Comment": "" + }, + { + "Id": "kht", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Khamti", + "Comment": "" + }, + { + "Id": "khu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nkhumbi", + "Comment": "" + }, + { + "Id": "khv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Khvarshi", + "Comment": "" + }, + { + "Id": "khw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Khowar", + "Comment": "" + }, + { + "Id": "khx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kanu", + "Comment": "" + }, + { + "Id": "khy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kele (Democratic Republic of Congo)", + "Comment": "" + }, + { + "Id": "khz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Keapara", + "Comment": "" + }, + { + "Id": "kia", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kim", + "Comment": "" + }, + { + "Id": "kib", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Koalib", + "Comment": "" + }, + { + "Id": "kic", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kickapoo", + "Comment": "" + }, + { + "Id": "kid", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Koshin", + "Comment": "" + }, + { + "Id": "kie", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kibet", + "Comment": "" + }, + { + "Id": "kif", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Eastern Parbate Kham", + "Comment": "" + }, + { + "Id": "kig", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kimaama", + "Comment": "" + }, + { + "Id": "kih", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kilmeri", + "Comment": "" + }, + { + "Id": "kii", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Kitsai", + "Comment": "" + }, + { + "Id": "kij", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kilivila", + "Comment": "" + }, + { + "Id": "kik", + "Part2B": "kik", + "Part2T": "kik", + "Part1": "ki", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kikuyu", + "Comment": "" + }, + { + "Id": "kil", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kariya", + "Comment": "" + }, + { + "Id": "kim", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Karagas", + "Comment": "" + }, + { + "Id": "kin", + "Part2B": "kin", + "Part2T": "kin", + "Part1": "rw", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kinyarwanda", + "Comment": "" + }, + { + "Id": "kio", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kiowa", + "Comment": "" + }, + { + "Id": "kip", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sheshi Kham", + "Comment": "" + }, + { + "Id": "kiq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kosadle", + "Comment": "" + }, + { + "Id": "kir", + "Part2B": "kir", + "Part2T": "kir", + "Part1": "ky", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kirghiz", + "Comment": "" + }, + { + "Id": "kis", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kis", + "Comment": "" + }, + { + "Id": "kit", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Agob", + "Comment": "" + }, + { + "Id": "kiu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kirmanjki (individual language)", + "Comment": "" + }, + { + "Id": "kiv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kimbu", + "Comment": "" + }, + { + "Id": "kiw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Northeast Kiwai", + "Comment": "" + }, + { + "Id": "kix", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Khiamniungan Naga", + "Comment": "" + }, + { + "Id": "kiy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kirikiri", + "Comment": "" + }, + { + "Id": "kiz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kisi", + "Comment": "" + }, + { + "Id": "kja", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mlap", + "Comment": "" + }, + { + "Id": "kjb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Q\u0027anjob\u0027al", + "Comment": "" + }, + { + "Id": "kjc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Coastal Konjo", + "Comment": "" + }, + { + "Id": "kjd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southern Kiwai", + "Comment": "" + }, + { + "Id": "kje", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kisar", + "Comment": "" + }, + { + "Id": "kjg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Khmu", + "Comment": "" + }, + { + "Id": "kjh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Khakas", + "Comment": "" + }, + { + "Id": "kji", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Zabana", + "Comment": "" + }, + { + "Id": "kjj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Khinalugh", + "Comment": "" + }, + { + "Id": "kjk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Highland Konjo", + "Comment": "" + }, + { + "Id": "kjl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Western Parbate Kham", + "Comment": "" + }, + { + "Id": "kjm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kh\u00E1ng", + "Comment": "" + }, + { + "Id": "kjn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kunjen", + "Comment": "" + }, + { + "Id": "kjo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Harijan Kinnauri", + "Comment": "" + }, + { + "Id": "kjp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pwo Eastern Karen", + "Comment": "" + }, + { + "Id": "kjq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Western Keres", + "Comment": "" + }, + { + "Id": "kjr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kurudu", + "Comment": "" + }, + { + "Id": "kjs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "East Kewa", + "Comment": "" + }, + { + "Id": "kjt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Phrae Pwo Karen", + "Comment": "" + }, + { + "Id": "kju", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kashaya", + "Comment": "" + }, + { + "Id": "kjv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Kaikavian Literary Language", + "Comment": "" + }, + { + "Id": "kjx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ramopa", + "Comment": "" + }, + { + "Id": "kjy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Erave", + "Comment": "" + }, + { + "Id": "kjz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bumthangkha", + "Comment": "" + }, + { + "Id": "kka", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kakanda", + "Comment": "" + }, + { + "Id": "kkb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kwerisa", + "Comment": "" + }, + { + "Id": "kkc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Odoodee", + "Comment": "" + }, + { + "Id": "kkd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kinuku", + "Comment": "" + }, + { + "Id": "kke", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kakabe", + "Comment": "" + }, + { + "Id": "kkf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kalaktang Monpa", + "Comment": "" + }, + { + "Id": "kkg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mabaka Valley Kalinga", + "Comment": "" + }, + { + "Id": "kkh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kh\u00FCn", + "Comment": "" + }, + { + "Id": "kki", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kagulu", + "Comment": "" + }, + { + "Id": "kkj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kako", + "Comment": "" + }, + { + "Id": "kkk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kokota", + "Comment": "" + }, + { + "Id": "kkl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kosarek Yale", + "Comment": "" + }, + { + "Id": "kkm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kiong", + "Comment": "" + }, + { + "Id": "kkn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kon Keu", + "Comment": "" + }, + { + "Id": "kko", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Karko", + "Comment": "" + }, + { + "Id": "kkp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gugubera", + "Comment": "" + }, + { + "Id": "kkq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kaeku", + "Comment": "" + }, + { + "Id": "kkr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kir-Balar", + "Comment": "" + }, + { + "Id": "kks", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Giiwo", + "Comment": "" + }, + { + "Id": "kkt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Koi", + "Comment": "" + }, + { + "Id": "kku", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tumi", + "Comment": "" + }, + { + "Id": "kkv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kangean", + "Comment": "" + }, + { + "Id": "kkw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Teke-Kukuya", + "Comment": "" + }, + { + "Id": "kkx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kohin", + "Comment": "" + }, + { + "Id": "kky", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Guugu Yimidhirr", + "Comment": "" + }, + { + "Id": "kkz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kaska", + "Comment": "" + }, + { + "Id": "kla", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Klamath-Modoc", + "Comment": "" + }, + { + "Id": "klb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kiliwa", + "Comment": "" + }, + { + "Id": "klc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kolbila", + "Comment": "" + }, + { + "Id": "kld", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gamilaraay", + "Comment": "" + }, + { + "Id": "kle", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kulung (Nepal)", + "Comment": "" + }, + { + "Id": "klf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kendeje", + "Comment": "" + }, + { + "Id": "klg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tagakaulo", + "Comment": "" + }, + { + "Id": "klh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Weliki", + "Comment": "" + }, + { + "Id": "kli", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kalumpang", + "Comment": "" + }, + { + "Id": "klj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Khalaj", + "Comment": "" + }, + { + "Id": "klk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kono (Nigeria)", + "Comment": "" + }, + { + "Id": "kll", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kagan Kalagan", + "Comment": "" + }, + { + "Id": "klm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Migum", + "Comment": "" + }, + { + "Id": "kln", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "M", + "LanguageType": "L", + "RefName": "Kalenjin", + "Comment": "" + }, + { + "Id": "klo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kapya", + "Comment": "" + }, + { + "Id": "klp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kamasa", + "Comment": "" + }, + { + "Id": "klq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Rumu", + "Comment": "" + }, + { + "Id": "klr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Khaling", + "Comment": "" + }, + { + "Id": "kls", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kalasha", + "Comment": "" + }, + { + "Id": "klt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nukna", + "Comment": "" + }, + { + "Id": "klu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Klao", + "Comment": "" + }, + { + "Id": "klv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Maskelynes", + "Comment": "" + }, + { + "Id": "klw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tado", + "Comment": "" + }, + { + "Id": "klx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Koluwawa", + "Comment": "" + }, + { + "Id": "kly", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kalao", + "Comment": "" + }, + { + "Id": "klz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kabola", + "Comment": "" + }, + { + "Id": "kma", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Konni", + "Comment": "" + }, + { + "Id": "kmb", + "Part2B": "kmb", + "Part2T": "kmb", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kimbundu", + "Comment": "" + }, + { + "Id": "kmc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southern Dong", + "Comment": "" + }, + { + "Id": "kmd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Majukayang Kalinga", + "Comment": "" + }, + { + "Id": "kme", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bakole", + "Comment": "" + }, + { + "Id": "kmf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kare (Papua New Guinea)", + "Comment": "" + }, + { + "Id": "kmg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "K\u00E2te", + "Comment": "" + }, + { + "Id": "kmh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kalam", + "Comment": "" + }, + { + "Id": "kmi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kami (Nigeria)", + "Comment": "" + }, + { + "Id": "kmj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kumarbhag Paharia", + "Comment": "" + }, + { + "Id": "kmk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Limos Kalinga", + "Comment": "" + }, + { + "Id": "kml", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tanudan Kalinga", + "Comment": "" + }, + { + "Id": "kmm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kom (India)", + "Comment": "" + }, + { + "Id": "kmn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Awtuw", + "Comment": "" + }, + { + "Id": "kmo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kwoma", + "Comment": "" + }, + { + "Id": "kmp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gimme", + "Comment": "" + }, + { + "Id": "kmq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kwama", + "Comment": "" + }, + { + "Id": "kmr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Northern Kurdish", + "Comment": "" + }, + { + "Id": "kms", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kamasau", + "Comment": "" + }, + { + "Id": "kmt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kemtuik", + "Comment": "" + }, + { + "Id": "kmu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kanite", + "Comment": "" + }, + { + "Id": "kmv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Karip\u00FAna Creole French", + "Comment": "" + }, + { + "Id": "kmw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Komo (Democratic Republic of Congo)", + "Comment": "" + }, + { + "Id": "kmx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Waboda", + "Comment": "" + }, + { + "Id": "kmy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Koma", + "Comment": "" + }, + { + "Id": "kmz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Khorasani Turkish", + "Comment": "" + }, + { + "Id": "kna", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dera (Nigeria)", + "Comment": "" + }, + { + "Id": "knb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lubuagan Kalinga", + "Comment": "" + }, + { + "Id": "knc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Central Kanuri", + "Comment": "" + }, + { + "Id": "knd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Konda", + "Comment": "" + }, + { + "Id": "kne", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kankanaey", + "Comment": "" + }, + { + "Id": "knf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mankanya", + "Comment": "" + }, + { + "Id": "kng", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Koongo", + "Comment": "" + }, + { + "Id": "kni", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kanufi", + "Comment": "" + }, + { + "Id": "knj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Western Kanjobal", + "Comment": "" + }, + { + "Id": "knk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kuranko", + "Comment": "" + }, + { + "Id": "knl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Keninjal", + "Comment": "" + }, + { + "Id": "knm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kanamar\u00ED", + "Comment": "" + }, + { + "Id": "knn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Konkani (individual language)", + "Comment": "" + }, + { + "Id": "kno", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kono (Sierra Leone)", + "Comment": "" + }, + { + "Id": "knp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kwanja", + "Comment": "" + }, + { + "Id": "knq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kintaq", + "Comment": "" + }, + { + "Id": "knr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kaningra", + "Comment": "" + }, + { + "Id": "kns", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kensiu", + "Comment": "" + }, + { + "Id": "knt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Panoan Katuk\u00EDna", + "Comment": "" + }, + { + "Id": "knu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kono (Guinea)", + "Comment": "" + }, + { + "Id": "knv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tabo", + "Comment": "" + }, + { + "Id": "knw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kung-Ekoka", + "Comment": "" + }, + { + "Id": "knx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kendayan", + "Comment": "" + }, + { + "Id": "kny", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kanyok", + "Comment": "" + }, + { + "Id": "knz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kalams\u00E9", + "Comment": "" + }, + { + "Id": "koa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Konomala", + "Comment": "" + }, + { + "Id": "koc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Kpati", + "Comment": "" + }, + { + "Id": "kod", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kodi", + "Comment": "" + }, + { + "Id": "koe", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kacipo-Bale Suri", + "Comment": "" + }, + { + "Id": "kof", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Kubi", + "Comment": "" + }, + { + "Id": "kog", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Cogui", + "Comment": "" + }, + { + "Id": "koh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Koyo", + "Comment": "" + }, + { + "Id": "koi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Komi-Permyak", + "Comment": "" + }, + { + "Id": "kok", + "Part2B": "kok", + "Part2T": "kok", + "Part1": "", + "Scope": "M", + "LanguageType": "L", + "RefName": "Konkani (macrolanguage)", + "Comment": "" + }, + { + "Id": "kol", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kol (Papua New Guinea)", + "Comment": "" + }, + { + "Id": "kom", + "Part2B": "kom", + "Part2T": "kom", + "Part1": "kv", + "Scope": "M", + "LanguageType": "L", + "RefName": "Komi", + "Comment": "" + }, + { + "Id": "kon", + "Part2B": "kon", + "Part2T": "kon", + "Part1": "kg", + "Scope": "M", + "LanguageType": "L", + "RefName": "Kongo", + "Comment": "" + }, + { + "Id": "koo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Konzo", + "Comment": "" + }, + { + "Id": "kop", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Waube", + "Comment": "" + }, + { + "Id": "koq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kota (Gabon)", + "Comment": "" + }, + { + "Id": "kor", + "Part2B": "kor", + "Part2T": "kor", + "Part1": "ko", + "Scope": "I", + "LanguageType": "L", + "RefName": "Korean", + "Comment": "" + }, + { + "Id": "kos", + "Part2B": "kos", + "Part2T": "kos", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kosraean", + "Comment": "" + }, + { + "Id": "kot", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lagwan", + "Comment": "" + }, + { + "Id": "kou", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Koke", + "Comment": "" + }, + { + "Id": "kov", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kudu-Camo", + "Comment": "" + }, + { + "Id": "kow", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kugama", + "Comment": "" + }, + { + "Id": "koy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Koyukon", + "Comment": "" + }, + { + "Id": "koz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Korak", + "Comment": "" + }, + { + "Id": "kpa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kutto", + "Comment": "" + }, + { + "Id": "kpb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mullu Kurumba", + "Comment": "" + }, + { + "Id": "kpc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Curripaco", + "Comment": "" + }, + { + "Id": "kpd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Koba", + "Comment": "" + }, + { + "Id": "kpe", + "Part2B": "kpe", + "Part2T": "kpe", + "Part1": "", + "Scope": "M", + "LanguageType": "L", + "RefName": "Kpelle", + "Comment": "" + }, + { + "Id": "kpf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Komba", + "Comment": "" + }, + { + "Id": "kpg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kapingamarangi", + "Comment": "" + }, + { + "Id": "kph", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kplang", + "Comment": "" + }, + { + "Id": "kpi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kofei", + "Comment": "" + }, + { + "Id": "kpj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Karaj\u00E1", + "Comment": "" + }, + { + "Id": "kpk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kpan", + "Comment": "" + }, + { + "Id": "kpl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kpala", + "Comment": "" + }, + { + "Id": "kpm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Koho", + "Comment": "" + }, + { + "Id": "kpn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Kepkiriw\u00E1t", + "Comment": "" + }, + { + "Id": "kpo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ikposo", + "Comment": "" + }, + { + "Id": "kpq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Korupun-Sela", + "Comment": "" + }, + { + "Id": "kpr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Korafe-Yegha", + "Comment": "" + }, + { + "Id": "kps", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tehit", + "Comment": "" + }, + { + "Id": "kpt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Karata", + "Comment": "" + }, + { + "Id": "kpu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kafoa", + "Comment": "" + }, + { + "Id": "kpv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Komi-Zyrian", + "Comment": "" + }, + { + "Id": "kpw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kobon", + "Comment": "" + }, + { + "Id": "kpx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mountain Koiali", + "Comment": "" + }, + { + "Id": "kpy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Koryak", + "Comment": "" + }, + { + "Id": "kpz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kupsabiny", + "Comment": "" + }, + { + "Id": "kqa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mum", + "Comment": "" + }, + { + "Id": "kqb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kovai", + "Comment": "" + }, + { + "Id": "kqc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Doromu-Koki", + "Comment": "" + }, + { + "Id": "kqd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Koy Sanjaq Surat", + "Comment": "" + }, + { + "Id": "kqe", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kalagan", + "Comment": "" + }, + { + "Id": "kqf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kakabai", + "Comment": "" + }, + { + "Id": "kqg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Khe", + "Comment": "" + }, + { + "Id": "kqh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kisankasa", + "Comment": "" + }, + { + "Id": "kqi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Koitabu", + "Comment": "" + }, + { + "Id": "kqj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Koromira", + "Comment": "" + }, + { + "Id": "kqk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kotafon Gbe", + "Comment": "" + }, + { + "Id": "kql", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kyenele", + "Comment": "" + }, + { + "Id": "kqm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Khisa", + "Comment": "" + }, + { + "Id": "kqn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kaonde", + "Comment": "" + }, + { + "Id": "kqo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Eastern Krahn", + "Comment": "" + }, + { + "Id": "kqp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kimr\u00E9", + "Comment": "" + }, + { + "Id": "kqq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Krenak", + "Comment": "" + }, + { + "Id": "kqr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kimaragang", + "Comment": "" + }, + { + "Id": "kqs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Northern Kissi", + "Comment": "" + }, + { + "Id": "kqt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Klias River Kadazan", + "Comment": "" + }, + { + "Id": "kqu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Seroa", + "Comment": "" + }, + { + "Id": "kqv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Okolod", + "Comment": "" + }, + { + "Id": "kqw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kandas", + "Comment": "" + }, + { + "Id": "kqx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mser", + "Comment": "" + }, + { + "Id": "kqy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Koorete", + "Comment": "" + }, + { + "Id": "kqz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Korana", + "Comment": "" + }, + { + "Id": "kra", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kumhali", + "Comment": "" + }, + { + "Id": "krb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Karkin", + "Comment": "" + }, + { + "Id": "krc", + "Part2B": "krc", + "Part2T": "krc", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Karachay-Balkar", + "Comment": "" + }, + { + "Id": "krd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kairui-Midiki", + "Comment": "" + }, + { + "Id": "kre", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Panar\u00E1", + "Comment": "" + }, + { + "Id": "krf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Koro (Vanuatu)", + "Comment": "" + }, + { + "Id": "krh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kurama", + "Comment": "" + }, + { + "Id": "kri", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Krio", + "Comment": "" + }, + { + "Id": "krj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kinaray-A", + "Comment": "" + }, + { + "Id": "krk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Kerek", + "Comment": "" + }, + { + "Id": "krl", + "Part2B": "krl", + "Part2T": "krl", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Karelian", + "Comment": "" + }, + { + "Id": "krn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sapo", + "Comment": "" + }, + { + "Id": "krp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Durop", + "Comment": "" + }, + { + "Id": "krr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Krung", + "Comment": "" + }, + { + "Id": "krs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gbaya (Sudan)", + "Comment": "" + }, + { + "Id": "krt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tumari Kanuri", + "Comment": "" + }, + { + "Id": "kru", + "Part2B": "kru", + "Part2T": "kru", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kurukh", + "Comment": "" + }, + { + "Id": "krv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kavet", + "Comment": "" + }, + { + "Id": "krw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Western Krahn", + "Comment": "" + }, + { + "Id": "krx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Karon", + "Comment": "" + }, + { + "Id": "kry", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kryts", + "Comment": "" + }, + { + "Id": "krz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sota Kanum", + "Comment": "" + }, + { + "Id": "ksb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Shambala", + "Comment": "" + }, + { + "Id": "ksc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southern Kalinga", + "Comment": "" + }, + { + "Id": "ksd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kuanua", + "Comment": "" + }, + { + "Id": "kse", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kuni", + "Comment": "" + }, + { + "Id": "ksf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bafia", + "Comment": "" + }, + { + "Id": "ksg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kusaghe", + "Comment": "" + }, + { + "Id": "ksh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "K\u00F6lsch", + "Comment": "" + }, + { + "Id": "ksi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Krisa", + "Comment": "" + }, + { + "Id": "ksj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Uare", + "Comment": "" + }, + { + "Id": "ksk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kansa", + "Comment": "" + }, + { + "Id": "ksl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kumalu", + "Comment": "" + }, + { + "Id": "ksm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kumba", + "Comment": "" + }, + { + "Id": "ksn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kasiguranin", + "Comment": "" + }, + { + "Id": "kso", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kofa", + "Comment": "" + }, + { + "Id": "ksp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kaba", + "Comment": "" + }, + { + "Id": "ksq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kwaami", + "Comment": "" + }, + { + "Id": "ksr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Borong", + "Comment": "" + }, + { + "Id": "kss", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southern Kisi", + "Comment": "" + }, + { + "Id": "kst", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Winy\u00E9", + "Comment": "" + }, + { + "Id": "ksu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Khamyang", + "Comment": "" + }, + { + "Id": "ksv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kusu", + "Comment": "" + }, + { + "Id": "ksw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "S\u0027gaw Karen", + "Comment": "" + }, + { + "Id": "ksx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kedang", + "Comment": "" + }, + { + "Id": "ksy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kharia Thar", + "Comment": "" + }, + { + "Id": "ksz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kodaku", + "Comment": "" + }, + { + "Id": "kta", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Katua", + "Comment": "" + }, + { + "Id": "ktb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kambaata", + "Comment": "" + }, + { + "Id": "ktc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kholok", + "Comment": "" + }, + { + "Id": "ktd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kokata", + "Comment": "" + }, + { + "Id": "kte", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nubri", + "Comment": "" + }, + { + "Id": "ktf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kwami", + "Comment": "" + }, + { + "Id": "ktg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Kalkutung", + "Comment": "" + }, + { + "Id": "kth", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Karanga", + "Comment": "" + }, + { + "Id": "kti", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "North Muyu", + "Comment": "" + }, + { + "Id": "ktj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Plapo Krumen", + "Comment": "" + }, + { + "Id": "ktk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Kaniet", + "Comment": "" + }, + { + "Id": "ktl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Koroshi", + "Comment": "" + }, + { + "Id": "ktm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kurti", + "Comment": "" + }, + { + "Id": "ktn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kariti\u00E2na", + "Comment": "" + }, + { + "Id": "kto", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kuot", + "Comment": "" + }, + { + "Id": "ktp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kaduo", + "Comment": "" + }, + { + "Id": "ktq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Katabaga", + "Comment": "" + }, + { + "Id": "kts", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "South Muyu", + "Comment": "" + }, + { + "Id": "ktt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ketum", + "Comment": "" + }, + { + "Id": "ktu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kituba (Democratic Republic of Congo)", + "Comment": "" + }, + { + "Id": "ktv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Eastern Katu", + "Comment": "" + }, + { + "Id": "ktw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Kato", + "Comment": "" + }, + { + "Id": "ktx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kaxarar\u00ED", + "Comment": "" + }, + { + "Id": "kty", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kango (Bas-U\u00E9l\u00E9 District)", + "Comment": "" + }, + { + "Id": "ktz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ju\u01C0\u02BChoan", + "Comment": "" + }, + { + "Id": "kua", + "Part2B": "kua", + "Part2T": "kua", + "Part1": "kj", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kuanyama", + "Comment": "" + }, + { + "Id": "kub", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kutep", + "Comment": "" + }, + { + "Id": "kuc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kwinsu", + "Comment": "" + }, + { + "Id": "kud", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "\u0027Auhelawa", + "Comment": "" + }, + { + "Id": "kue", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kuman (Papua New Guinea)", + "Comment": "" + }, + { + "Id": "kuf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Western Katu", + "Comment": "" + }, + { + "Id": "kug", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kupa", + "Comment": "" + }, + { + "Id": "kuh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kushi", + "Comment": "" + }, + { + "Id": "kui", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kuik\u00FAro-Kalap\u00E1lo", + "Comment": "" + }, + { + "Id": "kuj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kuria", + "Comment": "" + }, + { + "Id": "kuk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kepo\u0027", + "Comment": "" + }, + { + "Id": "kul", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kulere", + "Comment": "" + }, + { + "Id": "kum", + "Part2B": "kum", + "Part2T": "kum", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kumyk", + "Comment": "" + }, + { + "Id": "kun", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kunama", + "Comment": "" + }, + { + "Id": "kuo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kumukio", + "Comment": "" + }, + { + "Id": "kup", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kunimaipa", + "Comment": "" + }, + { + "Id": "kuq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Karipuna", + "Comment": "" + }, + { + "Id": "kur", + "Part2B": "kur", + "Part2T": "kur", + "Part1": "ku", + "Scope": "M", + "LanguageType": "L", + "RefName": "Kurdish", + "Comment": "" + }, + { + "Id": "kus", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kusaal", + "Comment": "" + }, + { + "Id": "kut", + "Part2B": "kut", + "Part2T": "kut", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kutenai", + "Comment": "" + }, + { + "Id": "kuu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Upper Kuskokwim", + "Comment": "" + }, + { + "Id": "kuv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kur", + "Comment": "" + }, + { + "Id": "kuw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kpagua", + "Comment": "" + }, + { + "Id": "kux", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kukatja", + "Comment": "" + }, + { + "Id": "kuy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kuuku-Ya\u0027u", + "Comment": "" + }, + { + "Id": "kuz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Kunza", + "Comment": "" + }, + { + "Id": "kva", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bagvalal", + "Comment": "" + }, + { + "Id": "kvb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kubu", + "Comment": "" + }, + { + "Id": "kvc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kove", + "Comment": "" + }, + { + "Id": "kvd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kui (Indonesia)", + "Comment": "" + }, + { + "Id": "kve", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kalabakan", + "Comment": "" + }, + { + "Id": "kvf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kabalai", + "Comment": "" + }, + { + "Id": "kvg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kuni-Boazi", + "Comment": "" + }, + { + "Id": "kvh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Komodo", + "Comment": "" + }, + { + "Id": "kvi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kwang", + "Comment": "" + }, + { + "Id": "kvj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Psikye", + "Comment": "" + }, + { + "Id": "kvk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Korean Sign Language", + "Comment": "" + }, + { + "Id": "kvl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kayaw", + "Comment": "" + }, + { + "Id": "kvm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kendem", + "Comment": "" + }, + { + "Id": "kvn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Border Kuna", + "Comment": "" + }, + { + "Id": "kvo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dobel", + "Comment": "" + }, + { + "Id": "kvp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kompane", + "Comment": "" + }, + { + "Id": "kvq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Geba Karen", + "Comment": "" + }, + { + "Id": "kvr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kerinci", + "Comment": "" + }, + { + "Id": "kvt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lahta Karen", + "Comment": "" + }, + { + "Id": "kvu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yinbaw Karen", + "Comment": "" + }, + { + "Id": "kvv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kola", + "Comment": "" + }, + { + "Id": "kvw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wersing", + "Comment": "" + }, + { + "Id": "kvx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Parkari Koli", + "Comment": "" + }, + { + "Id": "kvy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yintale Karen", + "Comment": "" + }, + { + "Id": "kvz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tsakwambo", + "Comment": "" + }, + { + "Id": "kwa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "D\u00E2w", + "Comment": "" + }, + { + "Id": "kwb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kwa", + "Comment": "" + }, + { + "Id": "kwc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Likwala", + "Comment": "" + }, + { + "Id": "kwd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kwaio", + "Comment": "" + }, + { + "Id": "kwe", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kwerba", + "Comment": "" + }, + { + "Id": "kwf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kwara\u0027ae", + "Comment": "" + }, + { + "Id": "kwg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sara Kaba Deme", + "Comment": "" + }, + { + "Id": "kwh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kowiai", + "Comment": "" + }, + { + "Id": "kwi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Awa-Cuaiquer", + "Comment": "" + }, + { + "Id": "kwj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kwanga", + "Comment": "" + }, + { + "Id": "kwk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kwakiutl", + "Comment": "" + }, + { + "Id": "kwl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kofyar", + "Comment": "" + }, + { + "Id": "kwm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kwambi", + "Comment": "" + }, + { + "Id": "kwn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kwangali", + "Comment": "" + }, + { + "Id": "kwo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kwomtari", + "Comment": "" + }, + { + "Id": "kwp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kodia", + "Comment": "" + }, + { + "Id": "kwr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kwer", + "Comment": "" + }, + { + "Id": "kws", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kwese", + "Comment": "" + }, + { + "Id": "kwt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kwesten", + "Comment": "" + }, + { + "Id": "kwu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kwakum", + "Comment": "" + }, + { + "Id": "kwv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sara Kaba N\u00E1\u00E0", + "Comment": "" + }, + { + "Id": "kww", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kwinti", + "Comment": "" + }, + { + "Id": "kwx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Khirwar", + "Comment": "" + }, + { + "Id": "kwy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "San Salvador Kongo", + "Comment": "" + }, + { + "Id": "kwz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Kwadi", + "Comment": "" + }, + { + "Id": "kxa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kairiru", + "Comment": "" + }, + { + "Id": "kxb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Krobu", + "Comment": "" + }, + { + "Id": "kxc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Konso", + "Comment": "" + }, + { + "Id": "kxd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Brunei", + "Comment": "" + }, + { + "Id": "kxf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Manumanaw Karen", + "Comment": "" + }, + { + "Id": "kxh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Karo (Ethiopia)", + "Comment": "" + }, + { + "Id": "kxi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Keningau Murut", + "Comment": "" + }, + { + "Id": "kxj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kulfa", + "Comment": "" + }, + { + "Id": "kxk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Zayein Karen", + "Comment": "" + }, + { + "Id": "kxm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Northern Khmer", + "Comment": "" + }, + { + "Id": "kxn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kanowit-Tanjong Melanau", + "Comment": "" + }, + { + "Id": "kxo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Kano\u00E9", + "Comment": "" + }, + { + "Id": "kxp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wadiyara Koli", + "Comment": "" + }, + { + "Id": "kxq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sm\u00E4rky Kanum", + "Comment": "" + }, + { + "Id": "kxr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Koro (Papua New Guinea)", + "Comment": "" + }, + { + "Id": "kxs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kangjia", + "Comment": "" + }, + { + "Id": "kxt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Koiwat", + "Comment": "" + }, + { + "Id": "kxv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kuvi", + "Comment": "" + }, + { + "Id": "kxw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Konai", + "Comment": "" + }, + { + "Id": "kxx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Likuba", + "Comment": "" + }, + { + "Id": "kxy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kayong", + "Comment": "" + }, + { + "Id": "kxz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kerewo", + "Comment": "" + }, + { + "Id": "kya", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kwaya", + "Comment": "" + }, + { + "Id": "kyb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Butbut Kalinga", + "Comment": "" + }, + { + "Id": "kyc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kyaka", + "Comment": "" + }, + { + "Id": "kyd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Karey", + "Comment": "" + }, + { + "Id": "kye", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Krache", + "Comment": "" + }, + { + "Id": "kyf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kouya", + "Comment": "" + }, + { + "Id": "kyg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Keyagana", + "Comment": "" + }, + { + "Id": "kyh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Karok", + "Comment": "" + }, + { + "Id": "kyi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kiput", + "Comment": "" + }, + { + "Id": "kyj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Karao", + "Comment": "" + }, + { + "Id": "kyk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kamayo", + "Comment": "" + }, + { + "Id": "kyl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kalapuya", + "Comment": "" + }, + { + "Id": "kym", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kpatili", + "Comment": "" + }, + { + "Id": "kyn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Northern Binukidnon", + "Comment": "" + }, + { + "Id": "kyo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kelon", + "Comment": "" + }, + { + "Id": "kyp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kang", + "Comment": "" + }, + { + "Id": "kyq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kenga", + "Comment": "" + }, + { + "Id": "kyr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kuru\u00E1ya", + "Comment": "" + }, + { + "Id": "kys", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Baram Kayan", + "Comment": "" + }, + { + "Id": "kyt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kayagar", + "Comment": "" + }, + { + "Id": "kyu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Western Kayah", + "Comment": "" + }, + { + "Id": "kyv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kayort", + "Comment": "" + }, + { + "Id": "kyw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kudmali", + "Comment": "" + }, + { + "Id": "kyx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Rapoisi", + "Comment": "" + }, + { + "Id": "kyy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kambaira", + "Comment": "" + }, + { + "Id": "kyz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kayab\u00ED", + "Comment": "" + }, + { + "Id": "kza", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Western Karaboro", + "Comment": "" + }, + { + "Id": "kzb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kaibobo", + "Comment": "" + }, + { + "Id": "kzc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bondoukou Kulango", + "Comment": "" + }, + { + "Id": "kzd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kadai", + "Comment": "" + }, + { + "Id": "kze", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kosena", + "Comment": "" + }, + { + "Id": "kzf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Da\u0027a Kaili", + "Comment": "" + }, + { + "Id": "kzg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kikai", + "Comment": "" + }, + { + "Id": "kzi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kelabit", + "Comment": "" + }, + { + "Id": "kzk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Kazukuru", + "Comment": "" + }, + { + "Id": "kzl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kayeli", + "Comment": "" + }, + { + "Id": "kzm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kais", + "Comment": "" + }, + { + "Id": "kzn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kokola", + "Comment": "" + }, + { + "Id": "kzo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kaningi", + "Comment": "" + }, + { + "Id": "kzp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kaidipang", + "Comment": "" + }, + { + "Id": "kzq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kaike", + "Comment": "" + }, + { + "Id": "kzr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Karang", + "Comment": "" + }, + { + "Id": "kzs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sugut Dusun", + "Comment": "" + }, + { + "Id": "kzu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kayupulau", + "Comment": "" + }, + { + "Id": "kzv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Komyandaret", + "Comment": "" + }, + { + "Id": "kzw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Karir\u00ED-Xoc\u00F3", + "Comment": "" + }, + { + "Id": "kzx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Kamarian", + "Comment": "" + }, + { + "Id": "kzy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kango (Tshopo District)", + "Comment": "" + }, + { + "Id": "kzz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kalabra", + "Comment": "" + }, + { + "Id": "laa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southern Subanen", + "Comment": "" + }, + { + "Id": "lab", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Linear A", + "Comment": "" + }, + { + "Id": "lac", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lacandon", + "Comment": "" + }, + { + "Id": "lad", + "Part2B": "lad", + "Part2T": "lad", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ladino", + "Comment": "" + }, + { + "Id": "lae", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pattani", + "Comment": "" + }, + { + "Id": "laf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lafofa", + "Comment": "" + }, + { + "Id": "lag", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Rangi", + "Comment": "" + }, + { + "Id": "lah", + "Part2B": "lah", + "Part2T": "lah", + "Part1": "", + "Scope": "M", + "LanguageType": "L", + "RefName": "Lahnda", + "Comment": "" + }, + { + "Id": "lai", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lambya", + "Comment": "" + }, + { + "Id": "laj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lango (Uganda)", + "Comment": "" + }, + { + "Id": "lal", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lalia", + "Comment": "" + }, + { + "Id": "lam", + "Part2B": "lam", + "Part2T": "lam", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lamba", + "Comment": "" + }, + { + "Id": "lan", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Laru", + "Comment": "" + }, + { + "Id": "lao", + "Part2B": "lao", + "Part2T": "lao", + "Part1": "lo", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lao", + "Comment": "" + }, + { + "Id": "lap", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Laka (Chad)", + "Comment": "" + }, + { + "Id": "laq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Qabiao", + "Comment": "" + }, + { + "Id": "lar", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Larteh", + "Comment": "" + }, + { + "Id": "las", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lama (Togo)", + "Comment": "" + }, + { + "Id": "lat", + "Part2B": "lat", + "Part2T": "lat", + "Part1": "la", + "Scope": "I", + "LanguageType": "H", + "RefName": "Latin", + "Comment": "" + }, + { + "Id": "lau", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Laba", + "Comment": "" + }, + { + "Id": "lav", + "Part2B": "lav", + "Part2T": "lav", + "Part1": "lv", + "Scope": "M", + "LanguageType": "L", + "RefName": "Latvian", + "Comment": "" + }, + { + "Id": "law", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lauje", + "Comment": "" + }, + { + "Id": "lax", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tiwa", + "Comment": "" + }, + { + "Id": "lay", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lama Bai", + "Comment": "" + }, + { + "Id": "laz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Aribwatsa", + "Comment": "" + }, + { + "Id": "lbb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Label", + "Comment": "" + }, + { + "Id": "lbc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lakkia", + "Comment": "" + }, + { + "Id": "lbe", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lak", + "Comment": "" + }, + { + "Id": "lbf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tinani", + "Comment": "" + }, + { + "Id": "lbg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Laopang", + "Comment": "" + }, + { + "Id": "lbi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "La\u0027bi", + "Comment": "" + }, + { + "Id": "lbj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ladakhi", + "Comment": "" + }, + { + "Id": "lbk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Central Bontok", + "Comment": "" + }, + { + "Id": "lbl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Libon Bikol", + "Comment": "" + }, + { + "Id": "lbm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lodhi", + "Comment": "" + }, + { + "Id": "lbn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Rmeet", + "Comment": "" + }, + { + "Id": "lbo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Laven", + "Comment": "" + }, + { + "Id": "lbq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wampar", + "Comment": "" + }, + { + "Id": "lbr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lohorung", + "Comment": "" + }, + { + "Id": "lbs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Libyan Sign Language", + "Comment": "" + }, + { + "Id": "lbt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lachi", + "Comment": "" + }, + { + "Id": "lbu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Labu", + "Comment": "" + }, + { + "Id": "lbv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lavatbura-Lamusong", + "Comment": "" + }, + { + "Id": "lbw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tolaki", + "Comment": "" + }, + { + "Id": "lbx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lawangan", + "Comment": "" + }, + { + "Id": "lby", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Lamalama", + "Comment": "" + }, + { + "Id": "lbz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lardil", + "Comment": "" + }, + { + "Id": "lcc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Legenyem", + "Comment": "" + }, + { + "Id": "lcd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lola", + "Comment": "" + }, + { + "Id": "lce", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Loncong", + "Comment": "" + }, + { + "Id": "lcf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lubu", + "Comment": "" + }, + { + "Id": "lch", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Luchazi", + "Comment": "" + }, + { + "Id": "lcl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lisela", + "Comment": "" + }, + { + "Id": "lcm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tungag", + "Comment": "" + }, + { + "Id": "lcp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Western Lawa", + "Comment": "" + }, + { + "Id": "lcq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Luhu", + "Comment": "" + }, + { + "Id": "lcs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lisabata-Nuniali", + "Comment": "" + }, + { + "Id": "lda", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kla-Dan", + "Comment": "" + }, + { + "Id": "ldb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Du\u0303ya", + "Comment": "" + }, + { + "Id": "ldd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Luri", + "Comment": "" + }, + { + "Id": "ldg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lenyima", + "Comment": "" + }, + { + "Id": "ldh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lamja-Dengsa-Tola", + "Comment": "" + }, + { + "Id": "ldi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Laari", + "Comment": "" + }, + { + "Id": "ldj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lemoro", + "Comment": "" + }, + { + "Id": "ldk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Leelau", + "Comment": "" + }, + { + "Id": "ldl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kaan", + "Comment": "" + }, + { + "Id": "ldm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Landoma", + "Comment": "" + }, + { + "Id": "ldn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "C", + "RefName": "L\u00E1adan", + "Comment": "" + }, + { + "Id": "ldo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Loo", + "Comment": "" + }, + { + "Id": "ldp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tso", + "Comment": "" + }, + { + "Id": "ldq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lufu", + "Comment": "" + }, + { + "Id": "lea", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lega-Shabunda", + "Comment": "" + }, + { + "Id": "leb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lala-Bisa", + "Comment": "" + }, + { + "Id": "lec", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Leco", + "Comment": "" + }, + { + "Id": "led", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lendu", + "Comment": "" + }, + { + "Id": "lee", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ly\u00E9l\u00E9", + "Comment": "" + }, + { + "Id": "lef", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lelemi", + "Comment": "" + }, + { + "Id": "leh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lenje", + "Comment": "" + }, + { + "Id": "lei", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lemio", + "Comment": "" + }, + { + "Id": "lej", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lengola", + "Comment": "" + }, + { + "Id": "lek", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Leipon", + "Comment": "" + }, + { + "Id": "lel", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lele (Democratic Republic of Congo)", + "Comment": "" + }, + { + "Id": "lem", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nomaande", + "Comment": "" + }, + { + "Id": "len", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Lenca", + "Comment": "" + }, + { + "Id": "leo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Leti (Cameroon)", + "Comment": "" + }, + { + "Id": "lep", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lepcha", + "Comment": "" + }, + { + "Id": "leq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lembena", + "Comment": "" + }, + { + "Id": "ler", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lenkau", + "Comment": "" + }, + { + "Id": "les", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lese", + "Comment": "" + }, + { + "Id": "let", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lesing-Gelimi", + "Comment": "" + }, + { + "Id": "leu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kara (Papua New Guinea)", + "Comment": "" + }, + { + "Id": "lev", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lamma", + "Comment": "" + }, + { + "Id": "lew", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ledo Kaili", + "Comment": "" + }, + { + "Id": "lex", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Luang", + "Comment": "" + }, + { + "Id": "ley", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lemolang", + "Comment": "" + }, + { + "Id": "lez", + "Part2B": "lez", + "Part2T": "lez", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lezghian", + "Comment": "" + }, + { + "Id": "lfa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lefa", + "Comment": "" + }, + { + "Id": "lfn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "C", + "RefName": "Lingua Franca Nova", + "Comment": "" + }, + { + "Id": "lga", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lungga", + "Comment": "" + }, + { + "Id": "lgb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Laghu", + "Comment": "" + }, + { + "Id": "lgg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lugbara", + "Comment": "" + }, + { + "Id": "lgh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Laghuu", + "Comment": "" + }, + { + "Id": "lgi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lengilu", + "Comment": "" + }, + { + "Id": "lgk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lingarak", + "Comment": "" + }, + { + "Id": "lgl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wala", + "Comment": "" + }, + { + "Id": "lgm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lega-Mwenga", + "Comment": "" + }, + { + "Id": "lgn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "T\u0027apo", + "Comment": "" + }, + { + "Id": "lgo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lango (South Sudan)", + "Comment": "" + }, + { + "Id": "lgq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Logba", + "Comment": "" + }, + { + "Id": "lgr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lengo", + "Comment": "" + }, + { + "Id": "lgs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Guinea-Bissau Sign Language", + "Comment": "" + }, + { + "Id": "lgt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pahi", + "Comment": "" + }, + { + "Id": "lgu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Longgu", + "Comment": "" + }, + { + "Id": "lgz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ligenza", + "Comment": "" + }, + { + "Id": "lha", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Laha (Viet Nam)", + "Comment": "" + }, + { + "Id": "lhh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Laha (Indonesia)", + "Comment": "" + }, + { + "Id": "lhi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lahu Shi", + "Comment": "" + }, + { + "Id": "lhl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lahul Lohar", + "Comment": "" + }, + { + "Id": "lhm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lhomi", + "Comment": "" + }, + { + "Id": "lhn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lahanan", + "Comment": "" + }, + { + "Id": "lhp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lhokpu", + "Comment": "" + }, + { + "Id": "lhs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Mlahs\u00F6", + "Comment": "" + }, + { + "Id": "lht", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lo-Toga", + "Comment": "" + }, + { + "Id": "lhu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lahu", + "Comment": "" + }, + { + "Id": "lia", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "West-Central Limba", + "Comment": "" + }, + { + "Id": "lib", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Likum", + "Comment": "" + }, + { + "Id": "lic", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hlai", + "Comment": "" + }, + { + "Id": "lid", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nyindrou", + "Comment": "" + }, + { + "Id": "lie", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Likila", + "Comment": "" + }, + { + "Id": "lif", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Limbu", + "Comment": "" + }, + { + "Id": "lig", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ligbi", + "Comment": "" + }, + { + "Id": "lih", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lihir", + "Comment": "" + }, + { + "Id": "lij", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ligurian", + "Comment": "" + }, + { + "Id": "lik", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lika", + "Comment": "" + }, + { + "Id": "lil", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lillooet", + "Comment": "" + }, + { + "Id": "lim", + "Part2B": "lim", + "Part2T": "lim", + "Part1": "li", + "Scope": "I", + "LanguageType": "L", + "RefName": "Limburgan", + "Comment": "" + }, + { + "Id": "lin", + "Part2B": "lin", + "Part2T": "lin", + "Part1": "ln", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lingala", + "Comment": "" + }, + { + "Id": "lio", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Liki", + "Comment": "" + }, + { + "Id": "lip", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sekpele", + "Comment": "" + }, + { + "Id": "liq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Libido", + "Comment": "" + }, + { + "Id": "lir", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Liberian English", + "Comment": "" + }, + { + "Id": "lis", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lisu", + "Comment": "" + }, + { + "Id": "lit", + "Part2B": "lit", + "Part2T": "lit", + "Part1": "lt", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lithuanian", + "Comment": "" + }, + { + "Id": "liu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Logorik", + "Comment": "" + }, + { + "Id": "liv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Liv", + "Comment": "" + }, + { + "Id": "liw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Col", + "Comment": "" + }, + { + "Id": "lix", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Liabuku", + "Comment": "" + }, + { + "Id": "liy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Banda-Bambari", + "Comment": "" + }, + { + "Id": "liz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Libinza", + "Comment": "" + }, + { + "Id": "lja", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Golpa", + "Comment": "" + }, + { + "Id": "lje", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Rampi", + "Comment": "" + }, + { + "Id": "lji", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Laiyolo", + "Comment": "" + }, + { + "Id": "ljl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Li\u0027o", + "Comment": "" + }, + { + "Id": "ljp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lampung Api", + "Comment": "" + }, + { + "Id": "ljw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yirandali", + "Comment": "" + }, + { + "Id": "ljx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Yuru", + "Comment": "" + }, + { + "Id": "lka", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lakalei", + "Comment": "" + }, + { + "Id": "lkb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kabras", + "Comment": "" + }, + { + "Id": "lkc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kucong", + "Comment": "" + }, + { + "Id": "lkd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lakond\u00EA", + "Comment": "" + }, + { + "Id": "lke", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kenyi", + "Comment": "" + }, + { + "Id": "lkh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lakha", + "Comment": "" + }, + { + "Id": "lki", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Laki", + "Comment": "" + }, + { + "Id": "lkj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Remun", + "Comment": "" + }, + { + "Id": "lkl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Laeko-Libuat", + "Comment": "" + }, + { + "Id": "lkm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Kalaamaya", + "Comment": "" + }, + { + "Id": "lkn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lakon", + "Comment": "" + }, + { + "Id": "lko", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Khayo", + "Comment": "" + }, + { + "Id": "lkr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "P\u00E4ri", + "Comment": "" + }, + { + "Id": "lks", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kisa", + "Comment": "" + }, + { + "Id": "lkt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lakota", + "Comment": "" + }, + { + "Id": "lku", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Kungkari", + "Comment": "" + }, + { + "Id": "lky", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lokoya", + "Comment": "" + }, + { + "Id": "lla", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lala-Roba", + "Comment": "" + }, + { + "Id": "llb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lolo", + "Comment": "" + }, + { + "Id": "llc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lele (Guinea)", + "Comment": "" + }, + { + "Id": "lld", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ladin", + "Comment": "" + }, + { + "Id": "lle", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lele (Papua New Guinea)", + "Comment": "" + }, + { + "Id": "llf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Hermit", + "Comment": "" + }, + { + "Id": "llg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lole", + "Comment": "" + }, + { + "Id": "llh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lamu", + "Comment": "" + }, + { + "Id": "lli", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Teke-Laali", + "Comment": "" + }, + { + "Id": "llj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Ladji Ladji", + "Comment": "" + }, + { + "Id": "llk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Lelak", + "Comment": "" + }, + { + "Id": "lll", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lilau", + "Comment": "" + }, + { + "Id": "llm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lasalimu", + "Comment": "" + }, + { + "Id": "lln", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lele (Chad)", + "Comment": "" + }, + { + "Id": "llp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "North Efate", + "Comment": "" + }, + { + "Id": "llq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lolak", + "Comment": "" + }, + { + "Id": "lls", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lithuanian Sign Language", + "Comment": "" + }, + { + "Id": "llu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lau", + "Comment": "" + }, + { + "Id": "llx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lauan", + "Comment": "" + }, + { + "Id": "lma", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "East Limba", + "Comment": "" + }, + { + "Id": "lmb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Merei", + "Comment": "" + }, + { + "Id": "lmc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Limilngan", + "Comment": "" + }, + { + "Id": "lmd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lumun", + "Comment": "" + }, + { + "Id": "lme", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "P\u00E9v\u00E9", + "Comment": "" + }, + { + "Id": "lmf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "South Lembata", + "Comment": "" + }, + { + "Id": "lmg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lamogai", + "Comment": "" + }, + { + "Id": "lmh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lambichhong", + "Comment": "" + }, + { + "Id": "lmi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lombi", + "Comment": "" + }, + { + "Id": "lmj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "West Lembata", + "Comment": "" + }, + { + "Id": "lmk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lamkang", + "Comment": "" + }, + { + "Id": "lml", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hano", + "Comment": "" + }, + { + "Id": "lmn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lambadi", + "Comment": "" + }, + { + "Id": "lmo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lombard", + "Comment": "" + }, + { + "Id": "lmp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Limbum", + "Comment": "" + }, + { + "Id": "lmq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lamatuka", + "Comment": "" + }, + { + "Id": "lmr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lamalera", + "Comment": "" + }, + { + "Id": "lmu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lamenu", + "Comment": "" + }, + { + "Id": "lmv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lomaiviti", + "Comment": "" + }, + { + "Id": "lmw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lake Miwok", + "Comment": "" + }, + { + "Id": "lmx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Laimbue", + "Comment": "" + }, + { + "Id": "lmy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lamboya", + "Comment": "" + }, + { + "Id": "lna", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Langbashe", + "Comment": "" + }, + { + "Id": "lnb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mbalanhu", + "Comment": "" + }, + { + "Id": "lnd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lundayeh", + "Comment": "" + }, + { + "Id": "lng", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Langobardic", + "Comment": "" + }, + { + "Id": "lnh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lanoh", + "Comment": "" + }, + { + "Id": "lni", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Daantanai\u0027", + "Comment": "" + }, + { + "Id": "lnj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Leningitij", + "Comment": "" + }, + { + "Id": "lnl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "South Central Banda", + "Comment": "" + }, + { + "Id": "lnm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Langam", + "Comment": "" + }, + { + "Id": "lnn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lorediakarkar", + "Comment": "" + }, + { + "Id": "lns", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lamnso\u0027", + "Comment": "" + }, + { + "Id": "lnu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Longuda", + "Comment": "" + }, + { + "Id": "lnw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Lanima", + "Comment": "" + }, + { + "Id": "lnz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lonzo", + "Comment": "" + }, + { + "Id": "loa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Loloda", + "Comment": "" + }, + { + "Id": "lob", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lobi", + "Comment": "" + }, + { + "Id": "loc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Inonhan", + "Comment": "" + }, + { + "Id": "loe", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Saluan", + "Comment": "" + }, + { + "Id": "lof", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Logol", + "Comment": "" + }, + { + "Id": "log", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Logo", + "Comment": "" + }, + { + "Id": "loh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Laarim", + "Comment": "" + }, + { + "Id": "loi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Loma (C\u00F4te d\u0027Ivoire)", + "Comment": "" + }, + { + "Id": "loj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lou", + "Comment": "" + }, + { + "Id": "lok", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Loko", + "Comment": "" + }, + { + "Id": "lol", + "Part2B": "lol", + "Part2T": "lol", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mongo", + "Comment": "" + }, + { + "Id": "lom", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Loma (Liberia)", + "Comment": "" + }, + { + "Id": "lon", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Malawi Lomwe", + "Comment": "" + }, + { + "Id": "loo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lombo", + "Comment": "" + }, + { + "Id": "lop", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lopa", + "Comment": "" + }, + { + "Id": "loq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lobala", + "Comment": "" + }, + { + "Id": "lor", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "T\u00E9\u00E9n", + "Comment": "" + }, + { + "Id": "los", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Loniu", + "Comment": "" + }, + { + "Id": "lot", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Otuho", + "Comment": "" + }, + { + "Id": "lou", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Louisiana Creole", + "Comment": "" + }, + { + "Id": "lov", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lopi", + "Comment": "" + }, + { + "Id": "low", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tampias Lobu", + "Comment": "" + }, + { + "Id": "lox", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Loun", + "Comment": "" + }, + { + "Id": "loy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Loke", + "Comment": "" + }, + { + "Id": "loz", + "Part2B": "loz", + "Part2T": "loz", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lozi", + "Comment": "" + }, + { + "Id": "lpa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lelepa", + "Comment": "" + }, + { + "Id": "lpe", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lepki", + "Comment": "" + }, + { + "Id": "lpn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Long Phuri Naga", + "Comment": "" + }, + { + "Id": "lpo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lipo", + "Comment": "" + }, + { + "Id": "lpx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lopit", + "Comment": "" + }, + { + "Id": "lqr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Logir", + "Comment": "" + }, + { + "Id": "lra", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Rara Bakati\u0027", + "Comment": "" + }, + { + "Id": "lrc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Northern Luri", + "Comment": "" + }, + { + "Id": "lre", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Laurentian", + "Comment": "" + }, + { + "Id": "lrg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Laragia", + "Comment": "" + }, + { + "Id": "lri", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Marachi", + "Comment": "" + }, + { + "Id": "lrk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Loarki", + "Comment": "" + }, + { + "Id": "lrl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lari", + "Comment": "" + }, + { + "Id": "lrm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Marama", + "Comment": "" + }, + { + "Id": "lrn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lorang", + "Comment": "" + }, + { + "Id": "lro", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Laro", + "Comment": "" + }, + { + "Id": "lrr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southern Yamphu", + "Comment": "" + }, + { + "Id": "lrt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Larantuka Malay", + "Comment": "" + }, + { + "Id": "lrv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Larevat", + "Comment": "" + }, + { + "Id": "lrz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lemerig", + "Comment": "" + }, + { + "Id": "lsa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lasgerdi", + "Comment": "" + }, + { + "Id": "lsb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Burundian Sign Language", + "Comment": "" + }, + { + "Id": "lsc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Albarradas Sign Language", + "Comment": "" + }, + { + "Id": "lsd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lishana Deni", + "Comment": "" + }, + { + "Id": "lse", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lusengo", + "Comment": "" + }, + { + "Id": "lsh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lish", + "Comment": "" + }, + { + "Id": "lsi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lashi", + "Comment": "" + }, + { + "Id": "lsl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Latvian Sign Language", + "Comment": "" + }, + { + "Id": "lsm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Saamia", + "Comment": "" + }, + { + "Id": "lsn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tibetan Sign Language", + "Comment": "" + }, + { + "Id": "lso", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Laos Sign Language", + "Comment": "" + }, + { + "Id": "lsp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Panamanian Sign Language", + "Comment": "" + }, + { + "Id": "lsr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Aruop", + "Comment": "" + }, + { + "Id": "lss", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lasi", + "Comment": "" + }, + { + "Id": "lst", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Trinidad and Tobago Sign Language", + "Comment": "" + }, + { + "Id": "lsv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sivia Sign Language", + "Comment": "" + }, + { + "Id": "lsw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Seychelles Sign Language", + "Comment": "" + }, + { + "Id": "lsy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mauritian Sign Language", + "Comment": "" + }, + { + "Id": "ltc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Late Middle Chinese", + "Comment": "" + }, + { + "Id": "ltg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Latgalian", + "Comment": "" + }, + { + "Id": "lth", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Thur", + "Comment": "" + }, + { + "Id": "lti", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Leti (Indonesia)", + "Comment": "" + }, + { + "Id": "ltn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Latund\u00EA", + "Comment": "" + }, + { + "Id": "lto", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tsotso", + "Comment": "" + }, + { + "Id": "lts", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tachoni", + "Comment": "" + }, + { + "Id": "ltu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Latu", + "Comment": "" + }, + { + "Id": "ltz", + "Part2B": "ltz", + "Part2T": "ltz", + "Part1": "lb", + "Scope": "I", + "LanguageType": "L", + "RefName": "Luxembourgish", + "Comment": "" + }, + { + "Id": "lua", + "Part2B": "lua", + "Part2T": "lua", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Luba-Lulua", + "Comment": "" + }, + { + "Id": "lub", + "Part2B": "lub", + "Part2T": "lub", + "Part1": "lu", + "Scope": "I", + "LanguageType": "L", + "RefName": "Luba-Katanga", + "Comment": "" + }, + { + "Id": "luc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Aringa", + "Comment": "" + }, + { + "Id": "lud", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ludian", + "Comment": "" + }, + { + "Id": "lue", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Luvale", + "Comment": "" + }, + { + "Id": "luf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Laua", + "Comment": "" + }, + { + "Id": "lug", + "Part2B": "lug", + "Part2T": "lug", + "Part1": "lg", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ganda", + "Comment": "" + }, + { + "Id": "luh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Leizhou Chinese", + "Comment": "" + }, + { + "Id": "lui", + "Part2B": "lui", + "Part2T": "lui", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Luiseno", + "Comment": "" + }, + { + "Id": "luj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Luna", + "Comment": "" + }, + { + "Id": "luk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lunanakha", + "Comment": "" + }, + { + "Id": "lul", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Olu\u0027bo", + "Comment": "" + }, + { + "Id": "lum", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Luimbi", + "Comment": "" + }, + { + "Id": "lun", + "Part2B": "lun", + "Part2T": "lun", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lunda", + "Comment": "" + }, + { + "Id": "luo", + "Part2B": "luo", + "Part2T": "luo", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Luo (Kenya and Tanzania)", + "Comment": "" + }, + { + "Id": "lup", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lumbu", + "Comment": "" + }, + { + "Id": "luq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lucumi", + "Comment": "" + }, + { + "Id": "lur", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Laura", + "Comment": "" + }, + { + "Id": "lus", + "Part2B": "lus", + "Part2T": "lus", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lushai", + "Comment": "" + }, + { + "Id": "lut", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lushootseed", + "Comment": "" + }, + { + "Id": "luu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lumba-Yakkha", + "Comment": "" + }, + { + "Id": "luv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Luwati", + "Comment": "" + }, + { + "Id": "luw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Luo (Cameroon)", + "Comment": "" + }, + { + "Id": "luy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "M", + "LanguageType": "L", + "RefName": "Luyia", + "Comment": "" + }, + { + "Id": "luz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southern Luri", + "Comment": "" + }, + { + "Id": "lva", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Maku\u0027a", + "Comment": "" + }, + { + "Id": "lvi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lavi", + "Comment": "" + }, + { + "Id": "lvk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lavukaleve", + "Comment": "" + }, + { + "Id": "lvl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lwel", + "Comment": "" + }, + { + "Id": "lvs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Standard Latvian", + "Comment": "" + }, + { + "Id": "lvu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Levuka", + "Comment": "" + }, + { + "Id": "lwa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lwalu", + "Comment": "" + }, + { + "Id": "lwe", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lewo Eleng", + "Comment": "" + }, + { + "Id": "lwg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wanga", + "Comment": "" + }, + { + "Id": "lwh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "White Lachi", + "Comment": "" + }, + { + "Id": "lwl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Eastern Lawa", + "Comment": "" + }, + { + "Id": "lwm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Laomian", + "Comment": "" + }, + { + "Id": "lwo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Luwo", + "Comment": "" + }, + { + "Id": "lws", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Malawian Sign Language", + "Comment": "" + }, + { + "Id": "lwt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lewotobi", + "Comment": "" + }, + { + "Id": "lwu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lawu", + "Comment": "" + }, + { + "Id": "lww", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lewo", + "Comment": "" + }, + { + "Id": "lxm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lakurumau", + "Comment": "" + }, + { + "Id": "lya", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Layakha", + "Comment": "" + }, + { + "Id": "lyg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lyngngam", + "Comment": "" + }, + { + "Id": "lyn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Luyana", + "Comment": "" + }, + { + "Id": "lzh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Literary Chinese", + "Comment": "" + }, + { + "Id": "lzl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Litzlitz", + "Comment": "" + }, + { + "Id": "lzn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Leinong Naga", + "Comment": "" + }, + { + "Id": "lzz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Laz", + "Comment": "" + }, + { + "Id": "maa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "San Jer\u00F3nimo Tec\u00F3atl Mazatec", + "Comment": "" + }, + { + "Id": "mab", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yutanduchi Mixtec", + "Comment": "" + }, + { + "Id": "mad", + "Part2B": "mad", + "Part2T": "mad", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Madurese", + "Comment": "" + }, + { + "Id": "mae", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bo-Rukul", + "Comment": "" + }, + { + "Id": "maf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mafa", + "Comment": "" + }, + { + "Id": "mag", + "Part2B": "mag", + "Part2T": "mag", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Magahi", + "Comment": "" + }, + { + "Id": "mah", + "Part2B": "mah", + "Part2T": "mah", + "Part1": "mh", + "Scope": "I", + "LanguageType": "L", + "RefName": "Marshallese", + "Comment": "" + }, + { + "Id": "mai", + "Part2B": "mai", + "Part2T": "mai", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Maithili", + "Comment": "" + }, + { + "Id": "maj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Jalapa De D\u00EDaz Mazatec", + "Comment": "" + }, + { + "Id": "mak", + "Part2B": "mak", + "Part2T": "mak", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Makasar", + "Comment": "" + }, + { + "Id": "mal", + "Part2B": "mal", + "Part2T": "mal", + "Part1": "ml", + "Scope": "I", + "LanguageType": "L", + "RefName": "Malayalam", + "Comment": "" + }, + { + "Id": "mam", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mam", + "Comment": "" + }, + { + "Id": "man", + "Part2B": "man", + "Part2T": "man", + "Part1": "", + "Scope": "M", + "LanguageType": "L", + "RefName": "Mandingo", + "Comment": "" + }, + { + "Id": "maq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chiquihuitl\u00E1n Mazatec", + "Comment": "" + }, + { + "Id": "mar", + "Part2B": "mar", + "Part2T": "mar", + "Part1": "mr", + "Scope": "I", + "LanguageType": "L", + "RefName": "Marathi", + "Comment": "" + }, + { + "Id": "mas", + "Part2B": "mas", + "Part2T": "mas", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Masai", + "Comment": "" + }, + { + "Id": "mat", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "San Francisco Matlatzinca", + "Comment": "" + }, + { + "Id": "mau", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Huautla Mazatec", + "Comment": "" + }, + { + "Id": "mav", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sater\u00E9-Maw\u00E9", + "Comment": "" + }, + { + "Id": "maw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mampruli", + "Comment": "" + }, + { + "Id": "max", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "North Moluccan Malay", + "Comment": "" + }, + { + "Id": "maz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Central Mazahua", + "Comment": "" + }, + { + "Id": "mba", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Higaonon", + "Comment": "" + }, + { + "Id": "mbb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Western Bukidnon Manobo", + "Comment": "" + }, + { + "Id": "mbc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Macushi", + "Comment": "" + }, + { + "Id": "mbd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dibabawon Manobo", + "Comment": "" + }, + { + "Id": "mbe", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Molale", + "Comment": "" + }, + { + "Id": "mbf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Baba Malay", + "Comment": "" + }, + { + "Id": "mbh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mangseng", + "Comment": "" + }, + { + "Id": "mbi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ilianen Manobo", + "Comment": "" + }, + { + "Id": "mbj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nad\u00EBb", + "Comment": "" + }, + { + "Id": "mbk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Malol", + "Comment": "" + }, + { + "Id": "mbl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Maxakal\u00ED", + "Comment": "" + }, + { + "Id": "mbm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ombamba", + "Comment": "" + }, + { + "Id": "mbn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Macagu\u00E1n", + "Comment": "" + }, + { + "Id": "mbo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mbo (Cameroon)", + "Comment": "" + }, + { + "Id": "mbp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Malayo", + "Comment": "" + }, + { + "Id": "mbq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Maisin", + "Comment": "" + }, + { + "Id": "mbr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nukak Mak\u00FA", + "Comment": "" + }, + { + "Id": "mbs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sarangani Manobo", + "Comment": "" + }, + { + "Id": "mbt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Matigsalug Manobo", + "Comment": "" + }, + { + "Id": "mbu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mbula-Bwazza", + "Comment": "" + }, + { + "Id": "mbv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mbulungish", + "Comment": "" + }, + { + "Id": "mbw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Maring", + "Comment": "" + }, + { + "Id": "mbx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mari (East Sepik Province)", + "Comment": "" + }, + { + "Id": "mby", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Memoni", + "Comment": "" + }, + { + "Id": "mbz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Amoltepec Mixtec", + "Comment": "" + }, + { + "Id": "mca", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Maca", + "Comment": "" + }, + { + "Id": "mcb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Machiguenga", + "Comment": "" + }, + { + "Id": "mcc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bitur", + "Comment": "" + }, + { + "Id": "mcd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sharanahua", + "Comment": "" + }, + { + "Id": "mce", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Itundujia Mixtec", + "Comment": "" + }, + { + "Id": "mcf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mats\u00E9s", + "Comment": "" + }, + { + "Id": "mcg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mapoyo", + "Comment": "" + }, + { + "Id": "mch", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Maquiritari", + "Comment": "" + }, + { + "Id": "mci", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mese", + "Comment": "" + }, + { + "Id": "mcj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mvanip", + "Comment": "" + }, + { + "Id": "mck", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mbunda", + "Comment": "" + }, + { + "Id": "mcl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Macaguaje", + "Comment": "" + }, + { + "Id": "mcm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Malaccan Creole Portuguese", + "Comment": "" + }, + { + "Id": "mcn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Masana", + "Comment": "" + }, + { + "Id": "mco", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Coatl\u00E1n Mixe", + "Comment": "" + }, + { + "Id": "mcp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Makaa", + "Comment": "" + }, + { + "Id": "mcq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ese", + "Comment": "" + }, + { + "Id": "mcr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Menya", + "Comment": "" + }, + { + "Id": "mcs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mambai", + "Comment": "" + }, + { + "Id": "mct", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mengisa", + "Comment": "" + }, + { + "Id": "mcu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Cameroon Mambila", + "Comment": "" + }, + { + "Id": "mcv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Minanibai", + "Comment": "" + }, + { + "Id": "mcw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mawa (Chad)", + "Comment": "" + }, + { + "Id": "mcx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mpiemo", + "Comment": "" + }, + { + "Id": "mcy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "South Watut", + "Comment": "" + }, + { + "Id": "mcz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mawan", + "Comment": "" + }, + { + "Id": "mda", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mada (Nigeria)", + "Comment": "" + }, + { + "Id": "mdb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Morigi", + "Comment": "" + }, + { + "Id": "mdc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Male (Papua New Guinea)", + "Comment": "" + }, + { + "Id": "mdd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mbum", + "Comment": "" + }, + { + "Id": "mde", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Maba (Chad)", + "Comment": "" + }, + { + "Id": "mdf", + "Part2B": "mdf", + "Part2T": "mdf", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Moksha", + "Comment": "" + }, + { + "Id": "mdg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Massalat", + "Comment": "" + }, + { + "Id": "mdh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Maguindanaon", + "Comment": "" + }, + { + "Id": "mdi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mamvu", + "Comment": "" + }, + { + "Id": "mdj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mangbetu", + "Comment": "" + }, + { + "Id": "mdk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mangbutu", + "Comment": "" + }, + { + "Id": "mdl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Maltese Sign Language", + "Comment": "" + }, + { + "Id": "mdm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mayogo", + "Comment": "" + }, + { + "Id": "mdn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mbati", + "Comment": "" + }, + { + "Id": "mdp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mbala", + "Comment": "" + }, + { + "Id": "mdq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mbole", + "Comment": "" + }, + { + "Id": "mdr", + "Part2B": "mdr", + "Part2T": "mdr", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mandar", + "Comment": "" + }, + { + "Id": "mds", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Maria (Papua New Guinea)", + "Comment": "" + }, + { + "Id": "mdt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mbere", + "Comment": "" + }, + { + "Id": "mdu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mboko", + "Comment": "" + }, + { + "Id": "mdv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Santa Luc\u00EDa Monteverde Mixtec", + "Comment": "" + }, + { + "Id": "mdw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mbosi", + "Comment": "" + }, + { + "Id": "mdx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dizin", + "Comment": "" + }, + { + "Id": "mdy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Male (Ethiopia)", + "Comment": "" + }, + { + "Id": "mdz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Suru\u00ED Do Par\u00E1", + "Comment": "" + }, + { + "Id": "mea", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Menka", + "Comment": "" + }, + { + "Id": "meb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ikobi", + "Comment": "" + }, + { + "Id": "mec", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Marra", + "Comment": "" + }, + { + "Id": "med", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Melpa", + "Comment": "" + }, + { + "Id": "mee", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mengen", + "Comment": "" + }, + { + "Id": "mef", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Megam", + "Comment": "" + }, + { + "Id": "meh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southwestern Tlaxiaco Mixtec", + "Comment": "" + }, + { + "Id": "mei", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Midob", + "Comment": "" + }, + { + "Id": "mej", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Meyah", + "Comment": "" + }, + { + "Id": "mek", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mekeo", + "Comment": "" + }, + { + "Id": "mel", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Central Melanau", + "Comment": "" + }, + { + "Id": "mem", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Mangala", + "Comment": "" + }, + { + "Id": "men", + "Part2B": "men", + "Part2T": "men", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mende (Sierra Leone)", + "Comment": "" + }, + { + "Id": "meo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kedah Malay", + "Comment": "" + }, + { + "Id": "mep", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Miriwoong", + "Comment": "" + }, + { + "Id": "meq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Merey", + "Comment": "" + }, + { + "Id": "mer", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Meru", + "Comment": "" + }, + { + "Id": "mes", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Masmaje", + "Comment": "" + }, + { + "Id": "met", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mato", + "Comment": "" + }, + { + "Id": "meu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Motu", + "Comment": "" + }, + { + "Id": "mev", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mano", + "Comment": "" + }, + { + "Id": "mew", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Maaka", + "Comment": "" + }, + { + "Id": "mey", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hassaniyya", + "Comment": "" + }, + { + "Id": "mez", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Menominee", + "Comment": "" + }, + { + "Id": "mfa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pattani Malay", + "Comment": "" + }, + { + "Id": "mfb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bangka", + "Comment": "" + }, + { + "Id": "mfc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mba", + "Comment": "" + }, + { + "Id": "mfd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mendankwe-Nkwen", + "Comment": "" + }, + { + "Id": "mfe", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Morisyen", + "Comment": "" + }, + { + "Id": "mff", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Naki", + "Comment": "" + }, + { + "Id": "mfg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mogofin", + "Comment": "" + }, + { + "Id": "mfh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Matal", + "Comment": "" + }, + { + "Id": "mfi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wandala", + "Comment": "" + }, + { + "Id": "mfj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mefele", + "Comment": "" + }, + { + "Id": "mfk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "North Mofu", + "Comment": "" + }, + { + "Id": "mfl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Putai", + "Comment": "" + }, + { + "Id": "mfm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Marghi South", + "Comment": "" + }, + { + "Id": "mfn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Cross River Mbembe", + "Comment": "" + }, + { + "Id": "mfo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mbe", + "Comment": "" + }, + { + "Id": "mfp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Makassar Malay", + "Comment": "" + }, + { + "Id": "mfq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Moba", + "Comment": "" + }, + { + "Id": "mfr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Marrithiyel", + "Comment": "" + }, + { + "Id": "mfs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mexican Sign Language", + "Comment": "" + }, + { + "Id": "mft", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mokerang", + "Comment": "" + }, + { + "Id": "mfu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mbwela", + "Comment": "" + }, + { + "Id": "mfv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mandjak", + "Comment": "" + }, + { + "Id": "mfw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Mulaha", + "Comment": "" + }, + { + "Id": "mfx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Melo", + "Comment": "" + }, + { + "Id": "mfy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mayo", + "Comment": "" + }, + { + "Id": "mfz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mabaan", + "Comment": "" + }, + { + "Id": "mga", + "Part2B": "mga", + "Part2T": "mga", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Middle Irish (900-1200)", + "Comment": "" + }, + { + "Id": "mgb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mararit", + "Comment": "" + }, + { + "Id": "mgc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Morokodo", + "Comment": "" + }, + { + "Id": "mgd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Moru", + "Comment": "" + }, + { + "Id": "mge", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mango", + "Comment": "" + }, + { + "Id": "mgf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Maklew", + "Comment": "" + }, + { + "Id": "mgg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mpumpong", + "Comment": "" + }, + { + "Id": "mgh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Makhuwa-Meetto", + "Comment": "" + }, + { + "Id": "mgi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lijili", + "Comment": "" + }, + { + "Id": "mgj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Abureni", + "Comment": "" + }, + { + "Id": "mgk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mawes", + "Comment": "" + }, + { + "Id": "mgl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Maleu-Kilenge", + "Comment": "" + }, + { + "Id": "mgm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mambae", + "Comment": "" + }, + { + "Id": "mgn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mbangi", + "Comment": "" + }, + { + "Id": "mgo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Meta\u0027", + "Comment": "" + }, + { + "Id": "mgp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Eastern Magar", + "Comment": "" + }, + { + "Id": "mgq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Malila", + "Comment": "" + }, + { + "Id": "mgr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mambwe-Lungu", + "Comment": "" + }, + { + "Id": "mgs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Manda (Tanzania)", + "Comment": "" + }, + { + "Id": "mgt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mongol", + "Comment": "" + }, + { + "Id": "mgu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mailu", + "Comment": "" + }, + { + "Id": "mgv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Matengo", + "Comment": "" + }, + { + "Id": "mgw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Matumbi", + "Comment": "" + }, + { + "Id": "mgy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mbunga", + "Comment": "" + }, + { + "Id": "mgz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mbugwe", + "Comment": "" + }, + { + "Id": "mha", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Manda (India)", + "Comment": "" + }, + { + "Id": "mhb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mahongwe", + "Comment": "" + }, + { + "Id": "mhc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mocho", + "Comment": "" + }, + { + "Id": "mhd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mbugu", + "Comment": "" + }, + { + "Id": "mhe", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Besisi", + "Comment": "" + }, + { + "Id": "mhf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mamaa", + "Comment": "" + }, + { + "Id": "mhg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Margu", + "Comment": "" + }, + { + "Id": "mhi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ma\u0027di", + "Comment": "" + }, + { + "Id": "mhj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mogholi", + "Comment": "" + }, + { + "Id": "mhk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mungaka", + "Comment": "" + }, + { + "Id": "mhl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mauwake", + "Comment": "" + }, + { + "Id": "mhm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Makhuwa-Moniga", + "Comment": "" + }, + { + "Id": "mhn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "M\u00F3cheno", + "Comment": "" + }, + { + "Id": "mho", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mashi (Zambia)", + "Comment": "" + }, + { + "Id": "mhp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Balinese Malay", + "Comment": "" + }, + { + "Id": "mhq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mandan", + "Comment": "" + }, + { + "Id": "mhr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Eastern Mari", + "Comment": "" + }, + { + "Id": "mhs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Buru (Indonesia)", + "Comment": "" + }, + { + "Id": "mht", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mandahuaca", + "Comment": "" + }, + { + "Id": "mhu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Digaro-Mishmi", + "Comment": "" + }, + { + "Id": "mhw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mbukushu", + "Comment": "" + }, + { + "Id": "mhx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Maru", + "Comment": "" + }, + { + "Id": "mhy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ma\u0027anyan", + "Comment": "" + }, + { + "Id": "mhz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mor (Mor Islands)", + "Comment": "" + }, + { + "Id": "mia", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Miami", + "Comment": "" + }, + { + "Id": "mib", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Atatl\u00E1huca Mixtec", + "Comment": "" + }, + { + "Id": "mic", + "Part2B": "mic", + "Part2T": "mic", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mi\u0027kmaq", + "Comment": "" + }, + { + "Id": "mid", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mandaic", + "Comment": "" + }, + { + "Id": "mie", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ocotepec Mixtec", + "Comment": "" + }, + { + "Id": "mif", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mofu-Gudur", + "Comment": "" + }, + { + "Id": "mig", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "San Miguel El Grande Mixtec", + "Comment": "" + }, + { + "Id": "mih", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chayuco Mixtec", + "Comment": "" + }, + { + "Id": "mii", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chigmecatitl\u00E1n Mixtec", + "Comment": "" + }, + { + "Id": "mij", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Abar", + "Comment": "" + }, + { + "Id": "mik", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mikasuki", + "Comment": "" + }, + { + "Id": "mil", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pe\u00F1oles Mixtec", + "Comment": "" + }, + { + "Id": "mim", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Alacatlatzala Mixtec", + "Comment": "" + }, + { + "Id": "min", + "Part2B": "min", + "Part2T": "min", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Minangkabau", + "Comment": "" + }, + { + "Id": "mio", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pinotepa Nacional Mixtec", + "Comment": "" + }, + { + "Id": "mip", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Apasco-Apoala Mixtec", + "Comment": "" + }, + { + "Id": "miq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "M\u00EDskito", + "Comment": "" + }, + { + "Id": "mir", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Isthmus Mixe", + "Comment": "" + }, + { + "Id": "mis", + "Part2B": "mis", + "Part2T": "mis", + "Part1": "", + "Scope": "S", + "LanguageType": "S", + "RefName": "Uncoded languages", + "Comment": "" + }, + { + "Id": "mit", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southern Puebla Mixtec", + "Comment": "" + }, + { + "Id": "miu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Cacaloxtepec Mixtec", + "Comment": "" + }, + { + "Id": "miw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Akoye", + "Comment": "" + }, + { + "Id": "mix", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mixtepec Mixtec", + "Comment": "" + }, + { + "Id": "miy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ayutla Mixtec", + "Comment": "" + }, + { + "Id": "miz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Coatzospan Mixtec", + "Comment": "" + }, + { + "Id": "mjb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Makalero", + "Comment": "" + }, + { + "Id": "mjc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "San Juan Colorado Mixtec", + "Comment": "" + }, + { + "Id": "mjd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Northwest Maidu", + "Comment": "" + }, + { + "Id": "mje", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Muskum", + "Comment": "" + }, + { + "Id": "mjg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tu", + "Comment": "" + }, + { + "Id": "mjh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mwera (Nyasa)", + "Comment": "" + }, + { + "Id": "mji", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kim Mun", + "Comment": "" + }, + { + "Id": "mjj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mawak", + "Comment": "" + }, + { + "Id": "mjk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Matukar", + "Comment": "" + }, + { + "Id": "mjl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mandeali", + "Comment": "" + }, + { + "Id": "mjm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Medebur", + "Comment": "" + }, + { + "Id": "mjn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ma (Papua New Guinea)", + "Comment": "" + }, + { + "Id": "mjo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Malankuravan", + "Comment": "" + }, + { + "Id": "mjp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Malapandaram", + "Comment": "" + }, + { + "Id": "mjq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Malaryan", + "Comment": "" + }, + { + "Id": "mjr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Malavedan", + "Comment": "" + }, + { + "Id": "mjs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Miship", + "Comment": "" + }, + { + "Id": "mjt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sauria Paharia", + "Comment": "" + }, + { + "Id": "mju", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Manna-Dora", + "Comment": "" + }, + { + "Id": "mjv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mannan", + "Comment": "" + }, + { + "Id": "mjw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Karbi", + "Comment": "" + }, + { + "Id": "mjx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mahali", + "Comment": "" + }, + { + "Id": "mjy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Mahican", + "Comment": "" + }, + { + "Id": "mjz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Majhi", + "Comment": "" + }, + { + "Id": "mka", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mbre", + "Comment": "" + }, + { + "Id": "mkb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mal Paharia", + "Comment": "" + }, + { + "Id": "mkc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Siliput", + "Comment": "" + }, + { + "Id": "mkd", + "Part2B": "mac", + "Part2T": "mkd", + "Part1": "mk", + "Scope": "I", + "LanguageType": "L", + "RefName": "Macedonian", + "Comment": "" + }, + { + "Id": "mke", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mawchi", + "Comment": "" + }, + { + "Id": "mkf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Miya", + "Comment": "" + }, + { + "Id": "mkg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mak (China)", + "Comment": "" + }, + { + "Id": "mki", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dhatki", + "Comment": "" + }, + { + "Id": "mkj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mokilese", + "Comment": "" + }, + { + "Id": "mkk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Byep", + "Comment": "" + }, + { + "Id": "mkl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mokole", + "Comment": "" + }, + { + "Id": "mkm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Moklen", + "Comment": "" + }, + { + "Id": "mkn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kupang Malay", + "Comment": "" + }, + { + "Id": "mko", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mingang Doso", + "Comment": "" + }, + { + "Id": "mkp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Moikodi", + "Comment": "" + }, + { + "Id": "mkq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Bay Miwok", + "Comment": "" + }, + { + "Id": "mkr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Malas", + "Comment": "" + }, + { + "Id": "mks", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Silacayoapan Mixtec", + "Comment": "" + }, + { + "Id": "mkt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Vamale", + "Comment": "" + }, + { + "Id": "mku", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Konyanka Maninka", + "Comment": "" + }, + { + "Id": "mkv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mafea", + "Comment": "" + }, + { + "Id": "mkw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kituba (Congo)", + "Comment": "" + }, + { + "Id": "mkx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kinamiging Manobo", + "Comment": "" + }, + { + "Id": "mky", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "East Makian", + "Comment": "" + }, + { + "Id": "mkz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Makasae", + "Comment": "" + }, + { + "Id": "mla", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Malo", + "Comment": "" + }, + { + "Id": "mlb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mbule", + "Comment": "" + }, + { + "Id": "mlc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Cao Lan", + "Comment": "" + }, + { + "Id": "mle", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Manambu", + "Comment": "" + }, + { + "Id": "mlf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mal", + "Comment": "" + }, + { + "Id": "mlg", + "Part2B": "mlg", + "Part2T": "mlg", + "Part1": "mg", + "Scope": "M", + "LanguageType": "L", + "RefName": "Malagasy", + "Comment": "" + }, + { + "Id": "mlh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mape", + "Comment": "" + }, + { + "Id": "mli", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Malimpung", + "Comment": "" + }, + { + "Id": "mlj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Miltu", + "Comment": "" + }, + { + "Id": "mlk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ilwana", + "Comment": "" + }, + { + "Id": "mll", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Malua Bay", + "Comment": "" + }, + { + "Id": "mlm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mulam", + "Comment": "" + }, + { + "Id": "mln", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Malango", + "Comment": "" + }, + { + "Id": "mlo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mlomp", + "Comment": "" + }, + { + "Id": "mlp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bargam", + "Comment": "" + }, + { + "Id": "mlq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Western Maninkakan", + "Comment": "" + }, + { + "Id": "mlr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Vame", + "Comment": "" + }, + { + "Id": "mls", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Masalit", + "Comment": "" + }, + { + "Id": "mlt", + "Part2B": "mlt", + "Part2T": "mlt", + "Part1": "mt", + "Scope": "I", + "LanguageType": "L", + "RefName": "Maltese", + "Comment": "" + }, + { + "Id": "mlu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "To\u0027abaita", + "Comment": "" + }, + { + "Id": "mlv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Motlav", + "Comment": "" + }, + { + "Id": "mlw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Moloko", + "Comment": "" + }, + { + "Id": "mlx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Malfaxal", + "Comment": "" + }, + { + "Id": "mlz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Malaynon", + "Comment": "" + }, + { + "Id": "mma", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mama", + "Comment": "" + }, + { + "Id": "mmb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Momina", + "Comment": "" + }, + { + "Id": "mmc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Michoac\u00E1n Mazahua", + "Comment": "" + }, + { + "Id": "mmd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Maonan", + "Comment": "" + }, + { + "Id": "mme", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mae", + "Comment": "" + }, + { + "Id": "mmf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mundat", + "Comment": "" + }, + { + "Id": "mmg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "North Ambrym", + "Comment": "" + }, + { + "Id": "mmh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mehin\u00E1ku", + "Comment": "" + }, + { + "Id": "mmi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hember Avu", + "Comment": "" + }, + { + "Id": "mmj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Majhwar", + "Comment": "" + }, + { + "Id": "mmk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mukha-Dora", + "Comment": "" + }, + { + "Id": "mml", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Man Met", + "Comment": "" + }, + { + "Id": "mmm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Maii", + "Comment": "" + }, + { + "Id": "mmn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mamanwa", + "Comment": "" + }, + { + "Id": "mmo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mangga Buang", + "Comment": "" + }, + { + "Id": "mmp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Siawi", + "Comment": "" + }, + { + "Id": "mmq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Musak", + "Comment": "" + }, + { + "Id": "mmr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Western Xiangxi Miao", + "Comment": "" + }, + { + "Id": "mmt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Malalamai", + "Comment": "" + }, + { + "Id": "mmu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mmaala", + "Comment": "" + }, + { + "Id": "mmv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Miriti", + "Comment": "" + }, + { + "Id": "mmw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Emae", + "Comment": "" + }, + { + "Id": "mmx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Madak", + "Comment": "" + }, + { + "Id": "mmy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Migaama", + "Comment": "" + }, + { + "Id": "mmz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mabaale", + "Comment": "" + }, + { + "Id": "mna", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mbula", + "Comment": "" + }, + { + "Id": "mnb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Muna", + "Comment": "" + }, + { + "Id": "mnc", + "Part2B": "mnc", + "Part2T": "mnc", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Manchu", + "Comment": "" + }, + { + "Id": "mnd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mond\u00E9", + "Comment": "" + }, + { + "Id": "mne", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Naba", + "Comment": "" + }, + { + "Id": "mnf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mundani", + "Comment": "" + }, + { + "Id": "mng", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Eastern Mnong", + "Comment": "" + }, + { + "Id": "mnh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mono (Democratic Republic of Congo)", + "Comment": "" + }, + { + "Id": "mni", + "Part2B": "mni", + "Part2T": "mni", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Manipuri", + "Comment": "" + }, + { + "Id": "mnj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Munji", + "Comment": "" + }, + { + "Id": "mnk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mandinka", + "Comment": "" + }, + { + "Id": "mnl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tiale", + "Comment": "" + }, + { + "Id": "mnm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mapena", + "Comment": "" + }, + { + "Id": "mnn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southern Mnong", + "Comment": "" + }, + { + "Id": "mnp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Min Bei Chinese", + "Comment": "" + }, + { + "Id": "mnq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Minriq", + "Comment": "" + }, + { + "Id": "mnr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mono (USA)", + "Comment": "" + }, + { + "Id": "mns", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mansi", + "Comment": "" + }, + { + "Id": "mnu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mer", + "Comment": "" + }, + { + "Id": "mnv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Rennell-Bellona", + "Comment": "" + }, + { + "Id": "mnw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mon", + "Comment": "" + }, + { + "Id": "mnx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Manikion", + "Comment": "" + }, + { + "Id": "mny", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Manyawa", + "Comment": "" + }, + { + "Id": "mnz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Moni", + "Comment": "" + }, + { + "Id": "moa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mwan", + "Comment": "" + }, + { + "Id": "moc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mocov\u00ED", + "Comment": "" + }, + { + "Id": "mod", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Mobilian", + "Comment": "" + }, + { + "Id": "moe", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Innu", + "Comment": "" + }, + { + "Id": "mog", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mongondow", + "Comment": "" + }, + { + "Id": "moh", + "Part2B": "moh", + "Part2T": "moh", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mohawk", + "Comment": "" + }, + { + "Id": "moi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mboi", + "Comment": "" + }, + { + "Id": "moj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Monzombo", + "Comment": "" + }, + { + "Id": "mok", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Morori", + "Comment": "" + }, + { + "Id": "mom", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Mangue", + "Comment": "" + }, + { + "Id": "mon", + "Part2B": "mon", + "Part2T": "mon", + "Part1": "mn", + "Scope": "M", + "LanguageType": "L", + "RefName": "Mongolian", + "Comment": "" + }, + { + "Id": "moo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Monom", + "Comment": "" + }, + { + "Id": "mop", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mop\u00E1n Maya", + "Comment": "" + }, + { + "Id": "moq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mor (Bomberai Peninsula)", + "Comment": "" + }, + { + "Id": "mor", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Moro", + "Comment": "" + }, + { + "Id": "mos", + "Part2B": "mos", + "Part2T": "mos", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mossi", + "Comment": "" + }, + { + "Id": "mot", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bar\u00ED", + "Comment": "" + }, + { + "Id": "mou", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mogum", + "Comment": "" + }, + { + "Id": "mov", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mohave", + "Comment": "" + }, + { + "Id": "mow", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Moi (Congo)", + "Comment": "" + }, + { + "Id": "mox", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Molima", + "Comment": "" + }, + { + "Id": "moy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Shekkacho", + "Comment": "" + }, + { + "Id": "moz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mukulu", + "Comment": "" + }, + { + "Id": "mpa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mpoto", + "Comment": "" + }, + { + "Id": "mpb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Malak Malak", + "Comment": "" + }, + { + "Id": "mpc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mangarrayi", + "Comment": "" + }, + { + "Id": "mpd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Machinere", + "Comment": "" + }, + { + "Id": "mpe", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Majang", + "Comment": "" + }, + { + "Id": "mpg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Marba", + "Comment": "" + }, + { + "Id": "mph", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Maung", + "Comment": "" + }, + { + "Id": "mpi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mpade", + "Comment": "" + }, + { + "Id": "mpj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Martu Wangka", + "Comment": "" + }, + { + "Id": "mpk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mbara (Chad)", + "Comment": "" + }, + { + "Id": "mpl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Middle Watut", + "Comment": "" + }, + { + "Id": "mpm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yosond\u00FAa Mixtec", + "Comment": "" + }, + { + "Id": "mpn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mindiri", + "Comment": "" + }, + { + "Id": "mpo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Miu", + "Comment": "" + }, + { + "Id": "mpp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Migabac", + "Comment": "" + }, + { + "Id": "mpq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mat\u00EDs", + "Comment": "" + }, + { + "Id": "mpr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Vangunu", + "Comment": "" + }, + { + "Id": "mps", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dadibi", + "Comment": "" + }, + { + "Id": "mpt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mian", + "Comment": "" + }, + { + "Id": "mpu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Makur\u00E1p", + "Comment": "" + }, + { + "Id": "mpv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mungkip", + "Comment": "" + }, + { + "Id": "mpw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mapidian", + "Comment": "" + }, + { + "Id": "mpx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Misima-Panaeati", + "Comment": "" + }, + { + "Id": "mpy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mapia", + "Comment": "" + }, + { + "Id": "mpz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mpi", + "Comment": "" + }, + { + "Id": "mqa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Maba (Indonesia)", + "Comment": "" + }, + { + "Id": "mqb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mbuko", + "Comment": "" + }, + { + "Id": "mqc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mangole", + "Comment": "" + }, + { + "Id": "mqe", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Matepi", + "Comment": "" + }, + { + "Id": "mqf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Momuna", + "Comment": "" + }, + { + "Id": "mqg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kota Bangun Kutai Malay", + "Comment": "" + }, + { + "Id": "mqh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tlazoyaltepec Mixtec", + "Comment": "" + }, + { + "Id": "mqi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mariri", + "Comment": "" + }, + { + "Id": "mqj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mamasa", + "Comment": "" + }, + { + "Id": "mqk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Rajah Kabunsuwan Manobo", + "Comment": "" + }, + { + "Id": "mql", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mbelime", + "Comment": "" + }, + { + "Id": "mqm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "South Marquesan", + "Comment": "" + }, + { + "Id": "mqn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Moronene", + "Comment": "" + }, + { + "Id": "mqo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Modole", + "Comment": "" + }, + { + "Id": "mqp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Manipa", + "Comment": "" + }, + { + "Id": "mqq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Minokok", + "Comment": "" + }, + { + "Id": "mqr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mander", + "Comment": "" + }, + { + "Id": "mqs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "West Makian", + "Comment": "" + }, + { + "Id": "mqt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mok", + "Comment": "" + }, + { + "Id": "mqu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mandari", + "Comment": "" + }, + { + "Id": "mqv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mosimo", + "Comment": "" + }, + { + "Id": "mqw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Murupi", + "Comment": "" + }, + { + "Id": "mqx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mamuju", + "Comment": "" + }, + { + "Id": "mqy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Manggarai", + "Comment": "" + }, + { + "Id": "mqz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pano", + "Comment": "" + }, + { + "Id": "mra", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mlabri", + "Comment": "" + }, + { + "Id": "mrb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Marino", + "Comment": "" + }, + { + "Id": "mrc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Maricopa", + "Comment": "" + }, + { + "Id": "mrd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Western Magar", + "Comment": "" + }, + { + "Id": "mre", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Martha\u0027s Vineyard Sign Language", + "Comment": "" + }, + { + "Id": "mrf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Elseng", + "Comment": "" + }, + { + "Id": "mrg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mising", + "Comment": "" + }, + { + "Id": "mrh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mara Chin", + "Comment": "" + }, + { + "Id": "mri", + "Part2B": "mao", + "Part2T": "mri", + "Part1": "mi", + "Scope": "I", + "LanguageType": "L", + "RefName": "Maori", + "Comment": "" + }, + { + "Id": "mrj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Western Mari", + "Comment": "" + }, + { + "Id": "mrk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hmwaveke", + "Comment": "" + }, + { + "Id": "mrl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mortlockese", + "Comment": "" + }, + { + "Id": "mrm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Merlav", + "Comment": "" + }, + { + "Id": "mrn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Cheke Holo", + "Comment": "" + }, + { + "Id": "mro", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mru", + "Comment": "" + }, + { + "Id": "mrp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Morouas", + "Comment": "" + }, + { + "Id": "mrq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "North Marquesan", + "Comment": "" + }, + { + "Id": "mrr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Maria (India)", + "Comment": "" + }, + { + "Id": "mrs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Maragus", + "Comment": "" + }, + { + "Id": "mrt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Marghi Central", + "Comment": "" + }, + { + "Id": "mru", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mono (Cameroon)", + "Comment": "" + }, + { + "Id": "mrv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mangareva", + "Comment": "" + }, + { + "Id": "mrw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Maranao", + "Comment": "" + }, + { + "Id": "mrx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Maremgi", + "Comment": "" + }, + { + "Id": "mry", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mandaya", + "Comment": "" + }, + { + "Id": "mrz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Marind", + "Comment": "" + }, + { + "Id": "msa", + "Part2B": "may", + "Part2T": "msa", + "Part1": "ms", + "Scope": "M", + "LanguageType": "L", + "RefName": "Malay (macrolanguage)", + "Comment": "" + }, + { + "Id": "msb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Masbatenyo", + "Comment": "" + }, + { + "Id": "msc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sankaran Maninka", + "Comment": "" + }, + { + "Id": "msd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yucatec Maya Sign Language", + "Comment": "" + }, + { + "Id": "mse", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Musey", + "Comment": "" + }, + { + "Id": "msf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mekwei", + "Comment": "" + }, + { + "Id": "msg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Moraid", + "Comment": "" + }, + { + "Id": "msh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Masikoro Malagasy", + "Comment": "" + }, + { + "Id": "msi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sabah Malay", + "Comment": "" + }, + { + "Id": "msj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ma (Democratic Republic of Congo)", + "Comment": "" + }, + { + "Id": "msk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mansaka", + "Comment": "" + }, + { + "Id": "msl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Molof", + "Comment": "" + }, + { + "Id": "msm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Agusan Manobo", + "Comment": "" + }, + { + "Id": "msn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Vur\u00EBs", + "Comment": "" + }, + { + "Id": "mso", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mombum", + "Comment": "" + }, + { + "Id": "msp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Maritsau\u00E1", + "Comment": "" + }, + { + "Id": "msq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Caac", + "Comment": "" + }, + { + "Id": "msr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mongolian Sign Language", + "Comment": "" + }, + { + "Id": "mss", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "West Masela", + "Comment": "" + }, + { + "Id": "msu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Musom", + "Comment": "" + }, + { + "Id": "msv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Maslam", + "Comment": "" + }, + { + "Id": "msw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mansoanka", + "Comment": "" + }, + { + "Id": "msx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Moresada", + "Comment": "" + }, + { + "Id": "msy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Aruamu", + "Comment": "" + }, + { + "Id": "msz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Momare", + "Comment": "" + }, + { + "Id": "mta", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Cotabato Manobo", + "Comment": "" + }, + { + "Id": "mtb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Anyin Morofo", + "Comment": "" + }, + { + "Id": "mtc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Munit", + "Comment": "" + }, + { + "Id": "mtd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mualang", + "Comment": "" + }, + { + "Id": "mte", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mono (Solomon Islands)", + "Comment": "" + }, + { + "Id": "mtf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Murik (Papua New Guinea)", + "Comment": "" + }, + { + "Id": "mtg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Una", + "Comment": "" + }, + { + "Id": "mth", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Munggui", + "Comment": "" + }, + { + "Id": "mti", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Maiwa (Papua New Guinea)", + "Comment": "" + }, + { + "Id": "mtj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Moskona", + "Comment": "" + }, + { + "Id": "mtk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mbe\u0027", + "Comment": "" + }, + { + "Id": "mtl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Montol", + "Comment": "" + }, + { + "Id": "mtm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Mator", + "Comment": "" + }, + { + "Id": "mtn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Matagalpa", + "Comment": "" + }, + { + "Id": "mto", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Totontepec Mixe", + "Comment": "" + }, + { + "Id": "mtp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wich\u00ED Lhamt\u00E9s Nocten", + "Comment": "" + }, + { + "Id": "mtq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Muong", + "Comment": "" + }, + { + "Id": "mtr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mewari", + "Comment": "" + }, + { + "Id": "mts", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yora", + "Comment": "" + }, + { + "Id": "mtt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mota", + "Comment": "" + }, + { + "Id": "mtu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tututepec Mixtec", + "Comment": "" + }, + { + "Id": "mtv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Asaro\u0027o", + "Comment": "" + }, + { + "Id": "mtw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southern Binukidnon", + "Comment": "" + }, + { + "Id": "mtx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tida\u00E1 Mixtec", + "Comment": "" + }, + { + "Id": "mty", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nabi", + "Comment": "" + }, + { + "Id": "mua", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mundang", + "Comment": "" + }, + { + "Id": "mub", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mubi", + "Comment": "" + }, + { + "Id": "muc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ajumbu", + "Comment": "" + }, + { + "Id": "mud", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mednyj Aleut", + "Comment": "" + }, + { + "Id": "mue", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Media Lengua", + "Comment": "" + }, + { + "Id": "mug", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Musgu", + "Comment": "" + }, + { + "Id": "muh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "M\u00FCnd\u00FC", + "Comment": "" + }, + { + "Id": "mui", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Musi", + "Comment": "" + }, + { + "Id": "muj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mabire", + "Comment": "" + }, + { + "Id": "muk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mugom", + "Comment": "" + }, + { + "Id": "mul", + "Part2B": "mul", + "Part2T": "mul", + "Part1": "", + "Scope": "S", + "LanguageType": "S", + "RefName": "Multiple languages", + "Comment": "" + }, + { + "Id": "mum", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Maiwala", + "Comment": "" + }, + { + "Id": "muo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nyong", + "Comment": "" + }, + { + "Id": "mup", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Malvi", + "Comment": "" + }, + { + "Id": "muq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Eastern Xiangxi Miao", + "Comment": "" + }, + { + "Id": "mur", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Murle", + "Comment": "" + }, + { + "Id": "mus", + "Part2B": "mus", + "Part2T": "mus", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Creek", + "Comment": "" + }, + { + "Id": "mut", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Western Muria", + "Comment": "" + }, + { + "Id": "muu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yaaku", + "Comment": "" + }, + { + "Id": "muv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Muthuvan", + "Comment": "" + }, + { + "Id": "mux", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bo-Ung", + "Comment": "" + }, + { + "Id": "muy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Muyang", + "Comment": "" + }, + { + "Id": "muz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mursi", + "Comment": "" + }, + { + "Id": "mva", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Manam", + "Comment": "" + }, + { + "Id": "mvb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Mattole", + "Comment": "" + }, + { + "Id": "mvd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mamboru", + "Comment": "" + }, + { + "Id": "mve", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Marwari (Pakistan)", + "Comment": "" + }, + { + "Id": "mvf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Peripheral Mongolian", + "Comment": "" + }, + { + "Id": "mvg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yucua\u00F1e Mixtec", + "Comment": "" + }, + { + "Id": "mvh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mulgi", + "Comment": "" + }, + { + "Id": "mvi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Miyako", + "Comment": "" + }, + { + "Id": "mvk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mekmek", + "Comment": "" + }, + { + "Id": "mvl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Mbara (Australia)", + "Comment": "" + }, + { + "Id": "mvn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Minaveha", + "Comment": "" + }, + { + "Id": "mvo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Marovo", + "Comment": "" + }, + { + "Id": "mvp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Duri", + "Comment": "" + }, + { + "Id": "mvq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Moere", + "Comment": "" + }, + { + "Id": "mvr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Marau", + "Comment": "" + }, + { + "Id": "mvs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Massep", + "Comment": "" + }, + { + "Id": "mvt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mpotovoro", + "Comment": "" + }, + { + "Id": "mvu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Marfa", + "Comment": "" + }, + { + "Id": "mvv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tagal Murut", + "Comment": "" + }, + { + "Id": "mvw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Machinga", + "Comment": "" + }, + { + "Id": "mvx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Meoswar", + "Comment": "" + }, + { + "Id": "mvy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Indus Kohistani", + "Comment": "" + }, + { + "Id": "mvz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mesqan", + "Comment": "" + }, + { + "Id": "mwa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mwatebu", + "Comment": "" + }, + { + "Id": "mwb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Juwal", + "Comment": "" + }, + { + "Id": "mwc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Are", + "Comment": "" + }, + { + "Id": "mwe", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mwera (Chimwera)", + "Comment": "" + }, + { + "Id": "mwf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Murrinh-Patha", + "Comment": "" + }, + { + "Id": "mwg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Aiklep", + "Comment": "" + }, + { + "Id": "mwh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mouk-Aria", + "Comment": "" + }, + { + "Id": "mwi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Labo", + "Comment": "" + }, + { + "Id": "mwk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kita Maninkakan", + "Comment": "" + }, + { + "Id": "mwl", + "Part2B": "mwl", + "Part2T": "mwl", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mirandese", + "Comment": "" + }, + { + "Id": "mwm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sar", + "Comment": "" + }, + { + "Id": "mwn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nyamwanga", + "Comment": "" + }, + { + "Id": "mwo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Central Maewo", + "Comment": "" + }, + { + "Id": "mwp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kala Lagaw Ya", + "Comment": "" + }, + { + "Id": "mwq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "M\u00FCn Chin", + "Comment": "" + }, + { + "Id": "mwr", + "Part2B": "mwr", + "Part2T": "mwr", + "Part1": "", + "Scope": "M", + "LanguageType": "L", + "RefName": "Marwari", + "Comment": "" + }, + { + "Id": "mws", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mwimbi-Muthambi", + "Comment": "" + }, + { + "Id": "mwt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Moken", + "Comment": "" + }, + { + "Id": "mwu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Mittu", + "Comment": "" + }, + { + "Id": "mwv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mentawai", + "Comment": "" + }, + { + "Id": "mww", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hmong Daw", + "Comment": "" + }, + { + "Id": "mwz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Moingi", + "Comment": "" + }, + { + "Id": "mxa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Northwest Oaxaca Mixtec", + "Comment": "" + }, + { + "Id": "mxb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tezoatl\u00E1n Mixtec", + "Comment": "" + }, + { + "Id": "mxc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Manyika", + "Comment": "" + }, + { + "Id": "mxd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Modang", + "Comment": "" + }, + { + "Id": "mxe", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mele-Fila", + "Comment": "" + }, + { + "Id": "mxf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Malgbe", + "Comment": "" + }, + { + "Id": "mxg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mbangala", + "Comment": "" + }, + { + "Id": "mxh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mvuba", + "Comment": "" + }, + { + "Id": "mxi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Mozarabic", + "Comment": "" + }, + { + "Id": "mxj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Miju-Mishmi", + "Comment": "" + }, + { + "Id": "mxk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Monumbo", + "Comment": "" + }, + { + "Id": "mxl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Maxi Gbe", + "Comment": "" + }, + { + "Id": "mxm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Meramera", + "Comment": "" + }, + { + "Id": "mxn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Moi (Indonesia)", + "Comment": "" + }, + { + "Id": "mxo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mbowe", + "Comment": "" + }, + { + "Id": "mxp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tlahuitoltepec Mixe", + "Comment": "" + }, + { + "Id": "mxq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Juquila Mixe", + "Comment": "" + }, + { + "Id": "mxr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Murik (Malaysia)", + "Comment": "" + }, + { + "Id": "mxs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Huitepec Mixtec", + "Comment": "" + }, + { + "Id": "mxt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Jamiltepec Mixtec", + "Comment": "" + }, + { + "Id": "mxu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mada (Cameroon)", + "Comment": "" + }, + { + "Id": "mxv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Metlat\u00F3noc Mixtec", + "Comment": "" + }, + { + "Id": "mxw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Namo", + "Comment": "" + }, + { + "Id": "mxx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mahou", + "Comment": "" + }, + { + "Id": "mxy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southeastern Nochixtl\u00E1n Mixtec", + "Comment": "" + }, + { + "Id": "mxz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Central Masela", + "Comment": "" + }, + { + "Id": "mya", + "Part2B": "bur", + "Part2T": "mya", + "Part1": "my", + "Scope": "I", + "LanguageType": "L", + "RefName": "Burmese", + "Comment": "" + }, + { + "Id": "myb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mbay", + "Comment": "" + }, + { + "Id": "myc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mayeka", + "Comment": "" + }, + { + "Id": "mye", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Myene", + "Comment": "" + }, + { + "Id": "myf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bambassi", + "Comment": "" + }, + { + "Id": "myg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Manta", + "Comment": "" + }, + { + "Id": "myh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Makah", + "Comment": "" + }, + { + "Id": "myj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mangayat", + "Comment": "" + }, + { + "Id": "myk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mamara Senoufo", + "Comment": "" + }, + { + "Id": "myl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Moma", + "Comment": "" + }, + { + "Id": "mym", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Me\u0027en", + "Comment": "" + }, + { + "Id": "myo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Anfillo", + "Comment": "" + }, + { + "Id": "myp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pirah\u00E3", + "Comment": "" + }, + { + "Id": "myr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Muniche", + "Comment": "" + }, + { + "Id": "mys", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Mesmes", + "Comment": "" + }, + { + "Id": "myu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Munduruk\u00FA", + "Comment": "" + }, + { + "Id": "myv", + "Part2B": "myv", + "Part2T": "myv", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Erzya", + "Comment": "" + }, + { + "Id": "myw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Muyuw", + "Comment": "" + }, + { + "Id": "myx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Masaaba", + "Comment": "" + }, + { + "Id": "myy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Macuna", + "Comment": "" + }, + { + "Id": "myz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Classical Mandaic", + "Comment": "" + }, + { + "Id": "mza", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Santa Mar\u00EDa Zacatepec Mixtec", + "Comment": "" + }, + { + "Id": "mzb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tumzabt", + "Comment": "" + }, + { + "Id": "mzc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Madagascar Sign Language", + "Comment": "" + }, + { + "Id": "mzd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Malimba", + "Comment": "" + }, + { + "Id": "mze", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Morawa", + "Comment": "" + }, + { + "Id": "mzg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Monastic Sign Language", + "Comment": "" + }, + { + "Id": "mzh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wich\u00ED Lhamt\u00E9s G\u00FCisnay", + "Comment": "" + }, + { + "Id": "mzi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ixcatl\u00E1n Mazatec", + "Comment": "" + }, + { + "Id": "mzj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Manya", + "Comment": "" + }, + { + "Id": "mzk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nigeria Mambila", + "Comment": "" + }, + { + "Id": "mzl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mazatl\u00E1n Mixe", + "Comment": "" + }, + { + "Id": "mzm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mumuye", + "Comment": "" + }, + { + "Id": "mzn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mazanderani", + "Comment": "" + }, + { + "Id": "mzo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Matipuhy", + "Comment": "" + }, + { + "Id": "mzp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Movima", + "Comment": "" + }, + { + "Id": "mzq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mori Atas", + "Comment": "" + }, + { + "Id": "mzr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mar\u00FAbo", + "Comment": "" + }, + { + "Id": "mzs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Macanese", + "Comment": "" + }, + { + "Id": "mzt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mintil", + "Comment": "" + }, + { + "Id": "mzu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Inapang", + "Comment": "" + }, + { + "Id": "mzv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Manza", + "Comment": "" + }, + { + "Id": "mzw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Deg", + "Comment": "" + }, + { + "Id": "mzx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mawayana", + "Comment": "" + }, + { + "Id": "mzy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mozambican Sign Language", + "Comment": "" + }, + { + "Id": "mzz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Maiadomu", + "Comment": "" + }, + { + "Id": "naa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Namla", + "Comment": "" + }, + { + "Id": "nab", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southern Nambiku\u00E1ra", + "Comment": "" + }, + { + "Id": "nac", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Narak", + "Comment": "" + }, + { + "Id": "nae", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Naka\u0027ela", + "Comment": "" + }, + { + "Id": "naf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nabak", + "Comment": "" + }, + { + "Id": "nag", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Naga Pidgin", + "Comment": "" + }, + { + "Id": "naj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nalu", + "Comment": "" + }, + { + "Id": "nak", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nakanai", + "Comment": "" + }, + { + "Id": "nal", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nalik", + "Comment": "" + }, + { + "Id": "nam", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ngan\u0027gityemerri", + "Comment": "" + }, + { + "Id": "nan", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Min Nan Chinese", + "Comment": "" + }, + { + "Id": "nao", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Naaba", + "Comment": "" + }, + { + "Id": "nap", + "Part2B": "nap", + "Part2T": "nap", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Neapolitan", + "Comment": "" + }, + { + "Id": "naq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Khoekhoe", + "Comment": "" + }, + { + "Id": "nar", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Iguta", + "Comment": "" + }, + { + "Id": "nas", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Naasioi", + "Comment": "" + }, + { + "Id": "nat", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ca\u0331hungwa\u0331rya\u0331", + "Comment": "" + }, + { + "Id": "nau", + "Part2B": "nau", + "Part2T": "nau", + "Part1": "na", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nauru", + "Comment": "" + }, + { + "Id": "nav", + "Part2B": "nav", + "Part2T": "nav", + "Part1": "nv", + "Scope": "I", + "LanguageType": "L", + "RefName": "Navajo", + "Comment": "" + }, + { + "Id": "naw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nawuri", + "Comment": "" + }, + { + "Id": "nax", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nakwi", + "Comment": "" + }, + { + "Id": "nay", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Ngarrindjeri", + "Comment": "" + }, + { + "Id": "naz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Coatepec Nahuatl", + "Comment": "" + }, + { + "Id": "nba", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nyemba", + "Comment": "" + }, + { + "Id": "nbb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ndoe", + "Comment": "" + }, + { + "Id": "nbc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chang Naga", + "Comment": "" + }, + { + "Id": "nbd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ngbinda", + "Comment": "" + }, + { + "Id": "nbe", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Konyak Naga", + "Comment": "" + }, + { + "Id": "nbg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nagarchal", + "Comment": "" + }, + { + "Id": "nbh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ngamo", + "Comment": "" + }, + { + "Id": "nbi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mao Naga", + "Comment": "" + }, + { + "Id": "nbj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ngarinyman", + "Comment": "" + }, + { + "Id": "nbk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nake", + "Comment": "" + }, + { + "Id": "nbl", + "Part2B": "nbl", + "Part2T": "nbl", + "Part1": "nr", + "Scope": "I", + "LanguageType": "L", + "RefName": "South Ndebele", + "Comment": "" + }, + { + "Id": "nbm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ngbaka Ma\u0027bo", + "Comment": "" + }, + { + "Id": "nbn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kuri", + "Comment": "" + }, + { + "Id": "nbo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nkukoli", + "Comment": "" + }, + { + "Id": "nbp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nnam", + "Comment": "" + }, + { + "Id": "nbq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nggem", + "Comment": "" + }, + { + "Id": "nbr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Numana", + "Comment": "" + }, + { + "Id": "nbs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Namibian Sign Language", + "Comment": "" + }, + { + "Id": "nbt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Na", + "Comment": "" + }, + { + "Id": "nbu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Rongmei Naga", + "Comment": "" + }, + { + "Id": "nbv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ngamambo", + "Comment": "" + }, + { + "Id": "nbw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southern Ngbandi", + "Comment": "" + }, + { + "Id": "nby", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ningera", + "Comment": "" + }, + { + "Id": "nca", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Iyo", + "Comment": "" + }, + { + "Id": "ncb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Central Nicobarese", + "Comment": "" + }, + { + "Id": "ncc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ponam", + "Comment": "" + }, + { + "Id": "ncd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nachering", + "Comment": "" + }, + { + "Id": "nce", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yale", + "Comment": "" + }, + { + "Id": "ncf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Notsi", + "Comment": "" + }, + { + "Id": "ncg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nisga\u0027a", + "Comment": "" + }, + { + "Id": "nch", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Central Huasteca Nahuatl", + "Comment": "" + }, + { + "Id": "nci", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Classical Nahuatl", + "Comment": "" + }, + { + "Id": "ncj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Northern Puebla Nahuatl", + "Comment": "" + }, + { + "Id": "nck", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Na-kara", + "Comment": "" + }, + { + "Id": "ncl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Michoac\u00E1n Nahuatl", + "Comment": "" + }, + { + "Id": "ncm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nambo", + "Comment": "" + }, + { + "Id": "ncn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nauna", + "Comment": "" + }, + { + "Id": "nco", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sibe", + "Comment": "" + }, + { + "Id": "ncq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Northern Katang", + "Comment": "" + }, + { + "Id": "ncr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ncane", + "Comment": "" + }, + { + "Id": "ncs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nicaraguan Sign Language", + "Comment": "" + }, + { + "Id": "nct", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chothe Naga", + "Comment": "" + }, + { + "Id": "ncu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chumburung", + "Comment": "" + }, + { + "Id": "ncx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Central Puebla Nahuatl", + "Comment": "" + }, + { + "Id": "ncz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Natchez", + "Comment": "" + }, + { + "Id": "nda", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ndasa", + "Comment": "" + }, + { + "Id": "ndb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kenswei Nsei", + "Comment": "" + }, + { + "Id": "ndc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ndau", + "Comment": "" + }, + { + "Id": "ndd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nde-Nsele-Nta", + "Comment": "" + }, + { + "Id": "nde", + "Part2B": "nde", + "Part2T": "nde", + "Part1": "nd", + "Scope": "I", + "LanguageType": "L", + "RefName": "North Ndebele", + "Comment": "" + }, + { + "Id": "ndf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Nadruvian", + "Comment": "" + }, + { + "Id": "ndg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ndengereko", + "Comment": "" + }, + { + "Id": "ndh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ndali", + "Comment": "" + }, + { + "Id": "ndi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Samba Leko", + "Comment": "" + }, + { + "Id": "ndj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ndamba", + "Comment": "" + }, + { + "Id": "ndk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ndaka", + "Comment": "" + }, + { + "Id": "ndl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ndolo", + "Comment": "" + }, + { + "Id": "ndm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ndam", + "Comment": "" + }, + { + "Id": "ndn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ngundi", + "Comment": "" + }, + { + "Id": "ndo", + "Part2B": "ndo", + "Part2T": "ndo", + "Part1": "ng", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ndonga", + "Comment": "" + }, + { + "Id": "ndp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ndo", + "Comment": "" + }, + { + "Id": "ndq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ndombe", + "Comment": "" + }, + { + "Id": "ndr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ndoola", + "Comment": "" + }, + { + "Id": "nds", + "Part2B": "nds", + "Part2T": "nds", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Low German", + "Comment": "" + }, + { + "Id": "ndt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ndunga", + "Comment": "" + }, + { + "Id": "ndu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dugun", + "Comment": "" + }, + { + "Id": "ndv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ndut", + "Comment": "" + }, + { + "Id": "ndw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ndobo", + "Comment": "" + }, + { + "Id": "ndx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nduga", + "Comment": "" + }, + { + "Id": "ndy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lutos", + "Comment": "" + }, + { + "Id": "ndz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ndogo", + "Comment": "" + }, + { + "Id": "nea", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Eastern Ngad\u0027a", + "Comment": "" + }, + { + "Id": "neb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Toura (C\u00F4te d\u0027Ivoire)", + "Comment": "" + }, + { + "Id": "nec", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nedebang", + "Comment": "" + }, + { + "Id": "ned", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nde-Gbite", + "Comment": "" + }, + { + "Id": "nee", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "N\u00EAl\u00EAmwa-Nixumwak", + "Comment": "" + }, + { + "Id": "nef", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nefamese", + "Comment": "" + }, + { + "Id": "neg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Negidal", + "Comment": "" + }, + { + "Id": "neh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nyenkha", + "Comment": "" + }, + { + "Id": "nei", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Neo-Hittite", + "Comment": "" + }, + { + "Id": "nej", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Neko", + "Comment": "" + }, + { + "Id": "nek", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Neku", + "Comment": "" + }, + { + "Id": "nem", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nemi", + "Comment": "" + }, + { + "Id": "nen", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nengone", + "Comment": "" + }, + { + "Id": "neo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "N\u00E1-Meo", + "Comment": "" + }, + { + "Id": "nep", + "Part2B": "nep", + "Part2T": "nep", + "Part1": "ne", + "Scope": "M", + "LanguageType": "L", + "RefName": "Nepali (macrolanguage)", + "Comment": "" + }, + { + "Id": "neq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "North Central Mixe", + "Comment": "" + }, + { + "Id": "ner", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yahadian", + "Comment": "" + }, + { + "Id": "nes", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bhoti Kinnauri", + "Comment": "" + }, + { + "Id": "net", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nete", + "Comment": "" + }, + { + "Id": "neu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "C", + "RefName": "Neo", + "Comment": "" + }, + { + "Id": "nev", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nyaheun", + "Comment": "" + }, + { + "Id": "new", + "Part2B": "new", + "Part2T": "new", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nepal Bhasa", + "Comment": "" + }, + { + "Id": "nex", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Neme", + "Comment": "" + }, + { + "Id": "ney", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Neyo", + "Comment": "" + }, + { + "Id": "nez", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nez Perce", + "Comment": "" + }, + { + "Id": "nfa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dhao", + "Comment": "" + }, + { + "Id": "nfd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ahwai", + "Comment": "" + }, + { + "Id": "nfl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ayiwo", + "Comment": "" + }, + { + "Id": "nfr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nafaanra", + "Comment": "" + }, + { + "Id": "nfu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mfumte", + "Comment": "" + }, + { + "Id": "nga", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ngbaka", + "Comment": "" + }, + { + "Id": "ngb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Northern Ngbandi", + "Comment": "" + }, + { + "Id": "ngc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ngombe (Democratic Republic of Congo)", + "Comment": "" + }, + { + "Id": "ngd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ngando (Central African Republic)", + "Comment": "" + }, + { + "Id": "nge", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ngemba", + "Comment": "" + }, + { + "Id": "ngg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ngbaka Manza", + "Comment": "" + }, + { + "Id": "ngh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "N\u01C1ng", + "Comment": "" + }, + { + "Id": "ngi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ngizim", + "Comment": "" + }, + { + "Id": "ngj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ngie", + "Comment": "" + }, + { + "Id": "ngk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dalabon", + "Comment": "" + }, + { + "Id": "ngl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lomwe", + "Comment": "" + }, + { + "Id": "ngm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ngatik Men\u0027s Creole", + "Comment": "" + }, + { + "Id": "ngn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ngwo", + "Comment": "" + }, + { + "Id": "ngp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ngulu", + "Comment": "" + }, + { + "Id": "ngq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ngurimi", + "Comment": "" + }, + { + "Id": "ngr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Engdewu", + "Comment": "" + }, + { + "Id": "ngs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gvoko", + "Comment": "" + }, + { + "Id": "ngt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kriang", + "Comment": "" + }, + { + "Id": "ngu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Guerrero Nahuatl", + "Comment": "" + }, + { + "Id": "ngv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Nagumi", + "Comment": "" + }, + { + "Id": "ngw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ngwaba", + "Comment": "" + }, + { + "Id": "ngx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nggwahyi", + "Comment": "" + }, + { + "Id": "ngy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tibea", + "Comment": "" + }, + { + "Id": "ngz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ngungwel", + "Comment": "" + }, + { + "Id": "nha", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nhanda", + "Comment": "" + }, + { + "Id": "nhb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Beng", + "Comment": "" + }, + { + "Id": "nhc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Tabasco Nahuatl", + "Comment": "" + }, + { + "Id": "nhd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chirip\u00E1", + "Comment": "" + }, + { + "Id": "nhe", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Eastern Huasteca Nahuatl", + "Comment": "" + }, + { + "Id": "nhf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nhuwala", + "Comment": "" + }, + { + "Id": "nhg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tetelcingo Nahuatl", + "Comment": "" + }, + { + "Id": "nhh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nahari", + "Comment": "" + }, + { + "Id": "nhi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Zacatl\u00E1n-Ahuacatl\u00E1n-Tepetzintla Nahuatl", + "Comment": "" + }, + { + "Id": "nhk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Isthmus-Cosoleacaque Nahuatl", + "Comment": "" + }, + { + "Id": "nhm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Morelos Nahuatl", + "Comment": "" + }, + { + "Id": "nhn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Central Nahuatl", + "Comment": "" + }, + { + "Id": "nho", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Takuu", + "Comment": "" + }, + { + "Id": "nhp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Isthmus-Pajapan Nahuatl", + "Comment": "" + }, + { + "Id": "nhq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Huaxcaleca Nahuatl", + "Comment": "" + }, + { + "Id": "nhr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Naro", + "Comment": "" + }, + { + "Id": "nht", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ometepec Nahuatl", + "Comment": "" + }, + { + "Id": "nhu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Noone", + "Comment": "" + }, + { + "Id": "nhv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Temascaltepec Nahuatl", + "Comment": "" + }, + { + "Id": "nhw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Western Huasteca Nahuatl", + "Comment": "" + }, + { + "Id": "nhx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Isthmus-Mecayapan Nahuatl", + "Comment": "" + }, + { + "Id": "nhy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Northern Oaxaca Nahuatl", + "Comment": "" + }, + { + "Id": "nhz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Santa Mar\u00EDa La Alta Nahuatl", + "Comment": "" + }, + { + "Id": "nia", + "Part2B": "nia", + "Part2T": "nia", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nias", + "Comment": "" + }, + { + "Id": "nib", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nakame", + "Comment": "" + }, + { + "Id": "nid", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Ngandi", + "Comment": "" + }, + { + "Id": "nie", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Niellim", + "Comment": "" + }, + { + "Id": "nif", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nek", + "Comment": "" + }, + { + "Id": "nig", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Ngalakgan", + "Comment": "" + }, + { + "Id": "nih", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nyiha (Tanzania)", + "Comment": "" + }, + { + "Id": "nii", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nii", + "Comment": "" + }, + { + "Id": "nij", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ngaju", + "Comment": "" + }, + { + "Id": "nik", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southern Nicobarese", + "Comment": "" + }, + { + "Id": "nil", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nila", + "Comment": "" + }, + { + "Id": "nim", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nilamba", + "Comment": "" + }, + { + "Id": "nin", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ninzo", + "Comment": "" + }, + { + "Id": "nio", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nganasan", + "Comment": "" + }, + { + "Id": "niq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nandi", + "Comment": "" + }, + { + "Id": "nir", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nimboran", + "Comment": "" + }, + { + "Id": "nis", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nimi", + "Comment": "" + }, + { + "Id": "nit", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southeastern Kolami", + "Comment": "" + }, + { + "Id": "niu", + "Part2B": "niu", + "Part2T": "niu", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Niuean", + "Comment": "" + }, + { + "Id": "niv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gilyak", + "Comment": "" + }, + { + "Id": "niw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nimo", + "Comment": "" + }, + { + "Id": "nix", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hema", + "Comment": "" + }, + { + "Id": "niy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ngiti", + "Comment": "" + }, + { + "Id": "niz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ningil", + "Comment": "" + }, + { + "Id": "nja", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nzanyi", + "Comment": "" + }, + { + "Id": "njb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nocte Naga", + "Comment": "" + }, + { + "Id": "njd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ndonde Hamba", + "Comment": "" + }, + { + "Id": "njh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lotha Naga", + "Comment": "" + }, + { + "Id": "nji", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gudanji", + "Comment": "" + }, + { + "Id": "njj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Njen", + "Comment": "" + }, + { + "Id": "njl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Njalgulgule", + "Comment": "" + }, + { + "Id": "njm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Angami Naga", + "Comment": "" + }, + { + "Id": "njn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Liangmai Naga", + "Comment": "" + }, + { + "Id": "njo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ao Naga", + "Comment": "" + }, + { + "Id": "njr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Njerep", + "Comment": "" + }, + { + "Id": "njs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nisa", + "Comment": "" + }, + { + "Id": "njt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ndyuka-Trio Pidgin", + "Comment": "" + }, + { + "Id": "nju", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ngadjunmaya", + "Comment": "" + }, + { + "Id": "njx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kunyi", + "Comment": "" + }, + { + "Id": "njy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Njyem", + "Comment": "" + }, + { + "Id": "njz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nyishi", + "Comment": "" + }, + { + "Id": "nka", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nkoya", + "Comment": "" + }, + { + "Id": "nkb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Khoibu Naga", + "Comment": "" + }, + { + "Id": "nkc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nkongho", + "Comment": "" + }, + { + "Id": "nkd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Koireng", + "Comment": "" + }, + { + "Id": "nke", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Duke", + "Comment": "" + }, + { + "Id": "nkf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Inpui Naga", + "Comment": "" + }, + { + "Id": "nkg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nekgini", + "Comment": "" + }, + { + "Id": "nkh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Khezha Naga", + "Comment": "" + }, + { + "Id": "nki", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Thangal Naga", + "Comment": "" + }, + { + "Id": "nkj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nakai", + "Comment": "" + }, + { + "Id": "nkk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nokuku", + "Comment": "" + }, + { + "Id": "nkm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Namat", + "Comment": "" + }, + { + "Id": "nkn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nkangala", + "Comment": "" + }, + { + "Id": "nko", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nkonya", + "Comment": "" + }, + { + "Id": "nkp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Niuatoputapu", + "Comment": "" + }, + { + "Id": "nkq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nkami", + "Comment": "" + }, + { + "Id": "nkr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nukuoro", + "Comment": "" + }, + { + "Id": "nks", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "North Asmat", + "Comment": "" + }, + { + "Id": "nkt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nyika (Tanzania)", + "Comment": "" + }, + { + "Id": "nku", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bouna Kulango", + "Comment": "" + }, + { + "Id": "nkv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nyika (Malawi and Zambia)", + "Comment": "" + }, + { + "Id": "nkw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nkutu", + "Comment": "" + }, + { + "Id": "nkx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nkoroo", + "Comment": "" + }, + { + "Id": "nkz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nkari", + "Comment": "" + }, + { + "Id": "nla", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ngombale", + "Comment": "" + }, + { + "Id": "nlc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nalca", + "Comment": "" + }, + { + "Id": "nld", + "Part2B": "dut", + "Part2T": "nld", + "Part1": "nl", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dutch", + "Comment": "" + }, + { + "Id": "nle", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "East Nyala", + "Comment": "" + }, + { + "Id": "nlg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gela", + "Comment": "" + }, + { + "Id": "nli", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Grangali", + "Comment": "" + }, + { + "Id": "nlj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nyali", + "Comment": "" + }, + { + "Id": "nlk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ninia Yali", + "Comment": "" + }, + { + "Id": "nll", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nihali", + "Comment": "" + }, + { + "Id": "nlm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mankiyali", + "Comment": "" + }, + { + "Id": "nlo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ngul", + "Comment": "" + }, + { + "Id": "nlq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lao Naga", + "Comment": "" + }, + { + "Id": "nlu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nchumbulu", + "Comment": "" + }, + { + "Id": "nlv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Orizaba Nahuatl", + "Comment": "" + }, + { + "Id": "nlw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Walangama", + "Comment": "" + }, + { + "Id": "nlx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nahali", + "Comment": "" + }, + { + "Id": "nly", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nyamal", + "Comment": "" + }, + { + "Id": "nlz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nal\u00F6go", + "Comment": "" + }, + { + "Id": "nma", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Maram Naga", + "Comment": "" + }, + { + "Id": "nmb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Big Nambas", + "Comment": "" + }, + { + "Id": "nmc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ngam", + "Comment": "" + }, + { + "Id": "nmd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ndumu", + "Comment": "" + }, + { + "Id": "nme", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mzieme Naga", + "Comment": "" + }, + { + "Id": "nmf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tangkhul Naga (India)", + "Comment": "" + }, + { + "Id": "nmg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kwasio", + "Comment": "" + }, + { + "Id": "nmh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Monsang Naga", + "Comment": "" + }, + { + "Id": "nmi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nyam", + "Comment": "" + }, + { + "Id": "nmj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ngombe (Central African Republic)", + "Comment": "" + }, + { + "Id": "nmk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Namakura", + "Comment": "" + }, + { + "Id": "nml", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ndemli", + "Comment": "" + }, + { + "Id": "nmm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Manangba", + "Comment": "" + }, + { + "Id": "nmn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "\u01C3X\u00F3\u00F5", + "Comment": "" + }, + { + "Id": "nmo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Moyon Naga", + "Comment": "" + }, + { + "Id": "nmp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Nimanbur", + "Comment": "" + }, + { + "Id": "nmq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nambya", + "Comment": "" + }, + { + "Id": "nmr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Nimbari", + "Comment": "" + }, + { + "Id": "nms", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Letemboi", + "Comment": "" + }, + { + "Id": "nmt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Namonuito", + "Comment": "" + }, + { + "Id": "nmu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Northeast Maidu", + "Comment": "" + }, + { + "Id": "nmv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Ngamini", + "Comment": "" + }, + { + "Id": "nmw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nimoa", + "Comment": "" + }, + { + "Id": "nmx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nama (Papua New Guinea)", + "Comment": "" + }, + { + "Id": "nmy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Namuyi", + "Comment": "" + }, + { + "Id": "nmz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nawdm", + "Comment": "" + }, + { + "Id": "nna", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nyangumarta", + "Comment": "" + }, + { + "Id": "nnb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nande", + "Comment": "" + }, + { + "Id": "nnc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nancere", + "Comment": "" + }, + { + "Id": "nnd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "West Ambae", + "Comment": "" + }, + { + "Id": "nne", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ngandyera", + "Comment": "" + }, + { + "Id": "nnf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ngaing", + "Comment": "" + }, + { + "Id": "nng", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Maring Naga", + "Comment": "" + }, + { + "Id": "nnh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ngiemboon", + "Comment": "" + }, + { + "Id": "nni", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "North Nuaulu", + "Comment": "" + }, + { + "Id": "nnj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nyangatom", + "Comment": "" + }, + { + "Id": "nnk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nankina", + "Comment": "" + }, + { + "Id": "nnl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Northern Rengma Naga", + "Comment": "" + }, + { + "Id": "nnm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Namia", + "Comment": "" + }, + { + "Id": "nnn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ngete", + "Comment": "" + }, + { + "Id": "nno", + "Part2B": "nno", + "Part2T": "nno", + "Part1": "nn", + "Scope": "I", + "LanguageType": "L", + "RefName": "Norwegian Nynorsk", + "Comment": "" + }, + { + "Id": "nnp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wancho Naga", + "Comment": "" + }, + { + "Id": "nnq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ngindo", + "Comment": "" + }, + { + "Id": "nnr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Narungga", + "Comment": "" + }, + { + "Id": "nnt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Nanticoke", + "Comment": "" + }, + { + "Id": "nnu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dwang", + "Comment": "" + }, + { + "Id": "nnv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Nugunu (Australia)", + "Comment": "" + }, + { + "Id": "nnw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southern Nuni", + "Comment": "" + }, + { + "Id": "nny", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Nyangga", + "Comment": "" + }, + { + "Id": "nnz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nda\u0027nda\u0027", + "Comment": "" + }, + { + "Id": "noa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Woun Meu", + "Comment": "" + }, + { + "Id": "nob", + "Part2B": "nob", + "Part2T": "nob", + "Part1": "nb", + "Scope": "I", + "LanguageType": "L", + "RefName": "Norwegian Bokm\u00E5l", + "Comment": "" + }, + { + "Id": "noc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nuk", + "Comment": "" + }, + { + "Id": "nod", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Northern Thai", + "Comment": "" + }, + { + "Id": "noe", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nimadi", + "Comment": "" + }, + { + "Id": "nof", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nomane", + "Comment": "" + }, + { + "Id": "nog", + "Part2B": "nog", + "Part2T": "nog", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nogai", + "Comment": "" + }, + { + "Id": "noh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nomu", + "Comment": "" + }, + { + "Id": "noi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Noiri", + "Comment": "" + }, + { + "Id": "noj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nonuya", + "Comment": "" + }, + { + "Id": "nok", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Nooksack", + "Comment": "" + }, + { + "Id": "nol", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Nomlaki", + "Comment": "" + }, + { + "Id": "non", + "Part2B": "non", + "Part2T": "non", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Old Norse", + "Comment": "" + }, + { + "Id": "nop", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Numanggang", + "Comment": "" + }, + { + "Id": "noq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ngongo", + "Comment": "" + }, + { + "Id": "nor", + "Part2B": "nor", + "Part2T": "nor", + "Part1": "no", + "Scope": "M", + "LanguageType": "L", + "RefName": "Norwegian", + "Comment": "" + }, + { + "Id": "nos", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Eastern Nisu", + "Comment": "" + }, + { + "Id": "not", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nomatsiguenga", + "Comment": "" + }, + { + "Id": "nou", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ewage-Notu", + "Comment": "" + }, + { + "Id": "nov", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "C", + "RefName": "Novial", + "Comment": "" + }, + { + "Id": "now", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nyambo", + "Comment": "" + }, + { + "Id": "noy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Noy", + "Comment": "" + }, + { + "Id": "noz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nayi", + "Comment": "" + }, + { + "Id": "npa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nar Phu", + "Comment": "" + }, + { + "Id": "npb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nupbikha", + "Comment": "" + }, + { + "Id": "npg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ponyo-Gongwang Naga", + "Comment": "" + }, + { + "Id": "nph", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Phom Naga", + "Comment": "" + }, + { + "Id": "npi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nepali (individual language)", + "Comment": "" + }, + { + "Id": "npl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southeastern Puebla Nahuatl", + "Comment": "" + }, + { + "Id": "npn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mondropolon", + "Comment": "" + }, + { + "Id": "npo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pochuri Naga", + "Comment": "" + }, + { + "Id": "nps", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nipsan", + "Comment": "" + }, + { + "Id": "npu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Puimei Naga", + "Comment": "" + }, + { + "Id": "npx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Noipx", + "Comment": "" + }, + { + "Id": "npy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Napu", + "Comment": "" + }, + { + "Id": "nqg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southern Nago", + "Comment": "" + }, + { + "Id": "nqk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kura Ede Nago", + "Comment": "" + }, + { + "Id": "nql", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ngendelengo", + "Comment": "" + }, + { + "Id": "nqm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ndom", + "Comment": "" + }, + { + "Id": "nqn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nen", + "Comment": "" + }, + { + "Id": "nqo", + "Part2B": "nqo", + "Part2T": "nqo", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "N\u0027Ko", + "Comment": "" + }, + { + "Id": "nqq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kyan-Karyaw Naga", + "Comment": "" + }, + { + "Id": "nqt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nteng", + "Comment": "" + }, + { + "Id": "nqy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Akyaung Ari Naga", + "Comment": "" + }, + { + "Id": "nra", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ngom", + "Comment": "" + }, + { + "Id": "nrb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nara", + "Comment": "" + }, + { + "Id": "nrc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Noric", + "Comment": "" + }, + { + "Id": "nre", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southern Rengma Naga", + "Comment": "" + }, + { + "Id": "nrf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "J\u00E8rriais", + "Comment": "" + }, + { + "Id": "nrg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Narango", + "Comment": "" + }, + { + "Id": "nri", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chokri Naga", + "Comment": "" + }, + { + "Id": "nrk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ngarla", + "Comment": "" + }, + { + "Id": "nrl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ngarluma", + "Comment": "" + }, + { + "Id": "nrm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Narom", + "Comment": "" + }, + { + "Id": "nrn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Norn", + "Comment": "" + }, + { + "Id": "nrp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "North Picene", + "Comment": "" + }, + { + "Id": "nrr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Norra", + "Comment": "" + }, + { + "Id": "nrt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Northern Kalapuya", + "Comment": "" + }, + { + "Id": "nru", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Narua", + "Comment": "" + }, + { + "Id": "nrx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Ngurmbur", + "Comment": "" + }, + { + "Id": "nrz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lala", + "Comment": "" + }, + { + "Id": "nsa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sangtam Naga", + "Comment": "" + }, + { + "Id": "nsb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Lower Nossob", + "Comment": "" + }, + { + "Id": "nsc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nshi", + "Comment": "" + }, + { + "Id": "nsd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southern Nisu", + "Comment": "" + }, + { + "Id": "nse", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nsenga", + "Comment": "" + }, + { + "Id": "nsf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Northwestern Nisu", + "Comment": "" + }, + { + "Id": "nsg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ngasa", + "Comment": "" + }, + { + "Id": "nsh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ngoshie", + "Comment": "" + }, + { + "Id": "nsi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nigerian Sign Language", + "Comment": "" + }, + { + "Id": "nsk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Naskapi", + "Comment": "" + }, + { + "Id": "nsl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Norwegian Sign Language", + "Comment": "" + }, + { + "Id": "nsm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sumi Naga", + "Comment": "" + }, + { + "Id": "nsn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nehan", + "Comment": "" + }, + { + "Id": "nso", + "Part2B": "nso", + "Part2T": "nso", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pedi", + "Comment": "" + }, + { + "Id": "nsp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nepalese Sign Language", + "Comment": "" + }, + { + "Id": "nsq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Northern Sierra Miwok", + "Comment": "" + }, + { + "Id": "nsr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Maritime Sign Language", + "Comment": "" + }, + { + "Id": "nss", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nali", + "Comment": "" + }, + { + "Id": "nst", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tase Naga", + "Comment": "" + }, + { + "Id": "nsu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sierra Negra Nahuatl", + "Comment": "" + }, + { + "Id": "nsv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southwestern Nisu", + "Comment": "" + }, + { + "Id": "nsw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Navut", + "Comment": "" + }, + { + "Id": "nsx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nsongo", + "Comment": "" + }, + { + "Id": "nsy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nasal", + "Comment": "" + }, + { + "Id": "nsz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nisenan", + "Comment": "" + }, + { + "Id": "ntd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Northern Tidung", + "Comment": "" + }, + { + "Id": "ntg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Ngantangarra", + "Comment": "" + }, + { + "Id": "nti", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Natioro", + "Comment": "" + }, + { + "Id": "ntj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ngaanyatjarra", + "Comment": "" + }, + { + "Id": "ntk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ikoma-Nata-Isenye", + "Comment": "" + }, + { + "Id": "ntm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nateni", + "Comment": "" + }, + { + "Id": "nto", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ntomba", + "Comment": "" + }, + { + "Id": "ntp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Northern Tepehuan", + "Comment": "" + }, + { + "Id": "ntr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Delo", + "Comment": "" + }, + { + "Id": "ntu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nat\u00FCgu", + "Comment": "" + }, + { + "Id": "ntw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Nottoway", + "Comment": "" + }, + { + "Id": "ntx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tangkhul Naga (Myanmar)", + "Comment": "" + }, + { + "Id": "nty", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mantsi", + "Comment": "" + }, + { + "Id": "ntz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Natanzi", + "Comment": "" + }, + { + "Id": "nua", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yuanga", + "Comment": "" + }, + { + "Id": "nuc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Nukuini", + "Comment": "" + }, + { + "Id": "nud", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ngala", + "Comment": "" + }, + { + "Id": "nue", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ngundu", + "Comment": "" + }, + { + "Id": "nuf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nusu", + "Comment": "" + }, + { + "Id": "nug", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Nungali", + "Comment": "" + }, + { + "Id": "nuh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ndunda", + "Comment": "" + }, + { + "Id": "nui", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ngumbi", + "Comment": "" + }, + { + "Id": "nuj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nyole", + "Comment": "" + }, + { + "Id": "nuk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nuu-chah-nulth", + "Comment": "" + }, + { + "Id": "nul", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Nusa Laut", + "Comment": "" + }, + { + "Id": "num", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Niuafo\u0027ou", + "Comment": "" + }, + { + "Id": "nun", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Anong", + "Comment": "" + }, + { + "Id": "nuo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ngu\u00F4n", + "Comment": "" + }, + { + "Id": "nup", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nupe-Nupe-Tako", + "Comment": "" + }, + { + "Id": "nuq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nukumanu", + "Comment": "" + }, + { + "Id": "nur", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nukuria", + "Comment": "" + }, + { + "Id": "nus", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nuer", + "Comment": "" + }, + { + "Id": "nut", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nung (Viet Nam)", + "Comment": "" + }, + { + "Id": "nuu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ngbundu", + "Comment": "" + }, + { + "Id": "nuv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Northern Nuni", + "Comment": "" + }, + { + "Id": "nuw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nguluwan", + "Comment": "" + }, + { + "Id": "nux", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mehek", + "Comment": "" + }, + { + "Id": "nuy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nunggubuyu", + "Comment": "" + }, + { + "Id": "nuz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tlamacazapa Nahuatl", + "Comment": "" + }, + { + "Id": "nvh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nasarian", + "Comment": "" + }, + { + "Id": "nvm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Namiae", + "Comment": "" + }, + { + "Id": "nvo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nyokon", + "Comment": "" + }, + { + "Id": "nwa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Nawathinehena", + "Comment": "" + }, + { + "Id": "nwb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nyabwa", + "Comment": "" + }, + { + "Id": "nwc", + "Part2B": "nwc", + "Part2T": "nwc", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Classical Newari", + "Comment": "" + }, + { + "Id": "nwe", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ngwe", + "Comment": "" + }, + { + "Id": "nwg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Ngayawung", + "Comment": "" + }, + { + "Id": "nwi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southwest Tanna", + "Comment": "" + }, + { + "Id": "nwm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nyamusa-Molo", + "Comment": "" + }, + { + "Id": "nwo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Nauo", + "Comment": "" + }, + { + "Id": "nwr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nawaru", + "Comment": "" + }, + { + "Id": "nww", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ndwewe", + "Comment": "" + }, + { + "Id": "nwx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Middle Newar", + "Comment": "" + }, + { + "Id": "nwy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Nottoway-Meherrin", + "Comment": "" + }, + { + "Id": "nxa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nauete", + "Comment": "" + }, + { + "Id": "nxd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ngando (Democratic Republic of Congo)", + "Comment": "" + }, + { + "Id": "nxe", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nage", + "Comment": "" + }, + { + "Id": "nxg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ngad\u0027a", + "Comment": "" + }, + { + "Id": "nxi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nindi", + "Comment": "" + }, + { + "Id": "nxk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Koki Naga", + "Comment": "" + }, + { + "Id": "nxl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "South Nuaulu", + "Comment": "" + }, + { + "Id": "nxm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Numidian", + "Comment": "" + }, + { + "Id": "nxn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Ngawun", + "Comment": "" + }, + { + "Id": "nxo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ndambomo", + "Comment": "" + }, + { + "Id": "nxq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Naxi", + "Comment": "" + }, + { + "Id": "nxr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ninggerum", + "Comment": "" + }, + { + "Id": "nxx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nafri", + "Comment": "" + }, + { + "Id": "nya", + "Part2B": "nya", + "Part2T": "nya", + "Part1": "ny", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nyanja", + "Comment": "" + }, + { + "Id": "nyb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nyangbo", + "Comment": "" + }, + { + "Id": "nyc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nyanga-li", + "Comment": "" + }, + { + "Id": "nyd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nyore", + "Comment": "" + }, + { + "Id": "nye", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nyengo", + "Comment": "" + }, + { + "Id": "nyf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Giryama", + "Comment": "" + }, + { + "Id": "nyg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nyindu", + "Comment": "" + }, + { + "Id": "nyh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nyikina", + "Comment": "" + }, + { + "Id": "nyi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ama (Sudan)", + "Comment": "" + }, + { + "Id": "nyj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nyanga", + "Comment": "" + }, + { + "Id": "nyk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nyaneka", + "Comment": "" + }, + { + "Id": "nyl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nyeu", + "Comment": "" + }, + { + "Id": "nym", + "Part2B": "nym", + "Part2T": "nym", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nyamwezi", + "Comment": "" + }, + { + "Id": "nyn", + "Part2B": "nyn", + "Part2T": "nyn", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nyankole", + "Comment": "" + }, + { + "Id": "nyo", + "Part2B": "nyo", + "Part2T": "nyo", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nyoro", + "Comment": "" + }, + { + "Id": "nyp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Nyang\u0027i", + "Comment": "" + }, + { + "Id": "nyq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nayini", + "Comment": "" + }, + { + "Id": "nyr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nyiha (Malawi)", + "Comment": "" + }, + { + "Id": "nys", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nyungar", + "Comment": "" + }, + { + "Id": "nyt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Nyawaygi", + "Comment": "" + }, + { + "Id": "nyu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nyungwe", + "Comment": "" + }, + { + "Id": "nyv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Nyulnyul", + "Comment": "" + }, + { + "Id": "nyw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nyaw", + "Comment": "" + }, + { + "Id": "nyx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Nganyaywana", + "Comment": "" + }, + { + "Id": "nyy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nyakyusa-Ngonde", + "Comment": "" + }, + { + "Id": "nza", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tigon Mbembe", + "Comment": "" + }, + { + "Id": "nzb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Njebi", + "Comment": "" + }, + { + "Id": "nzd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nzadi", + "Comment": "" + }, + { + "Id": "nzi", + "Part2B": "nzi", + "Part2T": "nzi", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nzima", + "Comment": "" + }, + { + "Id": "nzk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nzakara", + "Comment": "" + }, + { + "Id": "nzm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Zeme Naga", + "Comment": "" + }, + { + "Id": "nzr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dir-Nyamzak-Mbarimi", + "Comment": "" + }, + { + "Id": "nzs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "New Zealand Sign Language", + "Comment": "" + }, + { + "Id": "nzu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Teke-Nzikou", + "Comment": "" + }, + { + "Id": "nzy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nzakambay", + "Comment": "" + }, + { + "Id": "nzz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nanga Dama Dogon", + "Comment": "" + }, + { + "Id": "oaa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Orok", + "Comment": "" + }, + { + "Id": "oac", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Oroch", + "Comment": "" + }, + { + "Id": "oak", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Noakhali", + "Comment": "" + }, + { + "Id": "oar", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Old Aramaic (up to 700 BCE)", + "Comment": "" + }, + { + "Id": "oav", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Old Avar", + "Comment": "" + }, + { + "Id": "obi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Obispe\u00F1o", + "Comment": "" + }, + { + "Id": "obk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southern Bontok", + "Comment": "" + }, + { + "Id": "obl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Oblo", + "Comment": "" + }, + { + "Id": "obm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Moabite", + "Comment": "" + }, + { + "Id": "obo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Obo Manobo", + "Comment": "" + }, + { + "Id": "obr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Old Burmese", + "Comment": "" + }, + { + "Id": "obt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Old Breton", + "Comment": "" + }, + { + "Id": "obu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Obulom", + "Comment": "" + }, + { + "Id": "oca", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ocaina", + "Comment": "" + }, + { + "Id": "och", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Old Chinese", + "Comment": "" + }, + { + "Id": "oci", + "Part2B": "oci", + "Part2T": "oci", + "Part1": "oc", + "Scope": "I", + "LanguageType": "L", + "RefName": "Occitan (post 1500)", + "Comment": "" + }, + { + "Id": "ocm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Old Cham", + "Comment": "" + }, + { + "Id": "oco", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Old Cornish", + "Comment": "" + }, + { + "Id": "ocu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Atzingo Matlatzinca", + "Comment": "" + }, + { + "Id": "oda", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Odut", + "Comment": "" + }, + { + "Id": "odk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Od", + "Comment": "" + }, + { + "Id": "odt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Old Dutch", + "Comment": "" + }, + { + "Id": "odu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Odual", + "Comment": "" + }, + { + "Id": "ofo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Ofo", + "Comment": "" + }, + { + "Id": "ofs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Old Frisian", + "Comment": "" + }, + { + "Id": "ofu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Efutop", + "Comment": "" + }, + { + "Id": "ogb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ogbia", + "Comment": "" + }, + { + "Id": "ogc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ogbah", + "Comment": "" + }, + { + "Id": "oge", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Old Georgian", + "Comment": "" + }, + { + "Id": "ogg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ogbogolo", + "Comment": "" + }, + { + "Id": "ogo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Khana", + "Comment": "" + }, + { + "Id": "ogu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ogbronuagum", + "Comment": "" + }, + { + "Id": "oht", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Old Hittite", + "Comment": "" + }, + { + "Id": "ohu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Old Hungarian", + "Comment": "" + }, + { + "Id": "oia", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Oirata", + "Comment": "" + }, + { + "Id": "oie", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Okolie", + "Comment": "" + }, + { + "Id": "oin", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Inebu One", + "Comment": "" + }, + { + "Id": "ojb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Northwestern Ojibwa", + "Comment": "" + }, + { + "Id": "ojc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Central Ojibwa", + "Comment": "" + }, + { + "Id": "ojg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Eastern Ojibwa", + "Comment": "" + }, + { + "Id": "oji", + "Part2B": "oji", + "Part2T": "oji", + "Part1": "oj", + "Scope": "M", + "LanguageType": "L", + "RefName": "Ojibwa", + "Comment": "" + }, + { + "Id": "ojp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Old Japanese", + "Comment": "" + }, + { + "Id": "ojs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Severn Ojibwa", + "Comment": "" + }, + { + "Id": "ojv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ontong Java", + "Comment": "" + }, + { + "Id": "ojw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Western Ojibwa", + "Comment": "" + }, + { + "Id": "oka", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Okanagan", + "Comment": "" + }, + { + "Id": "okb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Okobo", + "Comment": "" + }, + { + "Id": "okc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kobo", + "Comment": "" + }, + { + "Id": "okd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Okodia", + "Comment": "" + }, + { + "Id": "oke", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Okpe (Southwestern Edo)", + "Comment": "" + }, + { + "Id": "okg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Koko Babangk", + "Comment": "" + }, + { + "Id": "okh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Koresh-e Rostam", + "Comment": "" + }, + { + "Id": "oki", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Okiek", + "Comment": "" + }, + { + "Id": "okj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Oko-Juwoi", + "Comment": "" + }, + { + "Id": "okk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kwamtim One", + "Comment": "" + }, + { + "Id": "okl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Old Kentish Sign Language", + "Comment": "" + }, + { + "Id": "okm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Middle Korean (10th-16th cent.)", + "Comment": "" + }, + { + "Id": "okn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Oki-No-Erabu", + "Comment": "" + }, + { + "Id": "oko", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Old Korean (3rd-9th cent.)", + "Comment": "" + }, + { + "Id": "okr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kirike", + "Comment": "" + }, + { + "Id": "oks", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Oko-Eni-Osayen", + "Comment": "" + }, + { + "Id": "oku", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Oku", + "Comment": "" + }, + { + "Id": "okv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Orokaiva", + "Comment": "" + }, + { + "Id": "okx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Okpe (Northwestern Edo)", + "Comment": "" + }, + { + "Id": "okz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Old Khmer", + "Comment": "" + }, + { + "Id": "ola", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Walungge", + "Comment": "" + }, + { + "Id": "old", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mochi", + "Comment": "" + }, + { + "Id": "ole", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Olekha", + "Comment": "" + }, + { + "Id": "olk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Olkol", + "Comment": "" + }, + { + "Id": "olm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Oloma", + "Comment": "" + }, + { + "Id": "olo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Livvi", + "Comment": "" + }, + { + "Id": "olr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Olrat", + "Comment": "" + }, + { + "Id": "olt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Old Lithuanian", + "Comment": "" + }, + { + "Id": "olu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kuvale", + "Comment": "" + }, + { + "Id": "oma", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Omaha-Ponca", + "Comment": "" + }, + { + "Id": "omb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "East Ambae", + "Comment": "" + }, + { + "Id": "omc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Mochica", + "Comment": "" + }, + { + "Id": "omg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Omagua", + "Comment": "" + }, + { + "Id": "omi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Omi", + "Comment": "" + }, + { + "Id": "omk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Omok", + "Comment": "" + }, + { + "Id": "oml", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ombo", + "Comment": "" + }, + { + "Id": "omn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Minoan", + "Comment": "" + }, + { + "Id": "omo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Utarmbung", + "Comment": "" + }, + { + "Id": "omp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Old Manipuri", + "Comment": "" + }, + { + "Id": "omr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Old Marathi", + "Comment": "" + }, + { + "Id": "omt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Omotik", + "Comment": "" + }, + { + "Id": "omu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Omurano", + "Comment": "" + }, + { + "Id": "omw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "South Tairora", + "Comment": "" + }, + { + "Id": "omx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Old Mon", + "Comment": "" + }, + { + "Id": "omy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Old Malay", + "Comment": "" + }, + { + "Id": "ona", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ona", + "Comment": "" + }, + { + "Id": "onb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lingao", + "Comment": "" + }, + { + "Id": "one", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Oneida", + "Comment": "" + }, + { + "Id": "ong", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Olo", + "Comment": "" + }, + { + "Id": "oni", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Onin", + "Comment": "" + }, + { + "Id": "onj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Onjob", + "Comment": "" + }, + { + "Id": "onk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kabore One", + "Comment": "" + }, + { + "Id": "onn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Onobasulu", + "Comment": "" + }, + { + "Id": "ono", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Onondaga", + "Comment": "" + }, + { + "Id": "onp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sartang", + "Comment": "" + }, + { + "Id": "onr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Northern One", + "Comment": "" + }, + { + "Id": "ons", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ono", + "Comment": "" + }, + { + "Id": "ont", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ontenu", + "Comment": "" + }, + { + "Id": "onu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Unua", + "Comment": "" + }, + { + "Id": "onw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Old Nubian", + "Comment": "" + }, + { + "Id": "onx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Onin Based Pidgin", + "Comment": "" + }, + { + "Id": "ood", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tohono O\u0027odham", + "Comment": "" + }, + { + "Id": "oog", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ong", + "Comment": "" + }, + { + "Id": "oon", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "\u00D6nge", + "Comment": "" + }, + { + "Id": "oor", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Oorlams", + "Comment": "" + }, + { + "Id": "oos", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Old Ossetic", + "Comment": "" + }, + { + "Id": "opa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Okpamheri", + "Comment": "" + }, + { + "Id": "opk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kopkaka", + "Comment": "" + }, + { + "Id": "opm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Oksapmin", + "Comment": "" + }, + { + "Id": "opo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Opao", + "Comment": "" + }, + { + "Id": "opt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Opata", + "Comment": "" + }, + { + "Id": "opy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ofay\u00E9", + "Comment": "" + }, + { + "Id": "ora", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Oroha", + "Comment": "" + }, + { + "Id": "orc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Orma", + "Comment": "" + }, + { + "Id": "ore", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Orej\u00F3n", + "Comment": "" + }, + { + "Id": "org", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Oring", + "Comment": "" + }, + { + "Id": "orh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Oroqen", + "Comment": "" + }, + { + "Id": "ori", + "Part2B": "ori", + "Part2T": "ori", + "Part1": "or", + "Scope": "M", + "LanguageType": "L", + "RefName": "Oriya (macrolanguage)", + "Comment": "" + }, + { + "Id": "orm", + "Part2B": "orm", + "Part2T": "orm", + "Part1": "om", + "Scope": "M", + "LanguageType": "L", + "RefName": "Oromo", + "Comment": "" + }, + { + "Id": "orn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Orang Kanaq", + "Comment": "" + }, + { + "Id": "oro", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Orokolo", + "Comment": "" + }, + { + "Id": "orr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Oruma", + "Comment": "" + }, + { + "Id": "ors", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Orang Seletar", + "Comment": "" + }, + { + "Id": "ort", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Adivasi Oriya", + "Comment": "" + }, + { + "Id": "oru", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ormuri", + "Comment": "" + }, + { + "Id": "orv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Old Russian", + "Comment": "" + }, + { + "Id": "orw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Oro Win", + "Comment": "" + }, + { + "Id": "orx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Oro", + "Comment": "" + }, + { + "Id": "ory", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Odia", + "Comment": "" + }, + { + "Id": "orz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ormu", + "Comment": "" + }, + { + "Id": "osa", + "Part2B": "osa", + "Part2T": "osa", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Osage", + "Comment": "" + }, + { + "Id": "osc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Oscan", + "Comment": "" + }, + { + "Id": "osi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Osing", + "Comment": "" + }, + { + "Id": "osn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Old Sundanese", + "Comment": "" + }, + { + "Id": "oso", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ososo", + "Comment": "" + }, + { + "Id": "osp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Old Spanish", + "Comment": "" + }, + { + "Id": "oss", + "Part2B": "oss", + "Part2T": "oss", + "Part1": "os", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ossetian", + "Comment": "" + }, + { + "Id": "ost", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Osatu", + "Comment": "" + }, + { + "Id": "osu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southern One", + "Comment": "" + }, + { + "Id": "osx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Old Saxon", + "Comment": "" + }, + { + "Id": "ota", + "Part2B": "ota", + "Part2T": "ota", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Ottoman Turkish (1500-1928)", + "Comment": "" + }, + { + "Id": "otb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Old Tibetan", + "Comment": "" + }, + { + "Id": "otd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ot Danum", + "Comment": "" + }, + { + "Id": "ote", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mezquital Otomi", + "Comment": "" + }, + { + "Id": "oti", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Oti", + "Comment": "" + }, + { + "Id": "otk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Old Turkish", + "Comment": "" + }, + { + "Id": "otl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tilapa Otomi", + "Comment": "" + }, + { + "Id": "otm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Eastern Highland Otomi", + "Comment": "" + }, + { + "Id": "otn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tenango Otomi", + "Comment": "" + }, + { + "Id": "otq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Quer\u00E9taro Otomi", + "Comment": "" + }, + { + "Id": "otr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Otoro", + "Comment": "" + }, + { + "Id": "ots", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Estado de M\u00E9xico Otomi", + "Comment": "" + }, + { + "Id": "ott", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Temoaya Otomi", + "Comment": "" + }, + { + "Id": "otu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Otuke", + "Comment": "" + }, + { + "Id": "otw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ottawa", + "Comment": "" + }, + { + "Id": "otx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Texcatepec Otomi", + "Comment": "" + }, + { + "Id": "oty", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Old Tamil", + "Comment": "" + }, + { + "Id": "otz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ixtenco Otomi", + "Comment": "" + }, + { + "Id": "oua", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tagargrent", + "Comment": "" + }, + { + "Id": "oub", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Glio-Oubi", + "Comment": "" + }, + { + "Id": "oue", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Oune", + "Comment": "" + }, + { + "Id": "oui", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Old Uighur", + "Comment": "" + }, + { + "Id": "oum", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Ouma", + "Comment": "" + }, + { + "Id": "ovd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Elfdalian", + "Comment": "" + }, + { + "Id": "owi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Owiniga", + "Comment": "" + }, + { + "Id": "owl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Old Welsh", + "Comment": "" + }, + { + "Id": "oyb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Oy", + "Comment": "" + }, + { + "Id": "oyd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Oyda", + "Comment": "" + }, + { + "Id": "oym", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wayampi", + "Comment": "" + }, + { + "Id": "oyy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Oya\u0027oya", + "Comment": "" + }, + { + "Id": "ozm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Koonzime", + "Comment": "" + }, + { + "Id": "pab", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Parec\u00EDs", + "Comment": "" + }, + { + "Id": "pac", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pacoh", + "Comment": "" + }, + { + "Id": "pad", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Paumar\u00ED", + "Comment": "" + }, + { + "Id": "pae", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pagibete", + "Comment": "" + }, + { + "Id": "paf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Paranaw\u00E1t", + "Comment": "" + }, + { + "Id": "pag", + "Part2B": "pag", + "Part2T": "pag", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pangasinan", + "Comment": "" + }, + { + "Id": "pah", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tenharim", + "Comment": "" + }, + { + "Id": "pai", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pe", + "Comment": "" + }, + { + "Id": "pak", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Parakan\u00E3", + "Comment": "" + }, + { + "Id": "pal", + "Part2B": "pal", + "Part2T": "pal", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Pahlavi", + "Comment": "" + }, + { + "Id": "pam", + "Part2B": "pam", + "Part2T": "pam", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pampanga", + "Comment": "" + }, + { + "Id": "pan", + "Part2B": "pan", + "Part2T": "pan", + "Part1": "pa", + "Scope": "I", + "LanguageType": "L", + "RefName": "Panjabi", + "Comment": "" + }, + { + "Id": "pao", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Northern Paiute", + "Comment": "" + }, + { + "Id": "pap", + "Part2B": "pap", + "Part2T": "pap", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Papiamento", + "Comment": "" + }, + { + "Id": "paq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Parya", + "Comment": "" + }, + { + "Id": "par", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Panamint", + "Comment": "" + }, + { + "Id": "pas", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Papasena", + "Comment": "" + }, + { + "Id": "pau", + "Part2B": "pau", + "Part2T": "pau", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Palauan", + "Comment": "" + }, + { + "Id": "pav", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Paka\u00E1snovos", + "Comment": "" + }, + { + "Id": "paw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pawnee", + "Comment": "" + }, + { + "Id": "pax", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Pankarar\u00E9", + "Comment": "" + }, + { + "Id": "pay", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pech", + "Comment": "" + }, + { + "Id": "paz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Pankarar\u00FA", + "Comment": "" + }, + { + "Id": "pbb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "P\u00E1ez", + "Comment": "" + }, + { + "Id": "pbc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Patamona", + "Comment": "" + }, + { + "Id": "pbe", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mezontla Popoloca", + "Comment": "" + }, + { + "Id": "pbf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Coyotepec Popoloca", + "Comment": "" + }, + { + "Id": "pbg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Paraujano", + "Comment": "" + }, + { + "Id": "pbh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "E\u0027\u00F1apa Woromaipu", + "Comment": "" + }, + { + "Id": "pbi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Parkwa", + "Comment": "" + }, + { + "Id": "pbl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mak (Nigeria)", + "Comment": "" + }, + { + "Id": "pbm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Puebla Mazatec", + "Comment": "" + }, + { + "Id": "pbn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kpasam", + "Comment": "" + }, + { + "Id": "pbo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Papel", + "Comment": "" + }, + { + "Id": "pbp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Badyara", + "Comment": "" + }, + { + "Id": "pbr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pangwa", + "Comment": "" + }, + { + "Id": "pbs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Central Pame", + "Comment": "" + }, + { + "Id": "pbt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southern Pashto", + "Comment": "" + }, + { + "Id": "pbu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Northern Pashto", + "Comment": "" + }, + { + "Id": "pbv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pnar", + "Comment": "" + }, + { + "Id": "pby", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pyu (Papua New Guinea)", + "Comment": "" + }, + { + "Id": "pca", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Santa In\u00E9s Ahuatempan Popoloca", + "Comment": "" + }, + { + "Id": "pcb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pear", + "Comment": "" + }, + { + "Id": "pcc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bouyei", + "Comment": "" + }, + { + "Id": "pcd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Picard", + "Comment": "" + }, + { + "Id": "pce", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ruching Palaung", + "Comment": "" + }, + { + "Id": "pcf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Paliyan", + "Comment": "" + }, + { + "Id": "pcg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Paniya", + "Comment": "" + }, + { + "Id": "pch", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pardhan", + "Comment": "" + }, + { + "Id": "pci", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Duruwa", + "Comment": "" + }, + { + "Id": "pcj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Parenga", + "Comment": "" + }, + { + "Id": "pck", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Paite Chin", + "Comment": "" + }, + { + "Id": "pcl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pardhi", + "Comment": "" + }, + { + "Id": "pcm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nigerian Pidgin", + "Comment": "" + }, + { + "Id": "pcn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Piti", + "Comment": "" + }, + { + "Id": "pcp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pacahuara", + "Comment": "" + }, + { + "Id": "pcw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pyapun", + "Comment": "" + }, + { + "Id": "pda", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Anam", + "Comment": "" + }, + { + "Id": "pdc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pennsylvania German", + "Comment": "" + }, + { + "Id": "pdi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pa Di", + "Comment": "" + }, + { + "Id": "pdn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Podena", + "Comment": "" + }, + { + "Id": "pdo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Padoe", + "Comment": "" + }, + { + "Id": "pdt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Plautdietsch", + "Comment": "" + }, + { + "Id": "pdu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kayan", + "Comment": "" + }, + { + "Id": "pea", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Peranakan Indonesian", + "Comment": "" + }, + { + "Id": "peb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Eastern Pomo", + "Comment": "" + }, + { + "Id": "ped", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mala (Papua New Guinea)", + "Comment": "" + }, + { + "Id": "pee", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Taje", + "Comment": "" + }, + { + "Id": "pef", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Northeastern Pomo", + "Comment": "" + }, + { + "Id": "peg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pengo", + "Comment": "" + }, + { + "Id": "peh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bonan", + "Comment": "" + }, + { + "Id": "pei", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chichimeca-Jonaz", + "Comment": "" + }, + { + "Id": "pej", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Northern Pomo", + "Comment": "" + }, + { + "Id": "pek", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Penchal", + "Comment": "" + }, + { + "Id": "pel", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pekal", + "Comment": "" + }, + { + "Id": "pem", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Phende", + "Comment": "" + }, + { + "Id": "peo", + "Part2B": "peo", + "Part2T": "peo", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Old Persian (ca. 600-400 B.C.)", + "Comment": "" + }, + { + "Id": "pep", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kunja", + "Comment": "" + }, + { + "Id": "peq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southern Pomo", + "Comment": "" + }, + { + "Id": "pes", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Iranian Persian", + "Comment": "" + }, + { + "Id": "pev", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "P\u00E9mono", + "Comment": "" + }, + { + "Id": "pex", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Petats", + "Comment": "" + }, + { + "Id": "pey", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Petjo", + "Comment": "" + }, + { + "Id": "pez", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Eastern Penan", + "Comment": "" + }, + { + "Id": "pfa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "P\u00E1\u00E1fang", + "Comment": "" + }, + { + "Id": "pfe", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pere", + "Comment": "" + }, + { + "Id": "pfl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pfaelzisch", + "Comment": "" + }, + { + "Id": "pga", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sudanese Creole Arabic", + "Comment": "" + }, + { + "Id": "pgd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "G\u0101ndh\u0101r\u012B", + "Comment": "" + }, + { + "Id": "pgg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pangwali", + "Comment": "" + }, + { + "Id": "pgi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pagi", + "Comment": "" + }, + { + "Id": "pgk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Rerep", + "Comment": "" + }, + { + "Id": "pgl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Primitive Irish", + "Comment": "" + }, + { + "Id": "pgn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Paelignian", + "Comment": "" + }, + { + "Id": "pgs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pangseng", + "Comment": "" + }, + { + "Id": "pgu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pagu", + "Comment": "" + }, + { + "Id": "pgz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Papua New Guinean Sign Language", + "Comment": "" + }, + { + "Id": "pha", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pa-Hng", + "Comment": "" + }, + { + "Id": "phd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Phudagi", + "Comment": "" + }, + { + "Id": "phg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Phuong", + "Comment": "" + }, + { + "Id": "phh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Phukha", + "Comment": "" + }, + { + "Id": "phj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pahari", + "Comment": "" + }, + { + "Id": "phk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Phake", + "Comment": "" + }, + { + "Id": "phl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Phalura", + "Comment": "" + }, + { + "Id": "phm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Phimbi", + "Comment": "" + }, + { + "Id": "phn", + "Part2B": "phn", + "Part2T": "phn", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Phoenician", + "Comment": "" + }, + { + "Id": "pho", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Phunoi", + "Comment": "" + }, + { + "Id": "phq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Phana\u0027", + "Comment": "" + }, + { + "Id": "phr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pahari-Potwari", + "Comment": "" + }, + { + "Id": "pht", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Phu Thai", + "Comment": "" + }, + { + "Id": "phu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Phuan", + "Comment": "" + }, + { + "Id": "phv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pahlavani", + "Comment": "" + }, + { + "Id": "phw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Phangduwali", + "Comment": "" + }, + { + "Id": "pia", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pima Bajo", + "Comment": "" + }, + { + "Id": "pib", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yine", + "Comment": "" + }, + { + "Id": "pic", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pinji", + "Comment": "" + }, + { + "Id": "pid", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Piaroa", + "Comment": "" + }, + { + "Id": "pie", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Piro", + "Comment": "" + }, + { + "Id": "pif", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pingelapese", + "Comment": "" + }, + { + "Id": "pig", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pisabo", + "Comment": "" + }, + { + "Id": "pih", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pitcairn-Norfolk", + "Comment": "" + }, + { + "Id": "pij", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Pijao", + "Comment": "" + }, + { + "Id": "pil", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yom", + "Comment": "" + }, + { + "Id": "pim", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Powhatan", + "Comment": "" + }, + { + "Id": "pin", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Piame", + "Comment": "" + }, + { + "Id": "pio", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Piapoco", + "Comment": "" + }, + { + "Id": "pip", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pero", + "Comment": "" + }, + { + "Id": "pir", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Piratapuyo", + "Comment": "" + }, + { + "Id": "pis", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pijin", + "Comment": "" + }, + { + "Id": "pit", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Pitta Pitta", + "Comment": "" + }, + { + "Id": "piu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pintupi-Luritja", + "Comment": "" + }, + { + "Id": "piv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pileni", + "Comment": "" + }, + { + "Id": "piw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pimbwe", + "Comment": "" + }, + { + "Id": "pix", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Piu", + "Comment": "" + }, + { + "Id": "piy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Piya-Kwonci", + "Comment": "" + }, + { + "Id": "piz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pije", + "Comment": "" + }, + { + "Id": "pjt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pitjantjatjara", + "Comment": "" + }, + { + "Id": "pka", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Ardham\u0101gadh\u012B Pr\u0101krit", + "Comment": "" + }, + { + "Id": "pkb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pokomo", + "Comment": "" + }, + { + "Id": "pkc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Paekche", + "Comment": "" + }, + { + "Id": "pkg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pak-Tong", + "Comment": "" + }, + { + "Id": "pkh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pankhu", + "Comment": "" + }, + { + "Id": "pkn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pakanha", + "Comment": "" + }, + { + "Id": "pko", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "P\u00F6koot", + "Comment": "" + }, + { + "Id": "pkp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pukapuka", + "Comment": "" + }, + { + "Id": "pkr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Attapady Kurumba", + "Comment": "" + }, + { + "Id": "pks", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pakistan Sign Language", + "Comment": "" + }, + { + "Id": "pkt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Maleng", + "Comment": "" + }, + { + "Id": "pku", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Paku", + "Comment": "" + }, + { + "Id": "pla", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Miani", + "Comment": "" + }, + { + "Id": "plb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Polonombauk", + "Comment": "" + }, + { + "Id": "plc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Central Palawano", + "Comment": "" + }, + { + "Id": "pld", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Polari", + "Comment": "" + }, + { + "Id": "ple", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Palu\u0027e", + "Comment": "" + }, + { + "Id": "plg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pilag\u00E1", + "Comment": "" + }, + { + "Id": "plh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Paulohi", + "Comment": "" + }, + { + "Id": "pli", + "Part2B": "pli", + "Part2T": "pli", + "Part1": "pi", + "Scope": "I", + "LanguageType": "H", + "RefName": "Pali", + "Comment": "" + }, + { + "Id": "plk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kohistani Shina", + "Comment": "" + }, + { + "Id": "pll", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Shwe Palaung", + "Comment": "" + }, + { + "Id": "pln", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Palenquero", + "Comment": "" + }, + { + "Id": "plo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Oluta Popoluca", + "Comment": "" + }, + { + "Id": "plq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Palaic", + "Comment": "" + }, + { + "Id": "plr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Palaka Senoufo", + "Comment": "" + }, + { + "Id": "pls", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "San Marcos Tlacoyalco Popoloca", + "Comment": "" + }, + { + "Id": "plt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Plateau Malagasy", + "Comment": "" + }, + { + "Id": "plu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Palik\u00FAr", + "Comment": "" + }, + { + "Id": "plv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southwest Palawano", + "Comment": "" + }, + { + "Id": "plw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Brooke\u0027s Point Palawano", + "Comment": "" + }, + { + "Id": "ply", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bolyu", + "Comment": "" + }, + { + "Id": "plz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Paluan", + "Comment": "" + }, + { + "Id": "pma", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Paama", + "Comment": "" + }, + { + "Id": "pmb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pambia", + "Comment": "" + }, + { + "Id": "pmd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Pallanganmiddang", + "Comment": "" + }, + { + "Id": "pme", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pwaamei", + "Comment": "" + }, + { + "Id": "pmf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pamona", + "Comment": "" + }, + { + "Id": "pmh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "M\u0101h\u0101r\u0101\u1E63\u1E6Dri Pr\u0101krit", + "Comment": "" + }, + { + "Id": "pmi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Northern Pumi", + "Comment": "" + }, + { + "Id": "pmj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southern Pumi", + "Comment": "" + }, + { + "Id": "pml", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Lingua Franca", + "Comment": "" + }, + { + "Id": "pmm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pomo", + "Comment": "" + }, + { + "Id": "pmn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pam", + "Comment": "" + }, + { + "Id": "pmo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pom", + "Comment": "" + }, + { + "Id": "pmq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Northern Pame", + "Comment": "" + }, + { + "Id": "pmr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Paynamar", + "Comment": "" + }, + { + "Id": "pms", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Piemontese", + "Comment": "" + }, + { + "Id": "pmt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tuamotuan", + "Comment": "" + }, + { + "Id": "pmw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Plains Miwok", + "Comment": "" + }, + { + "Id": "pmx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Poumei Naga", + "Comment": "" + }, + { + "Id": "pmy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Papuan Malay", + "Comment": "" + }, + { + "Id": "pmz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Southern Pame", + "Comment": "" + }, + { + "Id": "pna", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Punan Bah-Biau", + "Comment": "" + }, + { + "Id": "pnb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Western Panjabi", + "Comment": "" + }, + { + "Id": "pnc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pannei", + "Comment": "" + }, + { + "Id": "pnd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mpinda", + "Comment": "" + }, + { + "Id": "pne", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Western Penan", + "Comment": "" + }, + { + "Id": "png", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pangu", + "Comment": "" + }, + { + "Id": "pnh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Penrhyn", + "Comment": "" + }, + { + "Id": "pni", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Aoheng", + "Comment": "" + }, + { + "Id": "pnj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Pinjarup", + "Comment": "" + }, + { + "Id": "pnk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Paunaka", + "Comment": "" + }, + { + "Id": "pnl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Paleni", + "Comment": "" + }, + { + "Id": "pnm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Punan Batu 1", + "Comment": "" + }, + { + "Id": "pnn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pinai-Hagahai", + "Comment": "" + }, + { + "Id": "pno", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Panobo", + "Comment": "" + }, + { + "Id": "pnp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pancana", + "Comment": "" + }, + { + "Id": "pnq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pana (Burkina Faso)", + "Comment": "" + }, + { + "Id": "pnr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Panim", + "Comment": "" + }, + { + "Id": "pns", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ponosakan", + "Comment": "" + }, + { + "Id": "pnt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pontic", + "Comment": "" + }, + { + "Id": "pnu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Jiongnai Bunu", + "Comment": "" + }, + { + "Id": "pnv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pinigura", + "Comment": "" + }, + { + "Id": "pnw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Banyjima", + "Comment": "" + }, + { + "Id": "pnx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Phong-Kniang", + "Comment": "" + }, + { + "Id": "pny", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pinyin", + "Comment": "" + }, + { + "Id": "pnz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pana (Central African Republic)", + "Comment": "" + }, + { + "Id": "poc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Poqomam", + "Comment": "" + }, + { + "Id": "poe", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "San Juan Atzingo Popoloca", + "Comment": "" + }, + { + "Id": "pof", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Poke", + "Comment": "" + }, + { + "Id": "pog", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Potigu\u00E1ra", + "Comment": "" + }, + { + "Id": "poh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Poqomchi\u0027", + "Comment": "" + }, + { + "Id": "poi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Highland Popoluca", + "Comment": "" + }, + { + "Id": "pok", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pokang\u00E1", + "Comment": "" + }, + { + "Id": "pol", + "Part2B": "pol", + "Part2T": "pol", + "Part1": "pl", + "Scope": "I", + "LanguageType": "L", + "RefName": "Polish", + "Comment": "" + }, + { + "Id": "pom", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southeastern Pomo", + "Comment": "" + }, + { + "Id": "pon", + "Part2B": "pon", + "Part2T": "pon", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pohnpeian", + "Comment": "" + }, + { + "Id": "poo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Central Pomo", + "Comment": "" + }, + { + "Id": "pop", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pwapw\u00E2", + "Comment": "" + }, + { + "Id": "poq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Texistepec Popoluca", + "Comment": "" + }, + { + "Id": "por", + "Part2B": "por", + "Part2T": "por", + "Part1": "pt", + "Scope": "I", + "LanguageType": "L", + "RefName": "Portuguese", + "Comment": "" + }, + { + "Id": "pos", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sayula Popoluca", + "Comment": "" + }, + { + "Id": "pot", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Potawatomi", + "Comment": "" + }, + { + "Id": "pov", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Upper Guinea Crioulo", + "Comment": "" + }, + { + "Id": "pow", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "San Felipe Otlaltepec Popoloca", + "Comment": "" + }, + { + "Id": "pox", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Polabian", + "Comment": "" + }, + { + "Id": "poy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pogolo", + "Comment": "" + }, + { + "Id": "ppe", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Papi", + "Comment": "" + }, + { + "Id": "ppi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Paipai", + "Comment": "" + }, + { + "Id": "ppk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Uma", + "Comment": "" + }, + { + "Id": "ppl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pipil", + "Comment": "" + }, + { + "Id": "ppm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Papuma", + "Comment": "" + }, + { + "Id": "ppn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Papapana", + "Comment": "" + }, + { + "Id": "ppo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Folopa", + "Comment": "" + }, + { + "Id": "ppp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pelende", + "Comment": "" + }, + { + "Id": "ppq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pei", + "Comment": "" + }, + { + "Id": "pps", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "San Lu\u00EDs Temalacayuca Popoloca", + "Comment": "" + }, + { + "Id": "ppt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pare", + "Comment": "" + }, + { + "Id": "ppu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Papora", + "Comment": "" + }, + { + "Id": "pqa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pa\u0027a", + "Comment": "" + }, + { + "Id": "pqm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Malecite-Passamaquoddy", + "Comment": "" + }, + { + "Id": "prc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Parachi", + "Comment": "" + }, + { + "Id": "prd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Parsi-Dari", + "Comment": "" + }, + { + "Id": "pre", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Principense", + "Comment": "" + }, + { + "Id": "prf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Paranan", + "Comment": "" + }, + { + "Id": "prg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Prussian", + "Comment": "" + }, + { + "Id": "prh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Porohanon", + "Comment": "" + }, + { + "Id": "pri", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Paic\u00EE", + "Comment": "" + }, + { + "Id": "prk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Parauk", + "Comment": "" + }, + { + "Id": "prl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Peruvian Sign Language", + "Comment": "" + }, + { + "Id": "prm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kibiri", + "Comment": "" + }, + { + "Id": "prn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Prasuni", + "Comment": "" + }, + { + "Id": "pro", + "Part2B": "pro", + "Part2T": "pro", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Old Proven\u00E7al (to 1500)", + "Comment": "" + }, + { + "Id": "prq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ash\u00E9ninka Peren\u00E9", + "Comment": "" + }, + { + "Id": "prr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Puri", + "Comment": "" + }, + { + "Id": "prs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dari", + "Comment": "" + }, + { + "Id": "prt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Phai", + "Comment": "" + }, + { + "Id": "pru", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Puragi", + "Comment": "" + }, + { + "Id": "prw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Parawen", + "Comment": "" + }, + { + "Id": "prx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Purik", + "Comment": "" + }, + { + "Id": "prz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Providencia Sign Language", + "Comment": "" + }, + { + "Id": "psa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Asue Awyu", + "Comment": "" + }, + { + "Id": "psc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Iranian Sign Language", + "Comment": "" + }, + { + "Id": "psd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Plains Indian Sign Language", + "Comment": "" + }, + { + "Id": "pse", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Central Malay", + "Comment": "" + }, + { + "Id": "psg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Penang Sign Language", + "Comment": "" + }, + { + "Id": "psh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southwest Pashai", + "Comment": "" + }, + { + "Id": "psi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southeast Pashai", + "Comment": "" + }, + { + "Id": "psl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Puerto Rican Sign Language", + "Comment": "" + }, + { + "Id": "psm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Pauserna", + "Comment": "" + }, + { + "Id": "psn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Panasuan", + "Comment": "" + }, + { + "Id": "pso", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Polish Sign Language", + "Comment": "" + }, + { + "Id": "psp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Philippine Sign Language", + "Comment": "" + }, + { + "Id": "psq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pasi", + "Comment": "" + }, + { + "Id": "psr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Portuguese Sign Language", + "Comment": "" + }, + { + "Id": "pss", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kaulong", + "Comment": "" + }, + { + "Id": "pst", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Central Pashto", + "Comment": "" + }, + { + "Id": "psu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Sauraseni Pr\u0101krit", + "Comment": "" + }, + { + "Id": "psw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Port Sandwich", + "Comment": "" + }, + { + "Id": "psy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Piscataway", + "Comment": "" + }, + { + "Id": "pta", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pai Tavytera", + "Comment": "" + }, + { + "Id": "pth", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Patax\u00F3 H\u00E3-Ha-H\u00E3e", + "Comment": "" + }, + { + "Id": "pti", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pindiini", + "Comment": "" + }, + { + "Id": "ptn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Patani", + "Comment": "" + }, + { + "Id": "pto", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Zo\u0027\u00E9", + "Comment": "" + }, + { + "Id": "ptp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Patep", + "Comment": "" + }, + { + "Id": "ptq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pattapu", + "Comment": "" + }, + { + "Id": "ptr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Piamatsina", + "Comment": "" + }, + { + "Id": "ptt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Enrekang", + "Comment": "" + }, + { + "Id": "ptu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bambam", + "Comment": "" + }, + { + "Id": "ptv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Port Vato", + "Comment": "" + }, + { + "Id": "ptw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Pentlatch", + "Comment": "" + }, + { + "Id": "pty", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pathiya", + "Comment": "" + }, + { + "Id": "pua", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Western Highland Purepecha", + "Comment": "" + }, + { + "Id": "pub", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Purum", + "Comment": "" + }, + { + "Id": "puc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Punan Merap", + "Comment": "" + }, + { + "Id": "pud", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Punan Aput", + "Comment": "" + }, + { + "Id": "pue", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Puelche", + "Comment": "" + }, + { + "Id": "puf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Punan Merah", + "Comment": "" + }, + { + "Id": "pug", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Phuie", + "Comment": "" + }, + { + "Id": "pui", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Puinave", + "Comment": "" + }, + { + "Id": "puj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Punan Tubu", + "Comment": "" + }, + { + "Id": "pum", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Puma", + "Comment": "" + }, + { + "Id": "puo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Puoc", + "Comment": "" + }, + { + "Id": "pup", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pulabu", + "Comment": "" + }, + { + "Id": "puq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Puquina", + "Comment": "" + }, + { + "Id": "pur", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Purubor\u00E1", + "Comment": "" + }, + { + "Id": "pus", + "Part2B": "pus", + "Part2T": "pus", + "Part1": "ps", + "Scope": "M", + "LanguageType": "L", + "RefName": "Pushto", + "Comment": "" + }, + { + "Id": "put", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Putoh", + "Comment": "" + }, + { + "Id": "puu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Punu", + "Comment": "" + }, + { + "Id": "puw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Puluwatese", + "Comment": "" + }, + { + "Id": "pux", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Puare", + "Comment": "" + }, + { + "Id": "puy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Purisime\u00F1o", + "Comment": "" + }, + { + "Id": "pwa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pawaia", + "Comment": "" + }, + { + "Id": "pwb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Panawa", + "Comment": "" + }, + { + "Id": "pwg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gapapaiwa", + "Comment": "" + }, + { + "Id": "pwi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Patwin", + "Comment": "" + }, + { + "Id": "pwm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Molbog", + "Comment": "" + }, + { + "Id": "pwn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Paiwan", + "Comment": "" + }, + { + "Id": "pwo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pwo Western Karen", + "Comment": "" + }, + { + "Id": "pwr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Powari", + "Comment": "" + }, + { + "Id": "pww", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pwo Northern Karen", + "Comment": "" + }, + { + "Id": "pxm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Quetzaltepec Mixe", + "Comment": "" + }, + { + "Id": "pye", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pye Krumen", + "Comment": "" + }, + { + "Id": "pym", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Fyam", + "Comment": "" + }, + { + "Id": "pyn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Poyan\u00E1wa", + "Comment": "" + }, + { + "Id": "pys", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Paraguayan Sign Language", + "Comment": "" + }, + { + "Id": "pyu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Puyuma", + "Comment": "" + }, + { + "Id": "pyx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Pyu (Myanmar)", + "Comment": "" + }, + { + "Id": "pyy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pyen", + "Comment": "" + }, + { + "Id": "pze", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pesse", + "Comment": "" + }, + { + "Id": "pzh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pazeh", + "Comment": "" + }, + { + "Id": "pzn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Jejara Naga", + "Comment": "" + }, + { + "Id": "qua", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Quapaw", + "Comment": "" + }, + { + "Id": "qub", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Huallaga Hu\u00E1nuco Quechua", + "Comment": "" + }, + { + "Id": "quc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "K\u0027iche\u0027", + "Comment": "" + }, + { + "Id": "qud", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Calder\u00F3n Highland Quichua", + "Comment": "" + }, + { + "Id": "que", + "Part2B": "que", + "Part2T": "que", + "Part1": "qu", + "Scope": "M", + "LanguageType": "L", + "RefName": "Quechua", + "Comment": "" + }, + { + "Id": "quf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lambayeque Quechua", + "Comment": "" + }, + { + "Id": "qug", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chimborazo Highland Quichua", + "Comment": "" + }, + { + "Id": "quh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "South Bolivian Quechua", + "Comment": "" + }, + { + "Id": "qui", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Quileute", + "Comment": "" + }, + { + "Id": "quk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chachapoyas Quechua", + "Comment": "" + }, + { + "Id": "qul", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "North Bolivian Quechua", + "Comment": "" + }, + { + "Id": "qum", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sipacapense", + "Comment": "" + }, + { + "Id": "qun", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Quinault", + "Comment": "" + }, + { + "Id": "qup", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southern Pastaza Quechua", + "Comment": "" + }, + { + "Id": "quq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Quinqui", + "Comment": "" + }, + { + "Id": "qur", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yanahuanca Pasco Quechua", + "Comment": "" + }, + { + "Id": "qus", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Santiago del Estero Quichua", + "Comment": "" + }, + { + "Id": "quv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sacapulteco", + "Comment": "" + }, + { + "Id": "quw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tena Lowland Quichua", + "Comment": "" + }, + { + "Id": "qux", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yauyos Quechua", + "Comment": "" + }, + { + "Id": "quy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ayacucho Quechua", + "Comment": "" + }, + { + "Id": "quz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Cusco Quechua", + "Comment": "" + }, + { + "Id": "qva", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ambo-Pasco Quechua", + "Comment": "" + }, + { + "Id": "qvc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Cajamarca Quechua", + "Comment": "" + }, + { + "Id": "qve", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Eastern Apur\u00EDmac Quechua", + "Comment": "" + }, + { + "Id": "qvh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Huamal\u00EDes-Dos de Mayo Hu\u00E1nuco Quechua", + "Comment": "" + }, + { + "Id": "qvi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Imbabura Highland Quichua", + "Comment": "" + }, + { + "Id": "qvj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Loja Highland Quichua", + "Comment": "" + }, + { + "Id": "qvl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Cajatambo North Lima Quechua", + "Comment": "" + }, + { + "Id": "qvm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Margos-Yarowilca-Lauricocha Quechua", + "Comment": "" + }, + { + "Id": "qvn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "North Jun\u00EDn Quechua", + "Comment": "" + }, + { + "Id": "qvo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Napo Lowland Quechua", + "Comment": "" + }, + { + "Id": "qvp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pacaraos Quechua", + "Comment": "" + }, + { + "Id": "qvs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "San Mart\u00EDn Quechua", + "Comment": "" + }, + { + "Id": "qvw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Huaylla Wanca Quechua", + "Comment": "" + }, + { + "Id": "qvy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Queyu", + "Comment": "" + }, + { + "Id": "qvz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Northern Pastaza Quichua", + "Comment": "" + }, + { + "Id": "qwa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Corongo Ancash Quechua", + "Comment": "" + }, + { + "Id": "qwc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Classical Quechua", + "Comment": "" + }, + { + "Id": "qwh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Huaylas Ancash Quechua", + "Comment": "" + }, + { + "Id": "qwm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Kuman (Russia)", + "Comment": "" + }, + { + "Id": "qws", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sihuas Ancash Quechua", + "Comment": "" + }, + { + "Id": "qwt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Kwalhioqua-Tlatskanai", + "Comment": "" + }, + { + "Id": "qxa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chiqui\u00E1n Ancash Quechua", + "Comment": "" + }, + { + "Id": "qxc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chincha Quechua", + "Comment": "" + }, + { + "Id": "qxh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Panao Hu\u00E1nuco Quechua", + "Comment": "" + }, + { + "Id": "qxl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Salasaca Highland Quichua", + "Comment": "" + }, + { + "Id": "qxn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Northern Conchucos Ancash Quechua", + "Comment": "" + }, + { + "Id": "qxo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southern Conchucos Ancash Quechua", + "Comment": "" + }, + { + "Id": "qxp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Puno Quechua", + "Comment": "" + }, + { + "Id": "qxq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Qashqa\u0027i", + "Comment": "" + }, + { + "Id": "qxr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ca\u00F1ar Highland Quichua", + "Comment": "" + }, + { + "Id": "qxs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southern Qiang", + "Comment": "" + }, + { + "Id": "qxt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Santa Ana de Tusi Pasco Quechua", + "Comment": "" + }, + { + "Id": "qxu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Arequipa-La Uni\u00F3n Quechua", + "Comment": "" + }, + { + "Id": "qxw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Jauja Wanca Quechua", + "Comment": "" + }, + { + "Id": "qya", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "C", + "RefName": "Quenya", + "Comment": "" + }, + { + "Id": "qyp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Quiripi", + "Comment": "" + }, + { + "Id": "raa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dungmali", + "Comment": "" + }, + { + "Id": "rab", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Camling", + "Comment": "" + }, + { + "Id": "rac", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Rasawa", + "Comment": "" + }, + { + "Id": "rad", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Rade", + "Comment": "" + }, + { + "Id": "raf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Western Meohang", + "Comment": "" + }, + { + "Id": "rag", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Logooli", + "Comment": "" + }, + { + "Id": "rah", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Rabha", + "Comment": "" + }, + { + "Id": "rai", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ramoaaina", + "Comment": "" + }, + { + "Id": "raj", + "Part2B": "raj", + "Part2T": "raj", + "Part1": "", + "Scope": "M", + "LanguageType": "L", + "RefName": "Rajasthani", + "Comment": "" + }, + { + "Id": "rak", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tulu-Bohuai", + "Comment": "" + }, + { + "Id": "ral", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ralte", + "Comment": "" + }, + { + "Id": "ram", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Canela", + "Comment": "" + }, + { + "Id": "ran", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Riantana", + "Comment": "" + }, + { + "Id": "rao", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Rao", + "Comment": "" + }, + { + "Id": "rap", + "Part2B": "rap", + "Part2T": "rap", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Rapanui", + "Comment": "" + }, + { + "Id": "raq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Saam", + "Comment": "" + }, + { + "Id": "rar", + "Part2B": "rar", + "Part2T": "rar", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Rarotongan", + "Comment": "" + }, + { + "Id": "ras", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tegali", + "Comment": "" + }, + { + "Id": "rat", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Razajerdi", + "Comment": "" + }, + { + "Id": "rau", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Raute", + "Comment": "" + }, + { + "Id": "rav", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sampang", + "Comment": "" + }, + { + "Id": "raw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Rawang", + "Comment": "" + }, + { + "Id": "rax", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Rang", + "Comment": "" + }, + { + "Id": "ray", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Rapa", + "Comment": "" + }, + { + "Id": "raz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Rahambuu", + "Comment": "" + }, + { + "Id": "rbb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Rumai Palaung", + "Comment": "" + }, + { + "Id": "rbk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Northern Bontok", + "Comment": "" + }, + { + "Id": "rbl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Miraya Bikol", + "Comment": "" + }, + { + "Id": "rbp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Barababaraba", + "Comment": "" + }, + { + "Id": "rcf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "R\u00E9union Creole French", + "Comment": "" + }, + { + "Id": "rdb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Rudbari", + "Comment": "" + }, + { + "Id": "rea", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Rerau", + "Comment": "" + }, + { + "Id": "reb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Rembong", + "Comment": "" + }, + { + "Id": "ree", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Rejang Kayan", + "Comment": "" + }, + { + "Id": "reg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kara (Tanzania)", + "Comment": "" + }, + { + "Id": "rei", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Reli", + "Comment": "" + }, + { + "Id": "rej", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Rejang", + "Comment": "" + }, + { + "Id": "rel", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Rendille", + "Comment": "" + }, + { + "Id": "rem", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Remo", + "Comment": "" + }, + { + "Id": "ren", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Rengao", + "Comment": "" + }, + { + "Id": "rer", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Rer Bare", + "Comment": "" + }, + { + "Id": "res", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Reshe", + "Comment": "" + }, + { + "Id": "ret", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Retta", + "Comment": "" + }, + { + "Id": "rey", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Reyesano", + "Comment": "" + }, + { + "Id": "rga", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Roria", + "Comment": "" + }, + { + "Id": "rge", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Romano-Greek", + "Comment": "" + }, + { + "Id": "rgk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Rangkas", + "Comment": "" + }, + { + "Id": "rgn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Romagnol", + "Comment": "" + }, + { + "Id": "rgr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Res\u00EDgaro", + "Comment": "" + }, + { + "Id": "rgs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southern Roglai", + "Comment": "" + }, + { + "Id": "rgu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ringgou", + "Comment": "" + }, + { + "Id": "rhg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Rohingya", + "Comment": "" + }, + { + "Id": "rhp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yahang", + "Comment": "" + }, + { + "Id": "ria", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Riang (India)", + "Comment": "" + }, + { + "Id": "rib", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bribri Sign Language", + "Comment": "" + }, + { + "Id": "rif", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tarifit", + "Comment": "" + }, + { + "Id": "ril", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Riang Lang", + "Comment": "" + }, + { + "Id": "rim", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nyaturu", + "Comment": "" + }, + { + "Id": "rin", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nungu", + "Comment": "" + }, + { + "Id": "rir", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ribun", + "Comment": "" + }, + { + "Id": "rit", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ritharrngu", + "Comment": "" + }, + { + "Id": "riu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Riung", + "Comment": "" + }, + { + "Id": "rjg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Rajong", + "Comment": "" + }, + { + "Id": "rji", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Raji", + "Comment": "" + }, + { + "Id": "rjs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Rajbanshi", + "Comment": "" + }, + { + "Id": "rka", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kraol", + "Comment": "" + }, + { + "Id": "rkb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Rikbaktsa", + "Comment": "" + }, + { + "Id": "rkh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Rakahanga-Manihiki", + "Comment": "" + }, + { + "Id": "rki", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Rakhine", + "Comment": "" + }, + { + "Id": "rkm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Marka", + "Comment": "" + }, + { + "Id": "rkt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Rangpuri", + "Comment": "" + }, + { + "Id": "rkw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Arakwal", + "Comment": "" + }, + { + "Id": "rma", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Rama", + "Comment": "" + }, + { + "Id": "rmb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Rembarrnga", + "Comment": "" + }, + { + "Id": "rmc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Carpathian Romani", + "Comment": "" + }, + { + "Id": "rmd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Traveller Danish", + "Comment": "" + }, + { + "Id": "rme", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Angloromani", + "Comment": "" + }, + { + "Id": "rmf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kalo Finnish Romani", + "Comment": "" + }, + { + "Id": "rmg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Traveller Norwegian", + "Comment": "" + }, + { + "Id": "rmh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Murkim", + "Comment": "" + }, + { + "Id": "rmi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lomavren", + "Comment": "" + }, + { + "Id": "rmk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Romkun", + "Comment": "" + }, + { + "Id": "rml", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Baltic Romani", + "Comment": "" + }, + { + "Id": "rmm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Roma", + "Comment": "" + }, + { + "Id": "rmn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Balkan Romani", + "Comment": "" + }, + { + "Id": "rmo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sinte Romani", + "Comment": "" + }, + { + "Id": "rmp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Rempi", + "Comment": "" + }, + { + "Id": "rmq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Cal\u00F3", + "Comment": "" + }, + { + "Id": "rms", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Romanian Sign Language", + "Comment": "" + }, + { + "Id": "rmt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Domari", + "Comment": "" + }, + { + "Id": "rmu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tavringer Romani", + "Comment": "" + }, + { + "Id": "rmv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "C", + "RefName": "Romanova", + "Comment": "" + }, + { + "Id": "rmw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Welsh Romani", + "Comment": "" + }, + { + "Id": "rmx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Romam", + "Comment": "" + }, + { + "Id": "rmy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Vlax Romani", + "Comment": "" + }, + { + "Id": "rmz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Marma", + "Comment": "" + }, + { + "Id": "rnb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Brunca Sign Language", + "Comment": "" + }, + { + "Id": "rnd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ruund", + "Comment": "" + }, + { + "Id": "rng", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ronga", + "Comment": "" + }, + { + "Id": "rnl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ranglong", + "Comment": "" + }, + { + "Id": "rnn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Roon", + "Comment": "" + }, + { + "Id": "rnp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Rongpo", + "Comment": "" + }, + { + "Id": "rnr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Nari Nari", + "Comment": "" + }, + { + "Id": "rnw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Rungwa", + "Comment": "" + }, + { + "Id": "rob", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tae\u0027", + "Comment": "" + }, + { + "Id": "roc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Cacgia Roglai", + "Comment": "" + }, + { + "Id": "rod", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Rogo", + "Comment": "" + }, + { + "Id": "roe", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ronji", + "Comment": "" + }, + { + "Id": "rof", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Rombo", + "Comment": "" + }, + { + "Id": "rog", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Northern Roglai", + "Comment": "" + }, + { + "Id": "roh", + "Part2B": "roh", + "Part2T": "roh", + "Part1": "rm", + "Scope": "I", + "LanguageType": "L", + "RefName": "Romansh", + "Comment": "" + }, + { + "Id": "rol", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Romblomanon", + "Comment": "" + }, + { + "Id": "rom", + "Part2B": "rom", + "Part2T": "rom", + "Part1": "", + "Scope": "M", + "LanguageType": "L", + "RefName": "Romany", + "Comment": "" + }, + { + "Id": "ron", + "Part2B": "rum", + "Part2T": "ron", + "Part1": "ro", + "Scope": "I", + "LanguageType": "L", + "RefName": "Romanian", + "Comment": "" + }, + { + "Id": "roo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Rotokas", + "Comment": "" + }, + { + "Id": "rop", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kriol", + "Comment": "" + }, + { + "Id": "ror", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Rongga", + "Comment": "" + }, + { + "Id": "rou", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Runga", + "Comment": "" + }, + { + "Id": "row", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dela-Oenale", + "Comment": "" + }, + { + "Id": "rpn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Repanbitip", + "Comment": "" + }, + { + "Id": "rpt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Rapting", + "Comment": "" + }, + { + "Id": "rri", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ririo", + "Comment": "" + }, + { + "Id": "rrm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Moriori", + "Comment": "" + }, + { + "Id": "rro", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Waima", + "Comment": "" + }, + { + "Id": "rrt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Arritinngithigh", + "Comment": "" + }, + { + "Id": "rsb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Romano-Serbian", + "Comment": "" + }, + { + "Id": "rsk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ruthenian", + "Comment": "" + }, + { + "Id": "rsl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Russian Sign Language", + "Comment": "" + }, + { + "Id": "rsm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Miriwoong Sign Language", + "Comment": "" + }, + { + "Id": "rsn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Rwandan Sign Language", + "Comment": "" + }, + { + "Id": "rsw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Rishiwa", + "Comment": "" + }, + { + "Id": "rtc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Rungtu Chin", + "Comment": "" + }, + { + "Id": "rth", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ratahan", + "Comment": "" + }, + { + "Id": "rtm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Rotuman", + "Comment": "" + }, + { + "Id": "rts", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Yurats", + "Comment": "" + }, + { + "Id": "rtw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Rathawi", + "Comment": "" + }, + { + "Id": "rub", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gungu", + "Comment": "" + }, + { + "Id": "ruc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ruuli", + "Comment": "" + }, + { + "Id": "rue", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Rusyn", + "Comment": "" + }, + { + "Id": "ruf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Luguru", + "Comment": "" + }, + { + "Id": "rug", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Roviana", + "Comment": "" + }, + { + "Id": "ruh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ruga", + "Comment": "" + }, + { + "Id": "rui", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Rufiji", + "Comment": "" + }, + { + "Id": "ruk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Che", + "Comment": "" + }, + { + "Id": "run", + "Part2B": "run", + "Part2T": "run", + "Part1": "rn", + "Scope": "I", + "LanguageType": "L", + "RefName": "Rundi", + "Comment": "" + }, + { + "Id": "ruo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Istro Romanian", + "Comment": "" + }, + { + "Id": "rup", + "Part2B": "rup", + "Part2T": "rup", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Macedo-Romanian", + "Comment": "" + }, + { + "Id": "ruq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Megleno Romanian", + "Comment": "" + }, + { + "Id": "rus", + "Part2B": "rus", + "Part2T": "rus", + "Part1": "ru", + "Scope": "I", + "LanguageType": "L", + "RefName": "Russian", + "Comment": "" + }, + { + "Id": "rut", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Rutul", + "Comment": "" + }, + { + "Id": "ruu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lanas Lobu", + "Comment": "" + }, + { + "Id": "ruy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mala (Nigeria)", + "Comment": "" + }, + { + "Id": "ruz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ruma", + "Comment": "" + }, + { + "Id": "rwa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Rawo", + "Comment": "" + }, + { + "Id": "rwk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Rwa", + "Comment": "" + }, + { + "Id": "rwl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ruwila", + "Comment": "" + }, + { + "Id": "rwm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Amba (Uganda)", + "Comment": "" + }, + { + "Id": "rwo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Rawa", + "Comment": "" + }, + { + "Id": "rwr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Marwari (India)", + "Comment": "" + }, + { + "Id": "rxd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ngardi", + "Comment": "" + }, + { + "Id": "rxw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Karuwali", + "Comment": "" + }, + { + "Id": "ryn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Northern Amami-Oshima", + "Comment": "" + }, + { + "Id": "rys", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yaeyama", + "Comment": "" + }, + { + "Id": "ryu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Central Okinawan", + "Comment": "" + }, + { + "Id": "rzh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "R\u0101zi\u1E25\u012B", + "Comment": "" + }, + { + "Id": "saa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Saba", + "Comment": "" + }, + { + "Id": "sab", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Buglere", + "Comment": "" + }, + { + "Id": "sac", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Meskwaki", + "Comment": "" + }, + { + "Id": "sad", + "Part2B": "sad", + "Part2T": "sad", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sandawe", + "Comment": "" + }, + { + "Id": "sae", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Saban\u00EA", + "Comment": "" + }, + { + "Id": "saf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Safaliba", + "Comment": "" + }, + { + "Id": "sag", + "Part2B": "sag", + "Part2T": "sag", + "Part1": "sg", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sango", + "Comment": "" + }, + { + "Id": "sah", + "Part2B": "sah", + "Part2T": "sah", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yakut", + "Comment": "" + }, + { + "Id": "saj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sahu", + "Comment": "" + }, + { + "Id": "sak", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sake", + "Comment": "" + }, + { + "Id": "sam", + "Part2B": "sam", + "Part2T": "sam", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Samaritan Aramaic", + "Comment": "" + }, + { + "Id": "san", + "Part2B": "san", + "Part2T": "san", + "Part1": "sa", + "Scope": "M", + "LanguageType": "H", + "RefName": "Sanskrit", + "Comment": "" + }, + { + "Id": "sao", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sause", + "Comment": "" + }, + { + "Id": "saq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Samburu", + "Comment": "" + }, + { + "Id": "sar", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Saraveca", + "Comment": "" + }, + { + "Id": "sas", + "Part2B": "sas", + "Part2T": "sas", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sasak", + "Comment": "" + }, + { + "Id": "sat", + "Part2B": "sat", + "Part2T": "sat", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Santali", + "Comment": "" + }, + { + "Id": "sau", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Saleman", + "Comment": "" + }, + { + "Id": "sav", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Saafi-Saafi", + "Comment": "" + }, + { + "Id": "saw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sawi", + "Comment": "" + }, + { + "Id": "sax", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sa", + "Comment": "" + }, + { + "Id": "say", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Saya", + "Comment": "" + }, + { + "Id": "saz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Saurashtra", + "Comment": "" + }, + { + "Id": "sba", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ngambay", + "Comment": "" + }, + { + "Id": "sbb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Simbo", + "Comment": "" + }, + { + "Id": "sbc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kele (Papua New Guinea)", + "Comment": "" + }, + { + "Id": "sbd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southern Samo", + "Comment": "" + }, + { + "Id": "sbe", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Saliba", + "Comment": "" + }, + { + "Id": "sbf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chabu", + "Comment": "" + }, + { + "Id": "sbg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Seget", + "Comment": "" + }, + { + "Id": "sbh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sori-Harengan", + "Comment": "" + }, + { + "Id": "sbi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Seti", + "Comment": "" + }, + { + "Id": "sbj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Surbakhal", + "Comment": "" + }, + { + "Id": "sbk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Safwa", + "Comment": "" + }, + { + "Id": "sbl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Botolan Sambal", + "Comment": "" + }, + { + "Id": "sbm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sagala", + "Comment": "" + }, + { + "Id": "sbn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sindhi Bhil", + "Comment": "" + }, + { + "Id": "sbo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sab\u00FCm", + "Comment": "" + }, + { + "Id": "sbp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sangu (Tanzania)", + "Comment": "" + }, + { + "Id": "sbq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sileibi", + "Comment": "" + }, + { + "Id": "sbr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sembakung Murut", + "Comment": "" + }, + { + "Id": "sbs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Subiya", + "Comment": "" + }, + { + "Id": "sbt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kimki", + "Comment": "" + }, + { + "Id": "sbu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Stod Bhoti", + "Comment": "" + }, + { + "Id": "sbv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Sabine", + "Comment": "" + }, + { + "Id": "sbw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Simba", + "Comment": "" + }, + { + "Id": "sbx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Seberuang", + "Comment": "" + }, + { + "Id": "sby", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Soli", + "Comment": "" + }, + { + "Id": "sbz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sara Kaba", + "Comment": "" + }, + { + "Id": "scb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chut", + "Comment": "" + }, + { + "Id": "sce", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dongxiang", + "Comment": "" + }, + { + "Id": "scf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "San Miguel Creole French", + "Comment": "" + }, + { + "Id": "scg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sanggau", + "Comment": "" + }, + { + "Id": "sch", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sakachep", + "Comment": "" + }, + { + "Id": "sci", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sri Lankan Creole Malay", + "Comment": "" + }, + { + "Id": "sck", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sadri", + "Comment": "" + }, + { + "Id": "scl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Shina", + "Comment": "" + }, + { + "Id": "scn", + "Part2B": "scn", + "Part2T": "scn", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sicilian", + "Comment": "" + }, + { + "Id": "sco", + "Part2B": "sco", + "Part2T": "sco", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Scots", + "Comment": "" + }, + { + "Id": "scp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hyolmo", + "Comment": "" + }, + { + "Id": "scq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sa\u0027och", + "Comment": "" + }, + { + "Id": "scs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "North Slavey", + "Comment": "" + }, + { + "Id": "sct", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southern Katang", + "Comment": "" + }, + { + "Id": "scu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Shumcho", + "Comment": "" + }, + { + "Id": "scv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sheni", + "Comment": "" + }, + { + "Id": "scw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sha", + "Comment": "" + }, + { + "Id": "scx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Sicel", + "Comment": "" + }, + { + "Id": "sda", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Toraja-Sa\u0027dan", + "Comment": "" + }, + { + "Id": "sdb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Shabak", + "Comment": "" + }, + { + "Id": "sdc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sassarese Sardinian", + "Comment": "" + }, + { + "Id": "sde", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Surubu", + "Comment": "" + }, + { + "Id": "sdf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sarli", + "Comment": "" + }, + { + "Id": "sdg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Savi", + "Comment": "" + }, + { + "Id": "sdh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southern Kurdish", + "Comment": "" + }, + { + "Id": "sdj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Suundi", + "Comment": "" + }, + { + "Id": "sdk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sos Kundi", + "Comment": "" + }, + { + "Id": "sdl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Saudi Arabian Sign Language", + "Comment": "" + }, + { + "Id": "sdn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gallurese Sardinian", + "Comment": "" + }, + { + "Id": "sdo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bukar-Sadung Bidayuh", + "Comment": "" + }, + { + "Id": "sdp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sherdukpen", + "Comment": "" + }, + { + "Id": "sdq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Semandang", + "Comment": "" + }, + { + "Id": "sdr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Oraon Sadri", + "Comment": "" + }, + { + "Id": "sds", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Sened", + "Comment": "" + }, + { + "Id": "sdt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Shuadit", + "Comment": "" + }, + { + "Id": "sdu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sarudu", + "Comment": "" + }, + { + "Id": "sdx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sibu Melanau", + "Comment": "" + }, + { + "Id": "sdz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sallands", + "Comment": "" + }, + { + "Id": "sea", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Semai", + "Comment": "" + }, + { + "Id": "seb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Shempire Senoufo", + "Comment": "" + }, + { + "Id": "sec", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sechelt", + "Comment": "" + }, + { + "Id": "sed", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sedang", + "Comment": "" + }, + { + "Id": "see", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Seneca", + "Comment": "" + }, + { + "Id": "sef", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Cebaara Senoufo", + "Comment": "" + }, + { + "Id": "seg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Segeju", + "Comment": "" + }, + { + "Id": "seh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sena", + "Comment": "" + }, + { + "Id": "sei", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Seri", + "Comment": "" + }, + { + "Id": "sej", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sene", + "Comment": "" + }, + { + "Id": "sek", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sekani", + "Comment": "" + }, + { + "Id": "sel", + "Part2B": "sel", + "Part2T": "sel", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Selkup", + "Comment": "" + }, + { + "Id": "sen", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nanerig\u00E9 S\u00E9noufo", + "Comment": "" + }, + { + "Id": "seo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Suarmin", + "Comment": "" + }, + { + "Id": "sep", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "S\u00ECc\u00ECt\u00E9 S\u00E9noufo", + "Comment": "" + }, + { + "Id": "seq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Senara S\u00E9noufo", + "Comment": "" + }, + { + "Id": "ser", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Serrano", + "Comment": "" + }, + { + "Id": "ses", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Koyraboro Senni Songhai", + "Comment": "" + }, + { + "Id": "set", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sentani", + "Comment": "" + }, + { + "Id": "seu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Serui-Laut", + "Comment": "" + }, + { + "Id": "sev", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nyarafolo Senoufo", + "Comment": "" + }, + { + "Id": "sew", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sewa Bay", + "Comment": "" + }, + { + "Id": "sey", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Secoya", + "Comment": "" + }, + { + "Id": "sez", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Senthang Chin", + "Comment": "" + }, + { + "Id": "sfb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Langue des signes de Belgique Francophone", + "Comment": "" + }, + { + "Id": "sfe", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Eastern Subanen", + "Comment": "" + }, + { + "Id": "sfm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Small Flowery Miao", + "Comment": "" + }, + { + "Id": "sfs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "South African Sign Language", + "Comment": "" + }, + { + "Id": "sfw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sehwi", + "Comment": "" + }, + { + "Id": "sga", + "Part2B": "sga", + "Part2T": "sga", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Old Irish (to 900)", + "Comment": "" + }, + { + "Id": "sgb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mag-antsi Ayta", + "Comment": "" + }, + { + "Id": "sgc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kipsigis", + "Comment": "" + }, + { + "Id": "sgd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Surigaonon", + "Comment": "" + }, + { + "Id": "sge", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Segai", + "Comment": "" + }, + { + "Id": "sgg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Swiss-German Sign Language", + "Comment": "" + }, + { + "Id": "sgh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Shughni", + "Comment": "" + }, + { + "Id": "sgi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Suga", + "Comment": "" + }, + { + "Id": "sgj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Surgujia", + "Comment": "" + }, + { + "Id": "sgk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sangkong", + "Comment": "" + }, + { + "Id": "sgm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Singa", + "Comment": "" + }, + { + "Id": "sgp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Singpho", + "Comment": "" + }, + { + "Id": "sgr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sangisari", + "Comment": "" + }, + { + "Id": "sgs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Samogitian", + "Comment": "" + }, + { + "Id": "sgt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Brokpake", + "Comment": "" + }, + { + "Id": "sgu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Salas", + "Comment": "" + }, + { + "Id": "sgw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sebat Bet Gurage", + "Comment": "" + }, + { + "Id": "sgx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sierra Leone Sign Language", + "Comment": "" + }, + { + "Id": "sgy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sanglechi", + "Comment": "" + }, + { + "Id": "sgz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sursurunga", + "Comment": "" + }, + { + "Id": "sha", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Shall-Zwall", + "Comment": "" + }, + { + "Id": "shb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ninam", + "Comment": "" + }, + { + "Id": "shc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sonde", + "Comment": "" + }, + { + "Id": "shd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kundal Shahi", + "Comment": "" + }, + { + "Id": "she", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sheko", + "Comment": "" + }, + { + "Id": "shg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Shua", + "Comment": "" + }, + { + "Id": "shh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Shoshoni", + "Comment": "" + }, + { + "Id": "shi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tachelhit", + "Comment": "" + }, + { + "Id": "shj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Shatt", + "Comment": "" + }, + { + "Id": "shk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Shilluk", + "Comment": "" + }, + { + "Id": "shl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Shendu", + "Comment": "" + }, + { + "Id": "shm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Shahrudi", + "Comment": "" + }, + { + "Id": "shn", + "Part2B": "shn", + "Part2T": "shn", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Shan", + "Comment": "" + }, + { + "Id": "sho", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Shanga", + "Comment": "" + }, + { + "Id": "shp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Shipibo-Conibo", + "Comment": "" + }, + { + "Id": "shq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sala", + "Comment": "" + }, + { + "Id": "shr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Shi", + "Comment": "" + }, + { + "Id": "shs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Shuswap", + "Comment": "" + }, + { + "Id": "sht", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Shasta", + "Comment": "" + }, + { + "Id": "shu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chadian Arabic", + "Comment": "" + }, + { + "Id": "shv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Shehri", + "Comment": "" + }, + { + "Id": "shw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Shwai", + "Comment": "" + }, + { + "Id": "shx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "She", + "Comment": "" + }, + { + "Id": "shy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tachawit", + "Comment": "" + }, + { + "Id": "shz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Syenara Senoufo", + "Comment": "" + }, + { + "Id": "sia", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Akkala Sami", + "Comment": "" + }, + { + "Id": "sib", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sebop", + "Comment": "" + }, + { + "Id": "sid", + "Part2B": "sid", + "Part2T": "sid", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sidamo", + "Comment": "" + }, + { + "Id": "sie", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Simaa", + "Comment": "" + }, + { + "Id": "sif", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Siamou", + "Comment": "" + }, + { + "Id": "sig", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Paasaal", + "Comment": "" + }, + { + "Id": "sih", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Zire", + "Comment": "" + }, + { + "Id": "sii", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Shom Peng", + "Comment": "" + }, + { + "Id": "sij", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Numbami", + "Comment": "" + }, + { + "Id": "sik", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sikiana", + "Comment": "" + }, + { + "Id": "sil", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tumulung Sisaala", + "Comment": "" + }, + { + "Id": "sim", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mende (Papua New Guinea)", + "Comment": "" + }, + { + "Id": "sin", + "Part2B": "sin", + "Part2T": "sin", + "Part1": "si", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sinhala", + "Comment": "" + }, + { + "Id": "sip", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sikkimese", + "Comment": "" + }, + { + "Id": "siq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sonia", + "Comment": "" + }, + { + "Id": "sir", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Siri", + "Comment": "" + }, + { + "Id": "sis", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Siuslaw", + "Comment": "" + }, + { + "Id": "siu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sinagen", + "Comment": "" + }, + { + "Id": "siv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sumariup", + "Comment": "" + }, + { + "Id": "siw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Siwai", + "Comment": "" + }, + { + "Id": "six", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sumau", + "Comment": "" + }, + { + "Id": "siy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sivandi", + "Comment": "" + }, + { + "Id": "siz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Siwi", + "Comment": "" + }, + { + "Id": "sja", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Epena", + "Comment": "" + }, + { + "Id": "sjb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sajau Basap", + "Comment": "" + }, + { + "Id": "sjc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Shaojiang Chinese", + "Comment": "" + }, + { + "Id": "sjd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kildin Sami", + "Comment": "" + }, + { + "Id": "sje", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pite Sami", + "Comment": "" + }, + { + "Id": "sjg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Assangori", + "Comment": "" + }, + { + "Id": "sjk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Kemi Sami", + "Comment": "" + }, + { + "Id": "sjl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sajalong", + "Comment": "" + }, + { + "Id": "sjm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mapun", + "Comment": "" + }, + { + "Id": "sjn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "C", + "RefName": "Sindarin", + "Comment": "" + }, + { + "Id": "sjo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Xibe", + "Comment": "" + }, + { + "Id": "sjp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Surjapuri", + "Comment": "" + }, + { + "Id": "sjr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Siar-Lak", + "Comment": "" + }, + { + "Id": "sjs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Senhaja De Srair", + "Comment": "" + }, + { + "Id": "sjt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ter Sami", + "Comment": "" + }, + { + "Id": "sju", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ume Sami", + "Comment": "" + }, + { + "Id": "sjw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Shawnee", + "Comment": "" + }, + { + "Id": "ska", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Skagit", + "Comment": "" + }, + { + "Id": "skb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Saek", + "Comment": "" + }, + { + "Id": "skc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ma Manda", + "Comment": "" + }, + { + "Id": "skd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southern Sierra Miwok", + "Comment": "" + }, + { + "Id": "ske", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Seke (Vanuatu)", + "Comment": "" + }, + { + "Id": "skf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sakirabi\u00E1", + "Comment": "" + }, + { + "Id": "skg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sakalava Malagasy", + "Comment": "" + }, + { + "Id": "skh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sikule", + "Comment": "" + }, + { + "Id": "ski", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sika", + "Comment": "" + }, + { + "Id": "skj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Seke (Nepal)", + "Comment": "" + }, + { + "Id": "skm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kutong", + "Comment": "" + }, + { + "Id": "skn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kolibugan Subanon", + "Comment": "" + }, + { + "Id": "sko", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Seko Tengah", + "Comment": "" + }, + { + "Id": "skp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sekapan", + "Comment": "" + }, + { + "Id": "skq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sininkere", + "Comment": "" + }, + { + "Id": "skr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Saraiki", + "Comment": "" + }, + { + "Id": "sks", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Maia", + "Comment": "" + }, + { + "Id": "skt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sakata", + "Comment": "" + }, + { + "Id": "sku", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sakao", + "Comment": "" + }, + { + "Id": "skv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Skou", + "Comment": "" + }, + { + "Id": "skw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Skepi Creole Dutch", + "Comment": "" + }, + { + "Id": "skx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Seko Padang", + "Comment": "" + }, + { + "Id": "sky", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sikaiana", + "Comment": "" + }, + { + "Id": "skz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sekar", + "Comment": "" + }, + { + "Id": "slc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "S\u00E1liba", + "Comment": "" + }, + { + "Id": "sld", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sissala", + "Comment": "" + }, + { + "Id": "sle", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sholaga", + "Comment": "" + }, + { + "Id": "slf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Swiss-Italian Sign Language", + "Comment": "" + }, + { + "Id": "slg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Selungai Murut", + "Comment": "" + }, + { + "Id": "slh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southern Puget Sound Salish", + "Comment": "" + }, + { + "Id": "sli", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lower Silesian", + "Comment": "" + }, + { + "Id": "slj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Salum\u00E1", + "Comment": "" + }, + { + "Id": "slk", + "Part2B": "slo", + "Part2T": "slk", + "Part1": "sk", + "Scope": "I", + "LanguageType": "L", + "RefName": "Slovak", + "Comment": "" + }, + { + "Id": "sll", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Salt-Yui", + "Comment": "" + }, + { + "Id": "slm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pangutaran Sama", + "Comment": "" + }, + { + "Id": "sln", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Salinan", + "Comment": "" + }, + { + "Id": "slp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lamaholot", + "Comment": "" + }, + { + "Id": "slr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Salar", + "Comment": "" + }, + { + "Id": "sls", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Singapore Sign Language", + "Comment": "" + }, + { + "Id": "slt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sila", + "Comment": "" + }, + { + "Id": "slu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Selaru", + "Comment": "" + }, + { + "Id": "slv", + "Part2B": "slv", + "Part2T": "slv", + "Part1": "sl", + "Scope": "I", + "LanguageType": "L", + "RefName": "Slovenian", + "Comment": "" + }, + { + "Id": "slw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sialum", + "Comment": "" + }, + { + "Id": "slx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Salampasu", + "Comment": "" + }, + { + "Id": "sly", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Selayar", + "Comment": "" + }, + { + "Id": "slz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ma\u0027ya", + "Comment": "" + }, + { + "Id": "sma", + "Part2B": "sma", + "Part2T": "sma", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southern Sami", + "Comment": "" + }, + { + "Id": "smb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Simbari", + "Comment": "" + }, + { + "Id": "smc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Som", + "Comment": "" + }, + { + "Id": "sme", + "Part2B": "sme", + "Part2T": "sme", + "Part1": "se", + "Scope": "I", + "LanguageType": "L", + "RefName": "Northern Sami", + "Comment": "" + }, + { + "Id": "smf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Auwe", + "Comment": "" + }, + { + "Id": "smg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Simbali", + "Comment": "" + }, + { + "Id": "smh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Samei", + "Comment": "" + }, + { + "Id": "smj", + "Part2B": "smj", + "Part2T": "smj", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lule Sami", + "Comment": "" + }, + { + "Id": "smk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bolinao", + "Comment": "" + }, + { + "Id": "sml", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Central Sama", + "Comment": "" + }, + { + "Id": "smm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Musasa", + "Comment": "" + }, + { + "Id": "smn", + "Part2B": "smn", + "Part2T": "smn", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Inari Sami", + "Comment": "" + }, + { + "Id": "smo", + "Part2B": "smo", + "Part2T": "smo", + "Part1": "sm", + "Scope": "I", + "LanguageType": "L", + "RefName": "Samoan", + "Comment": "" + }, + { + "Id": "smp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Samaritan", + "Comment": "" + }, + { + "Id": "smq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Samo", + "Comment": "" + }, + { + "Id": "smr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Simeulue", + "Comment": "" + }, + { + "Id": "sms", + "Part2B": "sms", + "Part2T": "sms", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Skolt Sami", + "Comment": "" + }, + { + "Id": "smt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Simte", + "Comment": "" + }, + { + "Id": "smu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Somray", + "Comment": "" + }, + { + "Id": "smv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Samvedi", + "Comment": "" + }, + { + "Id": "smw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sumbawa", + "Comment": "" + }, + { + "Id": "smx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Samba", + "Comment": "" + }, + { + "Id": "smy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Semnani", + "Comment": "" + }, + { + "Id": "smz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Simeku", + "Comment": "" + }, + { + "Id": "sna", + "Part2B": "sna", + "Part2T": "sna", + "Part1": "sn", + "Scope": "I", + "LanguageType": "L", + "RefName": "Shona", + "Comment": "" + }, + { + "Id": "snc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sinaugoro", + "Comment": "" + }, + { + "Id": "snd", + "Part2B": "snd", + "Part2T": "snd", + "Part1": "sd", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sindhi", + "Comment": "" + }, + { + "Id": "sne", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bau Bidayuh", + "Comment": "" + }, + { + "Id": "snf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Noon", + "Comment": "" + }, + { + "Id": "sng", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sanga (Democratic Republic of Congo)", + "Comment": "" + }, + { + "Id": "sni", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Sensi", + "Comment": "" + }, + { + "Id": "snj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Riverain Sango", + "Comment": "" + }, + { + "Id": "snk", + "Part2B": "snk", + "Part2T": "snk", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Soninke", + "Comment": "" + }, + { + "Id": "snl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sangil", + "Comment": "" + }, + { + "Id": "snm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southern Ma\u0027di", + "Comment": "" + }, + { + "Id": "snn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Siona", + "Comment": "" + }, + { + "Id": "sno", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Snohomish", + "Comment": "" + }, + { + "Id": "snp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Siane", + "Comment": "" + }, + { + "Id": "snq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sangu (Gabon)", + "Comment": "" + }, + { + "Id": "snr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sihan", + "Comment": "" + }, + { + "Id": "sns", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "South West Bay", + "Comment": "" + }, + { + "Id": "snu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Senggi", + "Comment": "" + }, + { + "Id": "snv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sa\u0027ban", + "Comment": "" + }, + { + "Id": "snw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Selee", + "Comment": "" + }, + { + "Id": "snx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sam", + "Comment": "" + }, + { + "Id": "sny", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Saniyo-Hiyewe", + "Comment": "" + }, + { + "Id": "snz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kou", + "Comment": "" + }, + { + "Id": "soa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Thai Song", + "Comment": "" + }, + { + "Id": "sob", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sobei", + "Comment": "" + }, + { + "Id": "soc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "So (Democratic Republic of Congo)", + "Comment": "" + }, + { + "Id": "sod", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Songoora", + "Comment": "" + }, + { + "Id": "soe", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Songomeno", + "Comment": "" + }, + { + "Id": "sog", + "Part2B": "sog", + "Part2T": "sog", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Sogdian", + "Comment": "" + }, + { + "Id": "soh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Aka", + "Comment": "" + }, + { + "Id": "soi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sonha", + "Comment": "" + }, + { + "Id": "soj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Soi", + "Comment": "" + }, + { + "Id": "sok", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sokoro", + "Comment": "" + }, + { + "Id": "sol", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Solos", + "Comment": "" + }, + { + "Id": "som", + "Part2B": "som", + "Part2T": "som", + "Part1": "so", + "Scope": "I", + "LanguageType": "L", + "RefName": "Somali", + "Comment": "" + }, + { + "Id": "soo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Songo", + "Comment": "" + }, + { + "Id": "sop", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Songe", + "Comment": "" + }, + { + "Id": "soq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kanasi", + "Comment": "" + }, + { + "Id": "sor", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Somrai", + "Comment": "" + }, + { + "Id": "sos", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Seeku", + "Comment": "" + }, + { + "Id": "sot", + "Part2B": "sot", + "Part2T": "sot", + "Part1": "st", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southern Sotho", + "Comment": "" + }, + { + "Id": "sou", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southern Thai", + "Comment": "" + }, + { + "Id": "sov", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sonsorol", + "Comment": "" + }, + { + "Id": "sow", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sowanda", + "Comment": "" + }, + { + "Id": "sox", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Swo", + "Comment": "" + }, + { + "Id": "soy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Miyobe", + "Comment": "" + }, + { + "Id": "soz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Temi", + "Comment": "" + }, + { + "Id": "spa", + "Part2B": "spa", + "Part2T": "spa", + "Part1": "es", + "Scope": "I", + "LanguageType": "L", + "RefName": "Spanish", + "Comment": "" + }, + { + "Id": "spb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sepa (Indonesia)", + "Comment": "" + }, + { + "Id": "spc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sap\u00E9", + "Comment": "" + }, + { + "Id": "spd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Saep", + "Comment": "" + }, + { + "Id": "spe", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sepa (Papua New Guinea)", + "Comment": "" + }, + { + "Id": "spg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sian", + "Comment": "" + }, + { + "Id": "spi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Saponi", + "Comment": "" + }, + { + "Id": "spk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sengo", + "Comment": "" + }, + { + "Id": "spl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Selepet", + "Comment": "" + }, + { + "Id": "spm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Akukem", + "Comment": "" + }, + { + "Id": "spn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sanapan\u00E1", + "Comment": "" + }, + { + "Id": "spo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Spokane", + "Comment": "" + }, + { + "Id": "spp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Supyire Senoufo", + "Comment": "" + }, + { + "Id": "spq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Loreto-Ucayali Spanish", + "Comment": "" + }, + { + "Id": "spr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Saparua", + "Comment": "" + }, + { + "Id": "sps", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Saposa", + "Comment": "" + }, + { + "Id": "spt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Spiti Bhoti", + "Comment": "" + }, + { + "Id": "spu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sapuan", + "Comment": "" + }, + { + "Id": "spv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sambalpuri", + "Comment": "" + }, + { + "Id": "spx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "South Picene", + "Comment": "" + }, + { + "Id": "spy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sabaot", + "Comment": "" + }, + { + "Id": "sqa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Shama-Sambuga", + "Comment": "" + }, + { + "Id": "sqh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Shau", + "Comment": "" + }, + { + "Id": "sqi", + "Part2B": "alb", + "Part2T": "sqi", + "Part1": "sq", + "Scope": "M", + "LanguageType": "L", + "RefName": "Albanian", + "Comment": "" + }, + { + "Id": "sqk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Albanian Sign Language", + "Comment": "" + }, + { + "Id": "sqm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Suma", + "Comment": "" + }, + { + "Id": "sqn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Susquehannock", + "Comment": "" + }, + { + "Id": "sqo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sorkhei", + "Comment": "" + }, + { + "Id": "sqq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sou", + "Comment": "" + }, + { + "Id": "sqr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Siculo Arabic", + "Comment": "" + }, + { + "Id": "sqs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sri Lankan Sign Language", + "Comment": "" + }, + { + "Id": "sqt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Soqotri", + "Comment": "" + }, + { + "Id": "squ", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Squamish", + "Comment": "" + }, + { + "Id": "sqx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kufr Qassem Sign Language (KQSL)", + "Comment": "" + }, + { + "Id": "sra", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Saruga", + "Comment": "" + }, + { + "Id": "srb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sora", + "Comment": "" + }, + { + "Id": "src", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Logudorese Sardinian", + "Comment": "" + }, + { + "Id": "srd", + "Part2B": "srd", + "Part2T": "srd", + "Part1": "sc", + "Scope": "M", + "LanguageType": "L", + "RefName": "Sardinian", + "Comment": "" + }, + { + "Id": "sre", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sara", + "Comment": "" + }, + { + "Id": "srf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nafi", + "Comment": "" + }, + { + "Id": "srg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sulod", + "Comment": "" + }, + { + "Id": "srh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sarikoli", + "Comment": "" + }, + { + "Id": "sri", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Siriano", + "Comment": "" + }, + { + "Id": "srk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Serudung Murut", + "Comment": "" + }, + { + "Id": "srl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Isirawa", + "Comment": "" + }, + { + "Id": "srm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Saramaccan", + "Comment": "" + }, + { + "Id": "srn", + "Part2B": "srn", + "Part2T": "srn", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sranan Tongo", + "Comment": "" + }, + { + "Id": "sro", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Campidanese Sardinian", + "Comment": "" + }, + { + "Id": "srp", + "Part2B": "srp", + "Part2T": "srp", + "Part1": "sr", + "Scope": "I", + "LanguageType": "L", + "RefName": "Serbian", + "Comment": "" + }, + { + "Id": "srq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sirion\u00F3", + "Comment": "" + }, + { + "Id": "srr", + "Part2B": "srr", + "Part2T": "srr", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Serer", + "Comment": "" + }, + { + "Id": "srs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sarsi", + "Comment": "" + }, + { + "Id": "srt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sauri", + "Comment": "" + }, + { + "Id": "sru", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Suru\u00ED", + "Comment": "" + }, + { + "Id": "srv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southern Sorsoganon", + "Comment": "" + }, + { + "Id": "srw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Serua", + "Comment": "" + }, + { + "Id": "srx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sirmauri", + "Comment": "" + }, + { + "Id": "sry", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sera", + "Comment": "" + }, + { + "Id": "srz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Shahmirzadi", + "Comment": "" + }, + { + "Id": "ssb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southern Sama", + "Comment": "" + }, + { + "Id": "ssc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Suba-Simbiti", + "Comment": "" + }, + { + "Id": "ssd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Siroi", + "Comment": "" + }, + { + "Id": "sse", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Balangingi", + "Comment": "" + }, + { + "Id": "ssf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Thao", + "Comment": "" + }, + { + "Id": "ssg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Seimat", + "Comment": "" + }, + { + "Id": "ssh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Shihhi Arabic", + "Comment": "" + }, + { + "Id": "ssi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sansi", + "Comment": "" + }, + { + "Id": "ssj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sausi", + "Comment": "" + }, + { + "Id": "ssk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sunam", + "Comment": "" + }, + { + "Id": "ssl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Western Sisaala", + "Comment": "" + }, + { + "Id": "ssm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Semnam", + "Comment": "" + }, + { + "Id": "ssn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Waata", + "Comment": "" + }, + { + "Id": "sso", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sissano", + "Comment": "" + }, + { + "Id": "ssp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Spanish Sign Language", + "Comment": "" + }, + { + "Id": "ssq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "So\u0027a", + "Comment": "" + }, + { + "Id": "ssr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Swiss-French Sign Language", + "Comment": "" + }, + { + "Id": "sss", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "S\u00F4", + "Comment": "" + }, + { + "Id": "sst", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sinasina", + "Comment": "" + }, + { + "Id": "ssu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Susuami", + "Comment": "" + }, + { + "Id": "ssv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Shark Bay", + "Comment": "" + }, + { + "Id": "ssw", + "Part2B": "ssw", + "Part2T": "ssw", + "Part1": "ss", + "Scope": "I", + "LanguageType": "L", + "RefName": "Swati", + "Comment": "" + }, + { + "Id": "ssx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Samberigi", + "Comment": "" + }, + { + "Id": "ssy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Saho", + "Comment": "" + }, + { + "Id": "ssz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sengseng", + "Comment": "" + }, + { + "Id": "sta", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Settla", + "Comment": "" + }, + { + "Id": "stb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Northern Subanen", + "Comment": "" + }, + { + "Id": "std", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sentinel", + "Comment": "" + }, + { + "Id": "ste", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Liana-Seti", + "Comment": "" + }, + { + "Id": "stf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Seta", + "Comment": "" + }, + { + "Id": "stg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Trieng", + "Comment": "" + }, + { + "Id": "sth", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Shelta", + "Comment": "" + }, + { + "Id": "sti", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bulo Stieng", + "Comment": "" + }, + { + "Id": "stj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Matya Samo", + "Comment": "" + }, + { + "Id": "stk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Arammba", + "Comment": "" + }, + { + "Id": "stl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Stellingwerfs", + "Comment": "" + }, + { + "Id": "stm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Setaman", + "Comment": "" + }, + { + "Id": "stn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Owa", + "Comment": "" + }, + { + "Id": "sto", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Stoney", + "Comment": "" + }, + { + "Id": "stp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southeastern Tepehuan", + "Comment": "" + }, + { + "Id": "stq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Saterfriesisch", + "Comment": "" + }, + { + "Id": "str", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Straits Salish", + "Comment": "" + }, + { + "Id": "sts", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Shumashti", + "Comment": "" + }, + { + "Id": "stt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Budeh Stieng", + "Comment": "" + }, + { + "Id": "stu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Samtao", + "Comment": "" + }, + { + "Id": "stv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Silt\u0027e", + "Comment": "" + }, + { + "Id": "stw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Satawalese", + "Comment": "" + }, + { + "Id": "sty", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Siberian Tatar", + "Comment": "" + }, + { + "Id": "sua", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sulka", + "Comment": "" + }, + { + "Id": "sub", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Suku", + "Comment": "" + }, + { + "Id": "suc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Western Subanon", + "Comment": "" + }, + { + "Id": "sue", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Suena", + "Comment": "" + }, + { + "Id": "sug", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Suganga", + "Comment": "" + }, + { + "Id": "sui", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Suki", + "Comment": "" + }, + { + "Id": "suj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Shubi", + "Comment": "" + }, + { + "Id": "suk", + "Part2B": "suk", + "Part2T": "suk", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sukuma", + "Comment": "" + }, + { + "Id": "sun", + "Part2B": "sun", + "Part2T": "sun", + "Part1": "su", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sundanese", + "Comment": "" + }, + { + "Id": "suo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bouni", + "Comment": "" + }, + { + "Id": "suq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tirmaga-Chai Suri", + "Comment": "" + }, + { + "Id": "sur", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mwaghavul", + "Comment": "" + }, + { + "Id": "sus", + "Part2B": "sus", + "Part2T": "sus", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Susu", + "Comment": "" + }, + { + "Id": "sut", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Subtiaba", + "Comment": "" + }, + { + "Id": "suv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Puroik", + "Comment": "" + }, + { + "Id": "suw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sumbwa", + "Comment": "" + }, + { + "Id": "sux", + "Part2B": "sux", + "Part2T": "sux", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Sumerian", + "Comment": "" + }, + { + "Id": "suy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Suy\u00E1", + "Comment": "" + }, + { + "Id": "suz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sunwar", + "Comment": "" + }, + { + "Id": "sva", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Svan", + "Comment": "" + }, + { + "Id": "svb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ulau-Suain", + "Comment": "" + }, + { + "Id": "svc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Vincentian Creole English", + "Comment": "" + }, + { + "Id": "sve", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Serili", + "Comment": "" + }, + { + "Id": "svk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Slovakian Sign Language", + "Comment": "" + }, + { + "Id": "svm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Slavomolisano", + "Comment": "" + }, + { + "Id": "svs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Savosavo", + "Comment": "" + }, + { + "Id": "svx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Skalvian", + "Comment": "" + }, + { + "Id": "swa", + "Part2B": "swa", + "Part2T": "swa", + "Part1": "sw", + "Scope": "M", + "LanguageType": "L", + "RefName": "Swahili (macrolanguage)", + "Comment": "" + }, + { + "Id": "swb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Maore Comorian", + "Comment": "" + }, + { + "Id": "swc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Congo Swahili", + "Comment": "" + }, + { + "Id": "swe", + "Part2B": "swe", + "Part2T": "swe", + "Part1": "sv", + "Scope": "I", + "LanguageType": "L", + "RefName": "Swedish", + "Comment": "" + }, + { + "Id": "swf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sere", + "Comment": "" + }, + { + "Id": "swg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Swabian", + "Comment": "" + }, + { + "Id": "swh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Swahili (individual language)", + "Comment": "" + }, + { + "Id": "swi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sui", + "Comment": "" + }, + { + "Id": "swj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sira", + "Comment": "" + }, + { + "Id": "swk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Malawi Sena", + "Comment": "" + }, + { + "Id": "swl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Swedish Sign Language", + "Comment": "" + }, + { + "Id": "swm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Samosa", + "Comment": "" + }, + { + "Id": "swn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sawknah", + "Comment": "" + }, + { + "Id": "swo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Shanenawa", + "Comment": "" + }, + { + "Id": "swp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Suau", + "Comment": "" + }, + { + "Id": "swq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sharwa", + "Comment": "" + }, + { + "Id": "swr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Saweru", + "Comment": "" + }, + { + "Id": "sws", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Seluwasan", + "Comment": "" + }, + { + "Id": "swt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sawila", + "Comment": "" + }, + { + "Id": "swu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Suwawa", + "Comment": "" + }, + { + "Id": "swv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Shekhawati", + "Comment": "" + }, + { + "Id": "sww", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Sowa", + "Comment": "" + }, + { + "Id": "swx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Suruah\u00E1", + "Comment": "" + }, + { + "Id": "swy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sarua", + "Comment": "" + }, + { + "Id": "sxb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Suba", + "Comment": "" + }, + { + "Id": "sxc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Sicanian", + "Comment": "" + }, + { + "Id": "sxe", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sighu", + "Comment": "" + }, + { + "Id": "sxg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Shuhi", + "Comment": "" + }, + { + "Id": "sxk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Southern Kalapuya", + "Comment": "" + }, + { + "Id": "sxl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Selian", + "Comment": "" + }, + { + "Id": "sxm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Samre", + "Comment": "" + }, + { + "Id": "sxn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sangir", + "Comment": "" + }, + { + "Id": "sxo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Sorothaptic", + "Comment": "" + }, + { + "Id": "sxr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Saaroa", + "Comment": "" + }, + { + "Id": "sxs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sasaru", + "Comment": "" + }, + { + "Id": "sxu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Upper Saxon", + "Comment": "" + }, + { + "Id": "sxw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Saxwe Gbe", + "Comment": "" + }, + { + "Id": "sya", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Siang", + "Comment": "" + }, + { + "Id": "syb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Central Subanen", + "Comment": "" + }, + { + "Id": "syc", + "Part2B": "syc", + "Part2T": "syc", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Classical Syriac", + "Comment": "" + }, + { + "Id": "syi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Seki", + "Comment": "" + }, + { + "Id": "syk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sukur", + "Comment": "" + }, + { + "Id": "syl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sylheti", + "Comment": "" + }, + { + "Id": "sym", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Maya Samo", + "Comment": "" + }, + { + "Id": "syn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Senaya", + "Comment": "" + }, + { + "Id": "syo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Suoy", + "Comment": "" + }, + { + "Id": "syr", + "Part2B": "syr", + "Part2T": "syr", + "Part1": "", + "Scope": "M", + "LanguageType": "L", + "RefName": "Syriac", + "Comment": "" + }, + { + "Id": "sys", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sinyar", + "Comment": "" + }, + { + "Id": "syw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kagate", + "Comment": "" + }, + { + "Id": "syx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Samay", + "Comment": "" + }, + { + "Id": "syy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Al-Sayyid Bedouin Sign Language", + "Comment": "" + }, + { + "Id": "sza", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Semelai", + "Comment": "" + }, + { + "Id": "szb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ngalum", + "Comment": "" + }, + { + "Id": "szc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Semaq Beri", + "Comment": "" + }, + { + "Id": "sze", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Seze", + "Comment": "" + }, + { + "Id": "szg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sengele", + "Comment": "" + }, + { + "Id": "szl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Silesian", + "Comment": "" + }, + { + "Id": "szn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sula", + "Comment": "" + }, + { + "Id": "szp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Suabo", + "Comment": "" + }, + { + "Id": "szs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Solomon Islands Sign Language", + "Comment": "" + }, + { + "Id": "szv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Isu (Fako Division)", + "Comment": "" + }, + { + "Id": "szw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sawai", + "Comment": "" + }, + { + "Id": "szy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sakizaya", + "Comment": "" + }, + { + "Id": "taa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lower Tanana", + "Comment": "" + }, + { + "Id": "tab", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tabassaran", + "Comment": "" + }, + { + "Id": "tac", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lowland Tarahumara", + "Comment": "" + }, + { + "Id": "tad", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tause", + "Comment": "" + }, + { + "Id": "tae", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tariana", + "Comment": "" + }, + { + "Id": "taf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tapirap\u00E9", + "Comment": "" + }, + { + "Id": "tag", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tagoi", + "Comment": "" + }, + { + "Id": "tah", + "Part2B": "tah", + "Part2T": "tah", + "Part1": "ty", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tahitian", + "Comment": "" + }, + { + "Id": "taj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Eastern Tamang", + "Comment": "" + }, + { + "Id": "tak", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tala", + "Comment": "" + }, + { + "Id": "tal", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tal", + "Comment": "" + }, + { + "Id": "tam", + "Part2B": "tam", + "Part2T": "tam", + "Part1": "ta", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tamil", + "Comment": "" + }, + { + "Id": "tan", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tangale", + "Comment": "" + }, + { + "Id": "tao", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yami", + "Comment": "" + }, + { + "Id": "tap", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Taabwa", + "Comment": "" + }, + { + "Id": "taq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tamasheq", + "Comment": "" + }, + { + "Id": "tar", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Central Tarahumara", + "Comment": "" + }, + { + "Id": "tas", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Tay Boi", + "Comment": "" + }, + { + "Id": "tat", + "Part2B": "tat", + "Part2T": "tat", + "Part1": "tt", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tatar", + "Comment": "" + }, + { + "Id": "tau", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Upper Tanana", + "Comment": "" + }, + { + "Id": "tav", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tatuyo", + "Comment": "" + }, + { + "Id": "taw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tai", + "Comment": "" + }, + { + "Id": "tax", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tamki", + "Comment": "" + }, + { + "Id": "tay", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Atayal", + "Comment": "" + }, + { + "Id": "taz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tocho", + "Comment": "" + }, + { + "Id": "tba", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Aikan\u00E3", + "Comment": "" + }, + { + "Id": "tbc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Takia", + "Comment": "" + }, + { + "Id": "tbd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kaki Ae", + "Comment": "" + }, + { + "Id": "tbe", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tanimbili", + "Comment": "" + }, + { + "Id": "tbf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mandara", + "Comment": "" + }, + { + "Id": "tbg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "North Tairora", + "Comment": "" + }, + { + "Id": "tbh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Dharawal", + "Comment": "" + }, + { + "Id": "tbi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gaam", + "Comment": "" + }, + { + "Id": "tbj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tiang", + "Comment": "" + }, + { + "Id": "tbk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Calamian Tagbanwa", + "Comment": "" + }, + { + "Id": "tbl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tboli", + "Comment": "" + }, + { + "Id": "tbm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tagbu", + "Comment": "" + }, + { + "Id": "tbn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Barro Negro Tunebo", + "Comment": "" + }, + { + "Id": "tbo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tawala", + "Comment": "" + }, + { + "Id": "tbp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Taworta", + "Comment": "" + }, + { + "Id": "tbr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tumtum", + "Comment": "" + }, + { + "Id": "tbs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tanguat", + "Comment": "" + }, + { + "Id": "tbt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tembo (Kitembo)", + "Comment": "" + }, + { + "Id": "tbu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Tubar", + "Comment": "" + }, + { + "Id": "tbv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tobo", + "Comment": "" + }, + { + "Id": "tbw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tagbanwa", + "Comment": "" + }, + { + "Id": "tbx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kapin", + "Comment": "" + }, + { + "Id": "tby", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tabaru", + "Comment": "" + }, + { + "Id": "tbz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ditammari", + "Comment": "" + }, + { + "Id": "tca", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ticuna", + "Comment": "" + }, + { + "Id": "tcb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tanacross", + "Comment": "" + }, + { + "Id": "tcc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Datooga", + "Comment": "" + }, + { + "Id": "tcd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tafi", + "Comment": "" + }, + { + "Id": "tce", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southern Tutchone", + "Comment": "" + }, + { + "Id": "tcf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Malinaltepec Me\u0027phaa", + "Comment": "" + }, + { + "Id": "tcg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tamagario", + "Comment": "" + }, + { + "Id": "tch", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Turks And Caicos Creole English", + "Comment": "" + }, + { + "Id": "tci", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "W\u00E1ra", + "Comment": "" + }, + { + "Id": "tck", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tchitchege", + "Comment": "" + }, + { + "Id": "tcl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Taman (Myanmar)", + "Comment": "" + }, + { + "Id": "tcm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tanahmerah", + "Comment": "" + }, + { + "Id": "tcn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tichurong", + "Comment": "" + }, + { + "Id": "tco", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Taungyo", + "Comment": "" + }, + { + "Id": "tcp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tawr Chin", + "Comment": "" + }, + { + "Id": "tcq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kaiy", + "Comment": "" + }, + { + "Id": "tcs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Torres Strait Creole", + "Comment": "" + }, + { + "Id": "tct", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "T\u0027en", + "Comment": "" + }, + { + "Id": "tcu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southeastern Tarahumara", + "Comment": "" + }, + { + "Id": "tcw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tecpatl\u00E1n Totonac", + "Comment": "" + }, + { + "Id": "tcx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Toda", + "Comment": "" + }, + { + "Id": "tcy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tulu", + "Comment": "" + }, + { + "Id": "tcz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Thado Chin", + "Comment": "" + }, + { + "Id": "tda", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tagdal", + "Comment": "" + }, + { + "Id": "tdb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Panchpargania", + "Comment": "" + }, + { + "Id": "tdc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ember\u00E1-Tad\u00F3", + "Comment": "" + }, + { + "Id": "tdd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tai N\u00FCa", + "Comment": "" + }, + { + "Id": "tde", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tiranige Diga Dogon", + "Comment": "" + }, + { + "Id": "tdf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Talieng", + "Comment": "" + }, + { + "Id": "tdg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Western Tamang", + "Comment": "" + }, + { + "Id": "tdh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Thulung", + "Comment": "" + }, + { + "Id": "tdi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tomadino", + "Comment": "" + }, + { + "Id": "tdj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tajio", + "Comment": "" + }, + { + "Id": "tdk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tambas", + "Comment": "" + }, + { + "Id": "tdl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sur", + "Comment": "" + }, + { + "Id": "tdm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Taruma", + "Comment": "" + }, + { + "Id": "tdn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tondano", + "Comment": "" + }, + { + "Id": "tdo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Teme", + "Comment": "" + }, + { + "Id": "tdq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tita", + "Comment": "" + }, + { + "Id": "tdr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Todrah", + "Comment": "" + }, + { + "Id": "tds", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Doutai", + "Comment": "" + }, + { + "Id": "tdt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tetun Dili", + "Comment": "" + }, + { + "Id": "tdv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Toro", + "Comment": "" + }, + { + "Id": "tdx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tandroy-Mahafaly Malagasy", + "Comment": "" + }, + { + "Id": "tdy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tadyawan", + "Comment": "" + }, + { + "Id": "tea", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Temiar", + "Comment": "" + }, + { + "Id": "teb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Tetete", + "Comment": "" + }, + { + "Id": "tec", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Terik", + "Comment": "" + }, + { + "Id": "ted", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tepo Krumen", + "Comment": "" + }, + { + "Id": "tee", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Huehuetla Tepehua", + "Comment": "" + }, + { + "Id": "tef", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Teressa", + "Comment": "" + }, + { + "Id": "teg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Teke-Tege", + "Comment": "" + }, + { + "Id": "teh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tehuelche", + "Comment": "" + }, + { + "Id": "tei", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Torricelli", + "Comment": "" + }, + { + "Id": "tek", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ibali Teke", + "Comment": "" + }, + { + "Id": "tel", + "Part2B": "tel", + "Part2T": "tel", + "Part1": "te", + "Scope": "I", + "LanguageType": "L", + "RefName": "Telugu", + "Comment": "" + }, + { + "Id": "tem", + "Part2B": "tem", + "Part2T": "tem", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Timne", + "Comment": "" + }, + { + "Id": "ten", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Tama (Colombia)", + "Comment": "" + }, + { + "Id": "teo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Teso", + "Comment": "" + }, + { + "Id": "tep", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Tepecano", + "Comment": "" + }, + { + "Id": "teq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Temein", + "Comment": "" + }, + { + "Id": "ter", + "Part2B": "ter", + "Part2T": "ter", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tereno", + "Comment": "" + }, + { + "Id": "tes", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tengger", + "Comment": "" + }, + { + "Id": "tet", + "Part2B": "tet", + "Part2T": "tet", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tetum", + "Comment": "" + }, + { + "Id": "teu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Soo", + "Comment": "" + }, + { + "Id": "tev", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Teor", + "Comment": "" + }, + { + "Id": "tew", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tewa (USA)", + "Comment": "" + }, + { + "Id": "tex", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tennet", + "Comment": "" + }, + { + "Id": "tey", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tulishi", + "Comment": "" + }, + { + "Id": "tez", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tetserret", + "Comment": "" + }, + { + "Id": "tfi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tofin Gbe", + "Comment": "" + }, + { + "Id": "tfn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tanaina", + "Comment": "" + }, + { + "Id": "tfo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tefaro", + "Comment": "" + }, + { + "Id": "tfr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Teribe", + "Comment": "" + }, + { + "Id": "tft", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ternate", + "Comment": "" + }, + { + "Id": "tga", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sagalla", + "Comment": "" + }, + { + "Id": "tgb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tobilung", + "Comment": "" + }, + { + "Id": "tgc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tigak", + "Comment": "" + }, + { + "Id": "tgd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ciwogai", + "Comment": "" + }, + { + "Id": "tge", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Eastern Gorkha Tamang", + "Comment": "" + }, + { + "Id": "tgf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chalikha", + "Comment": "" + }, + { + "Id": "tgh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tobagonian Creole English", + "Comment": "" + }, + { + "Id": "tgi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lawunuia", + "Comment": "" + }, + { + "Id": "tgj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tagin", + "Comment": "" + }, + { + "Id": "tgk", + "Part2B": "tgk", + "Part2T": "tgk", + "Part1": "tg", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tajik", + "Comment": "" + }, + { + "Id": "tgl", + "Part2B": "tgl", + "Part2T": "tgl", + "Part1": "tl", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tagalog", + "Comment": "" + }, + { + "Id": "tgn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tandaganon", + "Comment": "" + }, + { + "Id": "tgo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sudest", + "Comment": "" + }, + { + "Id": "tgp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tangoa", + "Comment": "" + }, + { + "Id": "tgq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tring", + "Comment": "" + }, + { + "Id": "tgr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tareng", + "Comment": "" + }, + { + "Id": "tgs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nume", + "Comment": "" + }, + { + "Id": "tgt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Central Tagbanwa", + "Comment": "" + }, + { + "Id": "tgu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tanggu", + "Comment": "" + }, + { + "Id": "tgv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Tingui-Boto", + "Comment": "" + }, + { + "Id": "tgw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tagwana Senoufo", + "Comment": "" + }, + { + "Id": "tgx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tagish", + "Comment": "" + }, + { + "Id": "tgy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Togoyo", + "Comment": "" + }, + { + "Id": "tgz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Tagalaka", + "Comment": "" + }, + { + "Id": "tha", + "Part2B": "tha", + "Part2T": "tha", + "Part1": "th", + "Scope": "I", + "LanguageType": "L", + "RefName": "Thai", + "Comment": "" + }, + { + "Id": "thd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kuuk Thaayorre", + "Comment": "" + }, + { + "Id": "the", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chitwania Tharu", + "Comment": "" + }, + { + "Id": "thf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Thangmi", + "Comment": "" + }, + { + "Id": "thh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Northern Tarahumara", + "Comment": "" + }, + { + "Id": "thi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tai Long", + "Comment": "" + }, + { + "Id": "thk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tharaka", + "Comment": "" + }, + { + "Id": "thl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dangaura Tharu", + "Comment": "" + }, + { + "Id": "thm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Aheu", + "Comment": "" + }, + { + "Id": "thn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Thachanadan", + "Comment": "" + }, + { + "Id": "thp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Thompson", + "Comment": "" + }, + { + "Id": "thq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kochila Tharu", + "Comment": "" + }, + { + "Id": "thr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Rana Tharu", + "Comment": "" + }, + { + "Id": "ths", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Thakali", + "Comment": "" + }, + { + "Id": "tht", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tahltan", + "Comment": "" + }, + { + "Id": "thu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Thuri", + "Comment": "" + }, + { + "Id": "thv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tahaggart Tamahaq", + "Comment": "" + }, + { + "Id": "thy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tha", + "Comment": "" + }, + { + "Id": "thz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tayart Tamajeq", + "Comment": "" + }, + { + "Id": "tia", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tidikelt Tamazight", + "Comment": "" + }, + { + "Id": "tic", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tira", + "Comment": "" + }, + { + "Id": "tif", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tifal", + "Comment": "" + }, + { + "Id": "tig", + "Part2B": "tig", + "Part2T": "tig", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tigre", + "Comment": "" + }, + { + "Id": "tih", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Timugon Murut", + "Comment": "" + }, + { + "Id": "tii", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tiene", + "Comment": "" + }, + { + "Id": "tij", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tilung", + "Comment": "" + }, + { + "Id": "tik", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tikar", + "Comment": "" + }, + { + "Id": "til", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Tillamook", + "Comment": "" + }, + { + "Id": "tim", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Timbe", + "Comment": "" + }, + { + "Id": "tin", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tindi", + "Comment": "" + }, + { + "Id": "tio", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Teop", + "Comment": "" + }, + { + "Id": "tip", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Trimuris", + "Comment": "" + }, + { + "Id": "tiq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ti\u00E9fo", + "Comment": "" + }, + { + "Id": "tir", + "Part2B": "tir", + "Part2T": "tir", + "Part1": "ti", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tigrinya", + "Comment": "" + }, + { + "Id": "tis", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Masadiit Itneg", + "Comment": "" + }, + { + "Id": "tit", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tinigua", + "Comment": "" + }, + { + "Id": "tiu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Adasen", + "Comment": "" + }, + { + "Id": "tiv", + "Part2B": "tiv", + "Part2T": "tiv", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tiv", + "Comment": "" + }, + { + "Id": "tiw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tiwi", + "Comment": "" + }, + { + "Id": "tix", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southern Tiwa", + "Comment": "" + }, + { + "Id": "tiy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tiruray", + "Comment": "" + }, + { + "Id": "tiz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tai Hongjin", + "Comment": "" + }, + { + "Id": "tja", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tajuasohn", + "Comment": "" + }, + { + "Id": "tjg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tunjung", + "Comment": "" + }, + { + "Id": "tji", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Northern Tujia", + "Comment": "" + }, + { + "Id": "tjj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tjungundji", + "Comment": "" + }, + { + "Id": "tjl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tai Laing", + "Comment": "" + }, + { + "Id": "tjm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Timucua", + "Comment": "" + }, + { + "Id": "tjn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Tonjon", + "Comment": "" + }, + { + "Id": "tjo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Temacine Tamazight", + "Comment": "" + }, + { + "Id": "tjp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tjupany", + "Comment": "" + }, + { + "Id": "tjs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southern Tujia", + "Comment": "" + }, + { + "Id": "tju", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Tjurruru", + "Comment": "" + }, + { + "Id": "tjw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Djabwurrung", + "Comment": "" + }, + { + "Id": "tka", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Truk\u00E1", + "Comment": "" + }, + { + "Id": "tkb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Buksa", + "Comment": "" + }, + { + "Id": "tkd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tukudede", + "Comment": "" + }, + { + "Id": "tke", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Takwane", + "Comment": "" + }, + { + "Id": "tkf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Tukumanf\u00E9d", + "Comment": "" + }, + { + "Id": "tkg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tesaka Malagasy", + "Comment": "" + }, + { + "Id": "tkl", + "Part2B": "tkl", + "Part2T": "tkl", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tokelau", + "Comment": "" + }, + { + "Id": "tkm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Takelma", + "Comment": "" + }, + { + "Id": "tkn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Toku-No-Shima", + "Comment": "" + }, + { + "Id": "tkp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tikopia", + "Comment": "" + }, + { + "Id": "tkq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tee", + "Comment": "" + }, + { + "Id": "tkr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tsakhur", + "Comment": "" + }, + { + "Id": "tks", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Takestani", + "Comment": "" + }, + { + "Id": "tkt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kathoriya Tharu", + "Comment": "" + }, + { + "Id": "tku", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Upper Necaxa Totonac", + "Comment": "" + }, + { + "Id": "tkv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mur Pano", + "Comment": "" + }, + { + "Id": "tkw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Teanu", + "Comment": "" + }, + { + "Id": "tkx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tangko", + "Comment": "" + }, + { + "Id": "tkz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Takua", + "Comment": "" + }, + { + "Id": "tla", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southwestern Tepehuan", + "Comment": "" + }, + { + "Id": "tlb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tobelo", + "Comment": "" + }, + { + "Id": "tlc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yecuatla Totonac", + "Comment": "" + }, + { + "Id": "tld", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Talaud", + "Comment": "" + }, + { + "Id": "tlf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Telefol", + "Comment": "" + }, + { + "Id": "tlg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tofanma", + "Comment": "" + }, + { + "Id": "tlh", + "Part2B": "tlh", + "Part2T": "tlh", + "Part1": "", + "Scope": "I", + "LanguageType": "C", + "RefName": "Klingon", + "Comment": "" + }, + { + "Id": "tli", + "Part2B": "tli", + "Part2T": "tli", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tlingit", + "Comment": "" + }, + { + "Id": "tlj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Talinga-Bwisi", + "Comment": "" + }, + { + "Id": "tlk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Taloki", + "Comment": "" + }, + { + "Id": "tll", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tetela", + "Comment": "" + }, + { + "Id": "tlm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tolomako", + "Comment": "" + }, + { + "Id": "tln", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Talondo\u0027", + "Comment": "" + }, + { + "Id": "tlo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Talodi", + "Comment": "" + }, + { + "Id": "tlp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Filomena Mata-Coahuitl\u00E1n Totonac", + "Comment": "" + }, + { + "Id": "tlq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tai Loi", + "Comment": "" + }, + { + "Id": "tlr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Talise", + "Comment": "" + }, + { + "Id": "tls", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tambotalo", + "Comment": "" + }, + { + "Id": "tlt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sou Nama", + "Comment": "" + }, + { + "Id": "tlu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tulehu", + "Comment": "" + }, + { + "Id": "tlv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Taliabu", + "Comment": "" + }, + { + "Id": "tlx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Khehek", + "Comment": "" + }, + { + "Id": "tly", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Talysh", + "Comment": "" + }, + { + "Id": "tma", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tama (Chad)", + "Comment": "" + }, + { + "Id": "tmb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Katbol", + "Comment": "" + }, + { + "Id": "tmc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tumak", + "Comment": "" + }, + { + "Id": "tmd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Haruai", + "Comment": "" + }, + { + "Id": "tme", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Trememb\u00E9", + "Comment": "" + }, + { + "Id": "tmf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Toba-Maskoy", + "Comment": "" + }, + { + "Id": "tmg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Ternate\u00F1o", + "Comment": "" + }, + { + "Id": "tmh", + "Part2B": "tmh", + "Part2T": "tmh", + "Part1": "", + "Scope": "M", + "LanguageType": "L", + "RefName": "Tamashek", + "Comment": "" + }, + { + "Id": "tmi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tutuba", + "Comment": "" + }, + { + "Id": "tmj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Samarokena", + "Comment": "" + }, + { + "Id": "tml", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tamnim Citak", + "Comment": "" + }, + { + "Id": "tmm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tai Thanh", + "Comment": "" + }, + { + "Id": "tmn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Taman (Indonesia)", + "Comment": "" + }, + { + "Id": "tmo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Temoq", + "Comment": "" + }, + { + "Id": "tmq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tumleo", + "Comment": "" + }, + { + "Id": "tmr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Jewish Babylonian Aramaic (ca. 200-1200 CE)", + "Comment": "" + }, + { + "Id": "tms", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tima", + "Comment": "" + }, + { + "Id": "tmt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tasmate", + "Comment": "" + }, + { + "Id": "tmu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Iau", + "Comment": "" + }, + { + "Id": "tmv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tembo (Motembo)", + "Comment": "" + }, + { + "Id": "tmw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Temuan", + "Comment": "" + }, + { + "Id": "tmy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tami", + "Comment": "" + }, + { + "Id": "tmz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Tamanaku", + "Comment": "" + }, + { + "Id": "tna", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tacana", + "Comment": "" + }, + { + "Id": "tnb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Western Tunebo", + "Comment": "" + }, + { + "Id": "tnc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tanimuca-Retuar\u00E3", + "Comment": "" + }, + { + "Id": "tnd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Angosturas Tunebo", + "Comment": "" + }, + { + "Id": "tng", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tobanga", + "Comment": "" + }, + { + "Id": "tnh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Maiani", + "Comment": "" + }, + { + "Id": "tni", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tandia", + "Comment": "" + }, + { + "Id": "tnk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kwamera", + "Comment": "" + }, + { + "Id": "tnl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lenakel", + "Comment": "" + }, + { + "Id": "tnm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tabla", + "Comment": "" + }, + { + "Id": "tnn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "North Tanna", + "Comment": "" + }, + { + "Id": "tno", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Toromono", + "Comment": "" + }, + { + "Id": "tnp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Whitesands", + "Comment": "" + }, + { + "Id": "tnq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Taino", + "Comment": "" + }, + { + "Id": "tnr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "M\u00E9nik", + "Comment": "" + }, + { + "Id": "tns", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tenis", + "Comment": "" + }, + { + "Id": "tnt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tontemboan", + "Comment": "" + }, + { + "Id": "tnu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tay Khang", + "Comment": "" + }, + { + "Id": "tnv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tangchangya", + "Comment": "" + }, + { + "Id": "tnw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tonsawang", + "Comment": "" + }, + { + "Id": "tnx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tanema", + "Comment": "" + }, + { + "Id": "tny", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tongwe", + "Comment": "" + }, + { + "Id": "tnz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ten\u0027edn", + "Comment": "" + }, + { + "Id": "tob", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Toba", + "Comment": "" + }, + { + "Id": "toc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Coyutla Totonac", + "Comment": "" + }, + { + "Id": "tod", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Toma", + "Comment": "" + }, + { + "Id": "tof", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gizrra", + "Comment": "" + }, + { + "Id": "tog", + "Part2B": "tog", + "Part2T": "tog", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tonga (Nyasa)", + "Comment": "" + }, + { + "Id": "toh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gitonga", + "Comment": "" + }, + { + "Id": "toi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tonga (Zambia)", + "Comment": "" + }, + { + "Id": "toj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tojolabal", + "Comment": "" + }, + { + "Id": "tok", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "C", + "RefName": "Toki Pona", + "Comment": "" + }, + { + "Id": "tol", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Tolowa", + "Comment": "" + }, + { + "Id": "tom", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tombulu", + "Comment": "" + }, + { + "Id": "ton", + "Part2B": "ton", + "Part2T": "ton", + "Part1": "to", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tonga (Tonga Islands)", + "Comment": "" + }, + { + "Id": "too", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Xicotepec De Ju\u00E1rez Totonac", + "Comment": "" + }, + { + "Id": "top", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Papantla Totonac", + "Comment": "" + }, + { + "Id": "toq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Toposa", + "Comment": "" + }, + { + "Id": "tor", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Togbo-Vara Banda", + "Comment": "" + }, + { + "Id": "tos", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Highland Totonac", + "Comment": "" + }, + { + "Id": "tou", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tho", + "Comment": "" + }, + { + "Id": "tov", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Upper Taromi", + "Comment": "" + }, + { + "Id": "tow", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Jemez", + "Comment": "" + }, + { + "Id": "tox", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tobian", + "Comment": "" + }, + { + "Id": "toy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Topoiyo", + "Comment": "" + }, + { + "Id": "toz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "To", + "Comment": "" + }, + { + "Id": "tpa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Taupota", + "Comment": "" + }, + { + "Id": "tpc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Azoy\u00FA Me\u0027phaa", + "Comment": "" + }, + { + "Id": "tpe", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tippera", + "Comment": "" + }, + { + "Id": "tpf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tarpia", + "Comment": "" + }, + { + "Id": "tpg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kula", + "Comment": "" + }, + { + "Id": "tpi", + "Part2B": "tpi", + "Part2T": "tpi", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tok Pisin", + "Comment": "" + }, + { + "Id": "tpj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tapiet\u00E9", + "Comment": "" + }, + { + "Id": "tpk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Tupinikin", + "Comment": "" + }, + { + "Id": "tpl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tlacoapa Me\u0027phaa", + "Comment": "" + }, + { + "Id": "tpm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tampulma", + "Comment": "" + }, + { + "Id": "tpn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Tupinamb\u00E1", + "Comment": "" + }, + { + "Id": "tpo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tai Pao", + "Comment": "" + }, + { + "Id": "tpp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pisaflores Tepehua", + "Comment": "" + }, + { + "Id": "tpq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tukpa", + "Comment": "" + }, + { + "Id": "tpr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tupar\u00ED", + "Comment": "" + }, + { + "Id": "tpt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tlachichilco Tepehua", + "Comment": "" + }, + { + "Id": "tpu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tampuan", + "Comment": "" + }, + { + "Id": "tpv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tanapag", + "Comment": "" + }, + { + "Id": "tpx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Acatepec Me\u0027phaa", + "Comment": "" + }, + { + "Id": "tpy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Trumai", + "Comment": "" + }, + { + "Id": "tpz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tinputz", + "Comment": "" + }, + { + "Id": "tqb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Temb\u00E9", + "Comment": "" + }, + { + "Id": "tql", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lehali", + "Comment": "" + }, + { + "Id": "tqm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Turumsa", + "Comment": "" + }, + { + "Id": "tqn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tenino", + "Comment": "" + }, + { + "Id": "tqo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Toaripi", + "Comment": "" + }, + { + "Id": "tqp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tomoip", + "Comment": "" + }, + { + "Id": "tqq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tunni", + "Comment": "" + }, + { + "Id": "tqr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Torona", + "Comment": "" + }, + { + "Id": "tqt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Western Totonac", + "Comment": "" + }, + { + "Id": "tqu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Touo", + "Comment": "" + }, + { + "Id": "tqw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Tonkawa", + "Comment": "" + }, + { + "Id": "tra", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tirahi", + "Comment": "" + }, + { + "Id": "trb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Terebu", + "Comment": "" + }, + { + "Id": "trc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Copala Triqui", + "Comment": "" + }, + { + "Id": "trd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Turi", + "Comment": "" + }, + { + "Id": "tre", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "East Tarangan", + "Comment": "" + }, + { + "Id": "trf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Trinidadian Creole English", + "Comment": "" + }, + { + "Id": "trg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lish\u00E1n Did\u00E1n", + "Comment": "" + }, + { + "Id": "trh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Turaka", + "Comment": "" + }, + { + "Id": "tri", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tri\u00F3", + "Comment": "" + }, + { + "Id": "trj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Toram", + "Comment": "" + }, + { + "Id": "trl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Traveller Scottish", + "Comment": "" + }, + { + "Id": "trm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tregami", + "Comment": "" + }, + { + "Id": "trn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Trinitario", + "Comment": "" + }, + { + "Id": "tro", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tarao Naga", + "Comment": "" + }, + { + "Id": "trp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kok Borok", + "Comment": "" + }, + { + "Id": "trq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "San Mart\u00EDn Itunyoso Triqui", + "Comment": "" + }, + { + "Id": "trr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Taushiro", + "Comment": "" + }, + { + "Id": "trs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chicahuaxtla Triqui", + "Comment": "" + }, + { + "Id": "trt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tunggare", + "Comment": "" + }, + { + "Id": "tru", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Turoyo", + "Comment": "" + }, + { + "Id": "trv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sediq", + "Comment": "" + }, + { + "Id": "trw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Torwali", + "Comment": "" + }, + { + "Id": "trx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tringgus-Sembaan Bidayuh", + "Comment": "" + }, + { + "Id": "try", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Turung", + "Comment": "" + }, + { + "Id": "trz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Tor\u00E1", + "Comment": "" + }, + { + "Id": "tsa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tsaangi", + "Comment": "" + }, + { + "Id": "tsb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tsamai", + "Comment": "" + }, + { + "Id": "tsc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tswa", + "Comment": "" + }, + { + "Id": "tsd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tsakonian", + "Comment": "" + }, + { + "Id": "tse", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tunisian Sign Language", + "Comment": "" + }, + { + "Id": "tsg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tausug", + "Comment": "" + }, + { + "Id": "tsh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tsuvan", + "Comment": "" + }, + { + "Id": "tsi", + "Part2B": "tsi", + "Part2T": "tsi", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tsimshian", + "Comment": "" + }, + { + "Id": "tsj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tshangla", + "Comment": "" + }, + { + "Id": "tsk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tseku", + "Comment": "" + }, + { + "Id": "tsl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ts\u0027\u00FCn-Lao", + "Comment": "" + }, + { + "Id": "tsm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Turkish Sign Language", + "Comment": "" + }, + { + "Id": "tsn", + "Part2B": "tsn", + "Part2T": "tsn", + "Part1": "tn", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tswana", + "Comment": "" + }, + { + "Id": "tso", + "Part2B": "tso", + "Part2T": "tso", + "Part1": "ts", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tsonga", + "Comment": "" + }, + { + "Id": "tsp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Northern Toussian", + "Comment": "" + }, + { + "Id": "tsq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Thai Sign Language", + "Comment": "" + }, + { + "Id": "tsr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Akei", + "Comment": "" + }, + { + "Id": "tss", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Taiwan Sign Language", + "Comment": "" + }, + { + "Id": "tst", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tondi Songway Kiini", + "Comment": "" + }, + { + "Id": "tsu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tsou", + "Comment": "" + }, + { + "Id": "tsv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tsogo", + "Comment": "" + }, + { + "Id": "tsw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tsishingini", + "Comment": "" + }, + { + "Id": "tsx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mubami", + "Comment": "" + }, + { + "Id": "tsy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tebul Sign Language", + "Comment": "" + }, + { + "Id": "tsz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Purepecha", + "Comment": "" + }, + { + "Id": "tta", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Tutelo", + "Comment": "" + }, + { + "Id": "ttb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gaa", + "Comment": "" + }, + { + "Id": "ttc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tektiteko", + "Comment": "" + }, + { + "Id": "ttd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tauade", + "Comment": "" + }, + { + "Id": "tte", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bwanabwana", + "Comment": "" + }, + { + "Id": "ttf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tuotomb", + "Comment": "" + }, + { + "Id": "ttg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tutong", + "Comment": "" + }, + { + "Id": "tth", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Upper Ta\u0027oih", + "Comment": "" + }, + { + "Id": "tti", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tobati", + "Comment": "" + }, + { + "Id": "ttj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tooro", + "Comment": "" + }, + { + "Id": "ttk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Totoro", + "Comment": "" + }, + { + "Id": "ttl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Totela", + "Comment": "" + }, + { + "Id": "ttm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Northern Tutchone", + "Comment": "" + }, + { + "Id": "ttn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Towei", + "Comment": "" + }, + { + "Id": "tto", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lower Ta\u0027oih", + "Comment": "" + }, + { + "Id": "ttp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tombelala", + "Comment": "" + }, + { + "Id": "ttq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tawallammat Tamajaq", + "Comment": "" + }, + { + "Id": "ttr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tera", + "Comment": "" + }, + { + "Id": "tts", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Northeastern Thai", + "Comment": "" + }, + { + "Id": "ttt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Muslim Tat", + "Comment": "" + }, + { + "Id": "ttu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Torau", + "Comment": "" + }, + { + "Id": "ttv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Titan", + "Comment": "" + }, + { + "Id": "ttw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Long Wat", + "Comment": "" + }, + { + "Id": "tty", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sikaritai", + "Comment": "" + }, + { + "Id": "ttz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tsum", + "Comment": "" + }, + { + "Id": "tua", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wiarumus", + "Comment": "" + }, + { + "Id": "tub", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "T\u00FCbatulabal", + "Comment": "" + }, + { + "Id": "tuc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mutu", + "Comment": "" + }, + { + "Id": "tud", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Tux\u00E1", + "Comment": "" + }, + { + "Id": "tue", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tuyuca", + "Comment": "" + }, + { + "Id": "tuf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Central Tunebo", + "Comment": "" + }, + { + "Id": "tug", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tunia", + "Comment": "" + }, + { + "Id": "tuh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Taulil", + "Comment": "" + }, + { + "Id": "tui", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tupuri", + "Comment": "" + }, + { + "Id": "tuj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tugutil", + "Comment": "" + }, + { + "Id": "tuk", + "Part2B": "tuk", + "Part2T": "tuk", + "Part1": "tk", + "Scope": "I", + "LanguageType": "L", + "RefName": "Turkmen", + "Comment": "" + }, + { + "Id": "tul", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tula", + "Comment": "" + }, + { + "Id": "tum", + "Part2B": "tum", + "Part2T": "tum", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tumbuka", + "Comment": "" + }, + { + "Id": "tun", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tunica", + "Comment": "" + }, + { + "Id": "tuo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tucano", + "Comment": "" + }, + { + "Id": "tuq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tedaga", + "Comment": "" + }, + { + "Id": "tur", + "Part2B": "tur", + "Part2T": "tur", + "Part1": "tr", + "Scope": "I", + "LanguageType": "L", + "RefName": "Turkish", + "Comment": "" + }, + { + "Id": "tus", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tuscarora", + "Comment": "" + }, + { + "Id": "tuu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tututni", + "Comment": "" + }, + { + "Id": "tuv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Turkana", + "Comment": "" + }, + { + "Id": "tux", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Tuxin\u00E1wa", + "Comment": "" + }, + { + "Id": "tuy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tugen", + "Comment": "" + }, + { + "Id": "tuz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Turka", + "Comment": "" + }, + { + "Id": "tva", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Vaghua", + "Comment": "" + }, + { + "Id": "tvd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tsuvadi", + "Comment": "" + }, + { + "Id": "tve", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Te\u0027un", + "Comment": "" + }, + { + "Id": "tvi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tulai", + "Comment": "" + }, + { + "Id": "tvk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southeast Ambrym", + "Comment": "" + }, + { + "Id": "tvl", + "Part2B": "tvl", + "Part2T": "tvl", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tuvalu", + "Comment": "" + }, + { + "Id": "tvm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tela-Masbuar", + "Comment": "" + }, + { + "Id": "tvn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tavoyan", + "Comment": "" + }, + { + "Id": "tvo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tidore", + "Comment": "" + }, + { + "Id": "tvs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Taveta", + "Comment": "" + }, + { + "Id": "tvt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tutsa Naga", + "Comment": "" + }, + { + "Id": "tvu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tunen", + "Comment": "" + }, + { + "Id": "tvw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sedoa", + "Comment": "" + }, + { + "Id": "tvx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Taivoan", + "Comment": "" + }, + { + "Id": "tvy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Timor Pidgin", + "Comment": "" + }, + { + "Id": "twa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Twana", + "Comment": "" + }, + { + "Id": "twb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Western Tawbuid", + "Comment": "" + }, + { + "Id": "twc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Teshenawa", + "Comment": "" + }, + { + "Id": "twd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Twents", + "Comment": "" + }, + { + "Id": "twe", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tewa (Indonesia)", + "Comment": "" + }, + { + "Id": "twf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Northern Tiwa", + "Comment": "" + }, + { + "Id": "twg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tereweng", + "Comment": "" + }, + { + "Id": "twh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tai D\u00F3n", + "Comment": "" + }, + { + "Id": "twi", + "Part2B": "twi", + "Part2T": "twi", + "Part1": "tw", + "Scope": "I", + "LanguageType": "L", + "RefName": "Twi", + "Comment": "" + }, + { + "Id": "twl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tawara", + "Comment": "" + }, + { + "Id": "twm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tawang Monpa", + "Comment": "" + }, + { + "Id": "twn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Twendi", + "Comment": "" + }, + { + "Id": "two", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tswapong", + "Comment": "" + }, + { + "Id": "twp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ere", + "Comment": "" + }, + { + "Id": "twq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tasawaq", + "Comment": "" + }, + { + "Id": "twr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southwestern Tarahumara", + "Comment": "" + }, + { + "Id": "twt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Turiw\u00E1ra", + "Comment": "" + }, + { + "Id": "twu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Termanu", + "Comment": "" + }, + { + "Id": "tww", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tuwari", + "Comment": "" + }, + { + "Id": "twx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tewe", + "Comment": "" + }, + { + "Id": "twy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tawoyan", + "Comment": "" + }, + { + "Id": "txa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tombonuo", + "Comment": "" + }, + { + "Id": "txb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Tokharian B", + "Comment": "" + }, + { + "Id": "txc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Tsetsaut", + "Comment": "" + }, + { + "Id": "txe", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Totoli", + "Comment": "" + }, + { + "Id": "txg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Tangut", + "Comment": "" + }, + { + "Id": "txh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Thracian", + "Comment": "" + }, + { + "Id": "txi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ikpeng", + "Comment": "" + }, + { + "Id": "txj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tarjumo", + "Comment": "" + }, + { + "Id": "txm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tomini", + "Comment": "" + }, + { + "Id": "txn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "West Tarangan", + "Comment": "" + }, + { + "Id": "txo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Toto", + "Comment": "" + }, + { + "Id": "txq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tii", + "Comment": "" + }, + { + "Id": "txr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Tartessian", + "Comment": "" + }, + { + "Id": "txs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tonsea", + "Comment": "" + }, + { + "Id": "txt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Citak", + "Comment": "" + }, + { + "Id": "txu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kayap\u00F3", + "Comment": "" + }, + { + "Id": "txx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tatana", + "Comment": "" + }, + { + "Id": "txy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tanosy Malagasy", + "Comment": "" + }, + { + "Id": "tya", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tauya", + "Comment": "" + }, + { + "Id": "tye", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kyanga", + "Comment": "" + }, + { + "Id": "tyh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "O\u0027du", + "Comment": "" + }, + { + "Id": "tyi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Teke-Tsaayi", + "Comment": "" + }, + { + "Id": "tyj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tai Do", + "Comment": "" + }, + { + "Id": "tyl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Thu Lao", + "Comment": "" + }, + { + "Id": "tyn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kombai", + "Comment": "" + }, + { + "Id": "typ", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Thaypan", + "Comment": "" + }, + { + "Id": "tyr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tai Daeng", + "Comment": "" + }, + { + "Id": "tys", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "T\u00E0y Sa Pa", + "Comment": "" + }, + { + "Id": "tyt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "T\u00E0y Tac", + "Comment": "" + }, + { + "Id": "tyu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kua", + "Comment": "" + }, + { + "Id": "tyv", + "Part2B": "tyv", + "Part2T": "tyv", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tuvinian", + "Comment": "" + }, + { + "Id": "tyx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Teke-Tyee", + "Comment": "" + }, + { + "Id": "tyy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tiyaa", + "Comment": "" + }, + { + "Id": "tyz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "T\u00E0y", + "Comment": "" + }, + { + "Id": "tza", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tanzanian Sign Language", + "Comment": "" + }, + { + "Id": "tzh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tzeltal", + "Comment": "" + }, + { + "Id": "tzj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tz\u0027utujil", + "Comment": "" + }, + { + "Id": "tzl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "C", + "RefName": "Talossan", + "Comment": "" + }, + { + "Id": "tzm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Central Atlas Tamazight", + "Comment": "" + }, + { + "Id": "tzn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tugun", + "Comment": "" + }, + { + "Id": "tzo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tzotzil", + "Comment": "" + }, + { + "Id": "tzx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tabriak", + "Comment": "" + }, + { + "Id": "uam", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Uamu\u00E9", + "Comment": "" + }, + { + "Id": "uan", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kuan", + "Comment": "" + }, + { + "Id": "uar", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tairuma", + "Comment": "" + }, + { + "Id": "uba", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ubang", + "Comment": "" + }, + { + "Id": "ubi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ubi", + "Comment": "" + }, + { + "Id": "ubl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Buhi\u0027non Bikol", + "Comment": "" + }, + { + "Id": "ubr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ubir", + "Comment": "" + }, + { + "Id": "ubu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Umbu-Ungu", + "Comment": "" + }, + { + "Id": "uby", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Ubykh", + "Comment": "" + }, + { + "Id": "uda", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Uda", + "Comment": "" + }, + { + "Id": "ude", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Udihe", + "Comment": "" + }, + { + "Id": "udg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Muduga", + "Comment": "" + }, + { + "Id": "udi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Udi", + "Comment": "" + }, + { + "Id": "udj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ujir", + "Comment": "" + }, + { + "Id": "udl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wuzlam", + "Comment": "" + }, + { + "Id": "udm", + "Part2B": "udm", + "Part2T": "udm", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Udmurt", + "Comment": "" + }, + { + "Id": "udu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Uduk", + "Comment": "" + }, + { + "Id": "ues", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kioko", + "Comment": "" + }, + { + "Id": "ufi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ufim", + "Comment": "" + }, + { + "Id": "uga", + "Part2B": "uga", + "Part2T": "uga", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Ugaritic", + "Comment": "" + }, + { + "Id": "ugb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Kuku-Ugbanh", + "Comment": "" + }, + { + "Id": "uge", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ughele", + "Comment": "" + }, + { + "Id": "ugh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kubachi", + "Comment": "" + }, + { + "Id": "ugn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ugandan Sign Language", + "Comment": "" + }, + { + "Id": "ugo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ugong", + "Comment": "" + }, + { + "Id": "ugy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Uruguayan Sign Language", + "Comment": "" + }, + { + "Id": "uha", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Uhami", + "Comment": "" + }, + { + "Id": "uhn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Damal", + "Comment": "" + }, + { + "Id": "uig", + "Part2B": "uig", + "Part2T": "uig", + "Part1": "ug", + "Scope": "I", + "LanguageType": "L", + "RefName": "Uighur", + "Comment": "" + }, + { + "Id": "uis", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Uisai", + "Comment": "" + }, + { + "Id": "uiv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Iyive", + "Comment": "" + }, + { + "Id": "uji", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tanjijili", + "Comment": "" + }, + { + "Id": "uka", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kaburi", + "Comment": "" + }, + { + "Id": "ukg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ukuriguma", + "Comment": "" + }, + { + "Id": "ukh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ukhwejo", + "Comment": "" + }, + { + "Id": "uki", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kui (India)", + "Comment": "" + }, + { + "Id": "ukk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Muak Sa-aak", + "Comment": "" + }, + { + "Id": "ukl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ukrainian Sign Language", + "Comment": "" + }, + { + "Id": "ukp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ukpe-Bayobiri", + "Comment": "" + }, + { + "Id": "ukq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ukwa", + "Comment": "" + }, + { + "Id": "ukr", + "Part2B": "ukr", + "Part2T": "ukr", + "Part1": "uk", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ukrainian", + "Comment": "" + }, + { + "Id": "uks", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Urub\u00FA-Kaapor Sign Language", + "Comment": "" + }, + { + "Id": "uku", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ukue", + "Comment": "" + }, + { + "Id": "ukv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kuku", + "Comment": "" + }, + { + "Id": "ukw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ukwuani-Aboh-Ndoni", + "Comment": "" + }, + { + "Id": "uky", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Kuuk-Yak", + "Comment": "" + }, + { + "Id": "ula", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Fungwa", + "Comment": "" + }, + { + "Id": "ulb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ulukwumi", + "Comment": "" + }, + { + "Id": "ulc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ulch", + "Comment": "" + }, + { + "Id": "ule", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Lule", + "Comment": "" + }, + { + "Id": "ulf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Usku", + "Comment": "" + }, + { + "Id": "uli", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ulithian", + "Comment": "" + }, + { + "Id": "ulk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Meriam Mir", + "Comment": "" + }, + { + "Id": "ull", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ullatan", + "Comment": "" + }, + { + "Id": "ulm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ulumanda\u0027", + "Comment": "" + }, + { + "Id": "uln", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Unserdeutsch", + "Comment": "" + }, + { + "Id": "ulu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Uma\u0027 Lung", + "Comment": "" + }, + { + "Id": "ulw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ulwa", + "Comment": "" + }, + { + "Id": "uly", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Buli", + "Comment": "" + }, + { + "Id": "uma", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Umatilla", + "Comment": "" + }, + { + "Id": "umb", + "Part2B": "umb", + "Part2T": "umb", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Umbundu", + "Comment": "" + }, + { + "Id": "umc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Marrucinian", + "Comment": "" + }, + { + "Id": "umd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Umbindhamu", + "Comment": "" + }, + { + "Id": "umg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Morrobalama", + "Comment": "" + }, + { + "Id": "umi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ukit", + "Comment": "" + }, + { + "Id": "umm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Umon", + "Comment": "" + }, + { + "Id": "umn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Makyan Naga", + "Comment": "" + }, + { + "Id": "umo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Umot\u00EDna", + "Comment": "" + }, + { + "Id": "ump", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Umpila", + "Comment": "" + }, + { + "Id": "umr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Umbugarla", + "Comment": "" + }, + { + "Id": "ums", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pendau", + "Comment": "" + }, + { + "Id": "umu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Munsee", + "Comment": "" + }, + { + "Id": "una", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "North Watut", + "Comment": "" + }, + { + "Id": "und", + "Part2B": "und", + "Part2T": "und", + "Part1": "", + "Scope": "S", + "LanguageType": "S", + "RefName": "Undetermined", + "Comment": "" + }, + { + "Id": "une", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Uneme", + "Comment": "" + }, + { + "Id": "ung", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ngarinyin", + "Comment": "" + }, + { + "Id": "uni", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Uni", + "Comment": "" + }, + { + "Id": "unk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Enawen\u00E9-Naw\u00E9", + "Comment": "" + }, + { + "Id": "unm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Unami", + "Comment": "" + }, + { + "Id": "unn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kurnai", + "Comment": "" + }, + { + "Id": "unr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mundari", + "Comment": "" + }, + { + "Id": "unu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Unubahe", + "Comment": "" + }, + { + "Id": "unx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Munda", + "Comment": "" + }, + { + "Id": "unz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Unde Kaili", + "Comment": "" + }, + { + "Id": "uon", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Kulon", + "Comment": "" + }, + { + "Id": "upi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Umeda", + "Comment": "" + }, + { + "Id": "upv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Uripiv-Wala-Rano-Atchin", + "Comment": "" + }, + { + "Id": "ura", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Urarina", + "Comment": "" + }, + { + "Id": "urb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Urub\u00FA-Kaapor", + "Comment": "" + }, + { + "Id": "urc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Urningangg", + "Comment": "" + }, + { + "Id": "urd", + "Part2B": "urd", + "Part2T": "urd", + "Part1": "ur", + "Scope": "I", + "LanguageType": "L", + "RefName": "Urdu", + "Comment": "" + }, + { + "Id": "ure", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Uru", + "Comment": "" + }, + { + "Id": "urf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Uradhi", + "Comment": "" + }, + { + "Id": "urg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Urigina", + "Comment": "" + }, + { + "Id": "urh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Urhobo", + "Comment": "" + }, + { + "Id": "uri", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Urim", + "Comment": "" + }, + { + "Id": "urk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Urak Lawoi\u0027", + "Comment": "" + }, + { + "Id": "url", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Urali", + "Comment": "" + }, + { + "Id": "urm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Urapmin", + "Comment": "" + }, + { + "Id": "urn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Uruangnirin", + "Comment": "" + }, + { + "Id": "uro", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ura (Papua New Guinea)", + "Comment": "" + }, + { + "Id": "urp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Uru-Pa-In", + "Comment": "" + }, + { + "Id": "urr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lehalurup", + "Comment": "" + }, + { + "Id": "urt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Urat", + "Comment": "" + }, + { + "Id": "uru", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Urumi", + "Comment": "" + }, + { + "Id": "urv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Uruava", + "Comment": "" + }, + { + "Id": "urw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sop", + "Comment": "" + }, + { + "Id": "urx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Urimo", + "Comment": "" + }, + { + "Id": "ury", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Orya", + "Comment": "" + }, + { + "Id": "urz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Uru-Eu-Wau-Wau", + "Comment": "" + }, + { + "Id": "usa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Usarufa", + "Comment": "" + }, + { + "Id": "ush", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ushojo", + "Comment": "" + }, + { + "Id": "usi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Usui", + "Comment": "" + }, + { + "Id": "usk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Usaghade", + "Comment": "" + }, + { + "Id": "usp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Uspanteco", + "Comment": "" + }, + { + "Id": "uss", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "us-Saare", + "Comment": "" + }, + { + "Id": "usu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Uya", + "Comment": "" + }, + { + "Id": "uta", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Otank", + "Comment": "" + }, + { + "Id": "ute", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ute-Southern Paiute", + "Comment": "" + }, + { + "Id": "uth", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "ut-Hun", + "Comment": "" + }, + { + "Id": "utp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Amba (Solomon Islands)", + "Comment": "" + }, + { + "Id": "utr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Etulo", + "Comment": "" + }, + { + "Id": "utu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Utu", + "Comment": "" + }, + { + "Id": "uum", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Urum", + "Comment": "" + }, + { + "Id": "uur", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ura (Vanuatu)", + "Comment": "" + }, + { + "Id": "uuu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "U", + "Comment": "" + }, + { + "Id": "uve", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "West Uvean", + "Comment": "" + }, + { + "Id": "uvh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Uri", + "Comment": "" + }, + { + "Id": "uvl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lote", + "Comment": "" + }, + { + "Id": "uwa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kuku-Uwanh", + "Comment": "" + }, + { + "Id": "uya", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Doko-Uyanga", + "Comment": "" + }, + { + "Id": "uzb", + "Part2B": "uzb", + "Part2T": "uzb", + "Part1": "uz", + "Scope": "M", + "LanguageType": "L", + "RefName": "Uzbek", + "Comment": "" + }, + { + "Id": "uzn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Northern Uzbek", + "Comment": "" + }, + { + "Id": "uzs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southern Uzbek", + "Comment": "" + }, + { + "Id": "vaa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Vaagri Booli", + "Comment": "" + }, + { + "Id": "vae", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Vale", + "Comment": "" + }, + { + "Id": "vaf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Vafsi", + "Comment": "" + }, + { + "Id": "vag", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Vagla", + "Comment": "" + }, + { + "Id": "vah", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Varhadi-Nagpuri", + "Comment": "" + }, + { + "Id": "vai", + "Part2B": "vai", + "Part2T": "vai", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Vai", + "Comment": "" + }, + { + "Id": "vaj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sekele", + "Comment": "" + }, + { + "Id": "val", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Vehes", + "Comment": "" + }, + { + "Id": "vam", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Vanimo", + "Comment": "" + }, + { + "Id": "van", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Valman", + "Comment": "" + }, + { + "Id": "vao", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Vao", + "Comment": "" + }, + { + "Id": "vap", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Vaiphei", + "Comment": "" + }, + { + "Id": "var", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Huarijio", + "Comment": "" + }, + { + "Id": "vas", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Vasavi", + "Comment": "" + }, + { + "Id": "vau", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Vanuma", + "Comment": "" + }, + { + "Id": "vav", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Varli", + "Comment": "" + }, + { + "Id": "vay", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wayu", + "Comment": "" + }, + { + "Id": "vbb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southeast Babar", + "Comment": "" + }, + { + "Id": "vbk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southwestern Bontok", + "Comment": "" + }, + { + "Id": "vec", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Venetian", + "Comment": "" + }, + { + "Id": "ved", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Veddah", + "Comment": "" + }, + { + "Id": "vel", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Veluws", + "Comment": "" + }, + { + "Id": "vem", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Vemgo-Mabas", + "Comment": "" + }, + { + "Id": "ven", + "Part2B": "ven", + "Part2T": "ven", + "Part1": "ve", + "Scope": "I", + "LanguageType": "L", + "RefName": "Venda", + "Comment": "" + }, + { + "Id": "veo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Venture\u00F1o", + "Comment": "" + }, + { + "Id": "vep", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Veps", + "Comment": "" + }, + { + "Id": "ver", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mom Jango", + "Comment": "" + }, + { + "Id": "vgr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Vaghri", + "Comment": "" + }, + { + "Id": "vgt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Vlaamse Gebarentaal", + "Comment": "" + }, + { + "Id": "vic", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Virgin Islands Creole English", + "Comment": "" + }, + { + "Id": "vid", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Vidunda", + "Comment": "" + }, + { + "Id": "vie", + "Part2B": "vie", + "Part2T": "vie", + "Part1": "vi", + "Scope": "I", + "LanguageType": "L", + "RefName": "Vietnamese", + "Comment": "" + }, + { + "Id": "vif", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Vili", + "Comment": "" + }, + { + "Id": "vig", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Viemo", + "Comment": "" + }, + { + "Id": "vil", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Vilela", + "Comment": "" + }, + { + "Id": "vin", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Vinza", + "Comment": "" + }, + { + "Id": "vis", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Vishavan", + "Comment": "" + }, + { + "Id": "vit", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Viti", + "Comment": "" + }, + { + "Id": "viv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Iduna", + "Comment": "" + }, + { + "Id": "vjk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bajjika", + "Comment": "" + }, + { + "Id": "vka", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Kariyarra", + "Comment": "" + }, + { + "Id": "vkj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kujarge", + "Comment": "" + }, + { + "Id": "vkk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kaur", + "Comment": "" + }, + { + "Id": "vkl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kulisusu", + "Comment": "" + }, + { + "Id": "vkm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Kamakan", + "Comment": "" + }, + { + "Id": "vkn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Koro Nulu", + "Comment": "" + }, + { + "Id": "vko", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kodeoha", + "Comment": "" + }, + { + "Id": "vkp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Korlai Creole Portuguese", + "Comment": "" + }, + { + "Id": "vkt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tenggarong Kutai Malay", + "Comment": "" + }, + { + "Id": "vku", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kurrama", + "Comment": "" + }, + { + "Id": "vkz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Koro Zuba", + "Comment": "" + }, + { + "Id": "vlp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Valpei", + "Comment": "" + }, + { + "Id": "vls", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Vlaams", + "Comment": "" + }, + { + "Id": "vma", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Martuyhunira", + "Comment": "" + }, + { + "Id": "vmb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Barbaram", + "Comment": "" + }, + { + "Id": "vmc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Juxtlahuaca Mixtec", + "Comment": "" + }, + { + "Id": "vmd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mudu Koraga", + "Comment": "" + }, + { + "Id": "vme", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "East Masela", + "Comment": "" + }, + { + "Id": "vmf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mainfr\u00E4nkisch", + "Comment": "" + }, + { + "Id": "vmg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lungalunga", + "Comment": "" + }, + { + "Id": "vmh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Maraghei", + "Comment": "" + }, + { + "Id": "vmi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Miwa", + "Comment": "" + }, + { + "Id": "vmj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ixtayutla Mixtec", + "Comment": "" + }, + { + "Id": "vmk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Makhuwa-Shirima", + "Comment": "" + }, + { + "Id": "vml", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Malgana", + "Comment": "" + }, + { + "Id": "vmm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mitlatongo Mixtec", + "Comment": "" + }, + { + "Id": "vmp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Soyaltepec Mazatec", + "Comment": "" + }, + { + "Id": "vmq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Soyaltepec Mixtec", + "Comment": "" + }, + { + "Id": "vmr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Marenje", + "Comment": "" + }, + { + "Id": "vms", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Moksela", + "Comment": "" + }, + { + "Id": "vmu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Muluridyi", + "Comment": "" + }, + { + "Id": "vmv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Valley Maidu", + "Comment": "" + }, + { + "Id": "vmw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Makhuwa", + "Comment": "" + }, + { + "Id": "vmx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tamazola Mixtec", + "Comment": "" + }, + { + "Id": "vmy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ayautla Mazatec", + "Comment": "" + }, + { + "Id": "vmz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mazatl\u00E1n Mazatec", + "Comment": "" + }, + { + "Id": "vnk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Vano", + "Comment": "" + }, + { + "Id": "vnm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Vinmavis", + "Comment": "" + }, + { + "Id": "vnp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Vunapu", + "Comment": "" + }, + { + "Id": "vol", + "Part2B": "vol", + "Part2T": "vol", + "Part1": "vo", + "Scope": "I", + "LanguageType": "C", + "RefName": "Volap\u00FCk", + "Comment": "" + }, + { + "Id": "vor", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Voro", + "Comment": "" + }, + { + "Id": "vot", + "Part2B": "vot", + "Part2T": "vot", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Votic", + "Comment": "" + }, + { + "Id": "vra", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Vera\u0027a", + "Comment": "" + }, + { + "Id": "vro", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "V\u00F5ro", + "Comment": "" + }, + { + "Id": "vrs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Varisi", + "Comment": "" + }, + { + "Id": "vrt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Burmbar", + "Comment": "" + }, + { + "Id": "vsi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Moldova Sign Language", + "Comment": "" + }, + { + "Id": "vsl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Venezuelan Sign Language", + "Comment": "" + }, + { + "Id": "vsn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Vedic Sanskrit", + "Comment": "" + }, + { + "Id": "vsv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Valencian Sign Language", + "Comment": "" + }, + { + "Id": "vto", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Vitou", + "Comment": "" + }, + { + "Id": "vum", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Vumbu", + "Comment": "" + }, + { + "Id": "vun", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Vunjo", + "Comment": "" + }, + { + "Id": "vut", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Vute", + "Comment": "" + }, + { + "Id": "vwa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Awa (China)", + "Comment": "" + }, + { + "Id": "waa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Walla Walla", + "Comment": "" + }, + { + "Id": "wab", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wab", + "Comment": "" + }, + { + "Id": "wac", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Wasco-Wishram", + "Comment": "" + }, + { + "Id": "wad", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wamesa", + "Comment": "" + }, + { + "Id": "wae", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Walser", + "Comment": "" + }, + { + "Id": "waf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Wakon\u00E1", + "Comment": "" + }, + { + "Id": "wag", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wa\u0027ema", + "Comment": "" + }, + { + "Id": "wah", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Watubela", + "Comment": "" + }, + { + "Id": "wai", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wares", + "Comment": "" + }, + { + "Id": "waj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Waffa", + "Comment": "" + }, + { + "Id": "wal", + "Part2B": "wal", + "Part2T": "wal", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wolaytta", + "Comment": "" + }, + { + "Id": "wam", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Wampanoag", + "Comment": "" + }, + { + "Id": "wan", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wan", + "Comment": "" + }, + { + "Id": "wao", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Wappo", + "Comment": "" + }, + { + "Id": "wap", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wapishana", + "Comment": "" + }, + { + "Id": "waq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wagiman", + "Comment": "" + }, + { + "Id": "war", + "Part2B": "war", + "Part2T": "war", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Waray (Philippines)", + "Comment": "" + }, + { + "Id": "was", + "Part2B": "was", + "Part2T": "was", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Washo", + "Comment": "" + }, + { + "Id": "wat", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kaninuwa", + "Comment": "" + }, + { + "Id": "wau", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Waur\u00E1", + "Comment": "" + }, + { + "Id": "wav", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Waka", + "Comment": "" + }, + { + "Id": "waw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Waiwai", + "Comment": "" + }, + { + "Id": "wax", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Watam", + "Comment": "" + }, + { + "Id": "way", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wayana", + "Comment": "" + }, + { + "Id": "waz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wampur", + "Comment": "" + }, + { + "Id": "wba", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Warao", + "Comment": "" + }, + { + "Id": "wbb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wabo", + "Comment": "" + }, + { + "Id": "wbe", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Waritai", + "Comment": "" + }, + { + "Id": "wbf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wara", + "Comment": "" + }, + { + "Id": "wbh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wanda", + "Comment": "" + }, + { + "Id": "wbi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Vwanji", + "Comment": "" + }, + { + "Id": "wbj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Alagwa", + "Comment": "" + }, + { + "Id": "wbk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Waigali", + "Comment": "" + }, + { + "Id": "wbl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wakhi", + "Comment": "" + }, + { + "Id": "wbm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wa", + "Comment": "" + }, + { + "Id": "wbp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Warlpiri", + "Comment": "" + }, + { + "Id": "wbq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Waddar", + "Comment": "" + }, + { + "Id": "wbr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wagdi", + "Comment": "" + }, + { + "Id": "wbs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "West Bengal Sign Language", + "Comment": "" + }, + { + "Id": "wbt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Warnman", + "Comment": "" + }, + { + "Id": "wbv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wajarri", + "Comment": "" + }, + { + "Id": "wbw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Woi", + "Comment": "" + }, + { + "Id": "wca", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yanom\u00E1mi", + "Comment": "" + }, + { + "Id": "wci", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Waci Gbe", + "Comment": "" + }, + { + "Id": "wdd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wandji", + "Comment": "" + }, + { + "Id": "wdg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wadaginam", + "Comment": "" + }, + { + "Id": "wdj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wadjiginy", + "Comment": "" + }, + { + "Id": "wdk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Wadikali", + "Comment": "" + }, + { + "Id": "wdt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wendat", + "Comment": "" + }, + { + "Id": "wdu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Wadjigu", + "Comment": "" + }, + { + "Id": "wdy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Wadjabangayi", + "Comment": "" + }, + { + "Id": "wea", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Wewaw", + "Comment": "" + }, + { + "Id": "wec", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "W\u00E8 Western", + "Comment": "" + }, + { + "Id": "wed", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wedau", + "Comment": "" + }, + { + "Id": "weg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wergaia", + "Comment": "" + }, + { + "Id": "weh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Weh", + "Comment": "" + }, + { + "Id": "wei", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kiunum", + "Comment": "" + }, + { + "Id": "wem", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Weme Gbe", + "Comment": "" + }, + { + "Id": "weo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wemale", + "Comment": "" + }, + { + "Id": "wep", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Westphalien", + "Comment": "" + }, + { + "Id": "wer", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Weri", + "Comment": "" + }, + { + "Id": "wes", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Cameroon Pidgin", + "Comment": "" + }, + { + "Id": "wet", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Perai", + "Comment": "" + }, + { + "Id": "weu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Rawngtu Chin", + "Comment": "" + }, + { + "Id": "wew", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wejewa", + "Comment": "" + }, + { + "Id": "wfg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yafi", + "Comment": "" + }, + { + "Id": "wga", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Wagaya", + "Comment": "" + }, + { + "Id": "wgb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wagawaga", + "Comment": "" + }, + { + "Id": "wgg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Wangkangurru", + "Comment": "" + }, + { + "Id": "wgi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wahgi", + "Comment": "" + }, + { + "Id": "wgo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Waigeo", + "Comment": "" + }, + { + "Id": "wgu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Wirangu", + "Comment": "" + }, + { + "Id": "wgy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Warrgamay", + "Comment": "" + }, + { + "Id": "wha", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sou Upaa", + "Comment": "" + }, + { + "Id": "whg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "North Wahgi", + "Comment": "" + }, + { + "Id": "whk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wahau Kenyah", + "Comment": "" + }, + { + "Id": "whu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wahau Kayan", + "Comment": "" + }, + { + "Id": "wib", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southern Toussian", + "Comment": "" + }, + { + "Id": "wic", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Wichita", + "Comment": "" + }, + { + "Id": "wie", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Wik-Epa", + "Comment": "" + }, + { + "Id": "wif", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Wik-Keyangan", + "Comment": "" + }, + { + "Id": "wig", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wik Ngathan", + "Comment": "" + }, + { + "Id": "wih", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wik-Me\u0027anha", + "Comment": "" + }, + { + "Id": "wii", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Minidien", + "Comment": "" + }, + { + "Id": "wij", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wik-Iiyanh", + "Comment": "" + }, + { + "Id": "wik", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wikalkan", + "Comment": "" + }, + { + "Id": "wil", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Wilawila", + "Comment": "" + }, + { + "Id": "wim", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wik-Mungkan", + "Comment": "" + }, + { + "Id": "win", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ho-Chunk", + "Comment": "" + }, + { + "Id": "wir", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Wiraf\u00E9d", + "Comment": "" + }, + { + "Id": "wiu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wiru", + "Comment": "" + }, + { + "Id": "wiv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Vitu", + "Comment": "" + }, + { + "Id": "wiy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Wiyot", + "Comment": "" + }, + { + "Id": "wja", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Waja", + "Comment": "" + }, + { + "Id": "wji", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Warji", + "Comment": "" + }, + { + "Id": "wka", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Kw\u0027adza", + "Comment": "" + }, + { + "Id": "wkb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kumbaran", + "Comment": "" + }, + { + "Id": "wkd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wakde", + "Comment": "" + }, + { + "Id": "wkl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kalanadi", + "Comment": "" + }, + { + "Id": "wkr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Keerray-Woorroong", + "Comment": "" + }, + { + "Id": "wku", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kunduvadi", + "Comment": "" + }, + { + "Id": "wkw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Wakawaka", + "Comment": "" + }, + { + "Id": "wky", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Wangkayutyuru", + "Comment": "" + }, + { + "Id": "wla", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Walio", + "Comment": "" + }, + { + "Id": "wlc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mwali Comorian", + "Comment": "" + }, + { + "Id": "wle", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wolane", + "Comment": "" + }, + { + "Id": "wlg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kunbarlang", + "Comment": "" + }, + { + "Id": "wlh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Welaun", + "Comment": "" + }, + { + "Id": "wli", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Waioli", + "Comment": "" + }, + { + "Id": "wlk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Wailaki", + "Comment": "" + }, + { + "Id": "wll", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wali (Sudan)", + "Comment": "" + }, + { + "Id": "wlm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Middle Welsh", + "Comment": "" + }, + { + "Id": "wln", + "Part2B": "wln", + "Part2T": "wln", + "Part1": "wa", + "Scope": "I", + "LanguageType": "L", + "RefName": "Walloon", + "Comment": "" + }, + { + "Id": "wlo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wolio", + "Comment": "" + }, + { + "Id": "wlr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wailapa", + "Comment": "" + }, + { + "Id": "wls", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wallisian", + "Comment": "" + }, + { + "Id": "wlu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Wuliwuli", + "Comment": "" + }, + { + "Id": "wlv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wich\u00ED Lhamt\u00E9s Vejoz", + "Comment": "" + }, + { + "Id": "wlw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Walak", + "Comment": "" + }, + { + "Id": "wlx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wali (Ghana)", + "Comment": "" + }, + { + "Id": "wly", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Waling", + "Comment": "" + }, + { + "Id": "wma", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Mawa (Nigeria)", + "Comment": "" + }, + { + "Id": "wmb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wambaya", + "Comment": "" + }, + { + "Id": "wmc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wamas", + "Comment": "" + }, + { + "Id": "wmd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mamaind\u00E9", + "Comment": "" + }, + { + "Id": "wme", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wambule", + "Comment": "" + }, + { + "Id": "wmg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Western Minyag", + "Comment": "" + }, + { + "Id": "wmh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Waima\u0027a", + "Comment": "" + }, + { + "Id": "wmi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Wamin", + "Comment": "" + }, + { + "Id": "wmm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Maiwa (Indonesia)", + "Comment": "" + }, + { + "Id": "wmn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Waamwang", + "Comment": "" + }, + { + "Id": "wmo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wom (Papua New Guinea)", + "Comment": "" + }, + { + "Id": "wms", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wambon", + "Comment": "" + }, + { + "Id": "wmt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Walmajarri", + "Comment": "" + }, + { + "Id": "wmw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mwani", + "Comment": "" + }, + { + "Id": "wmx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Womo", + "Comment": "" + }, + { + "Id": "wnb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mokati", + "Comment": "" + }, + { + "Id": "wnc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wantoat", + "Comment": "" + }, + { + "Id": "wnd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Wandarang", + "Comment": "" + }, + { + "Id": "wne", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Waneci", + "Comment": "" + }, + { + "Id": "wng", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wanggom", + "Comment": "" + }, + { + "Id": "wni", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ndzwani Comorian", + "Comment": "" + }, + { + "Id": "wnk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wanukaka", + "Comment": "" + }, + { + "Id": "wnm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Wanggamala", + "Comment": "" + }, + { + "Id": "wnn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Wunumara", + "Comment": "" + }, + { + "Id": "wno", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wano", + "Comment": "" + }, + { + "Id": "wnp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wanap", + "Comment": "" + }, + { + "Id": "wnu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Usan", + "Comment": "" + }, + { + "Id": "wnw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wintu", + "Comment": "" + }, + { + "Id": "wny", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wanyi", + "Comment": "" + }, + { + "Id": "woa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kuwema", + "Comment": "" + }, + { + "Id": "wob", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "W\u00E8 Northern", + "Comment": "" + }, + { + "Id": "woc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wogeo", + "Comment": "" + }, + { + "Id": "wod", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wolani", + "Comment": "" + }, + { + "Id": "woe", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Woleaian", + "Comment": "" + }, + { + "Id": "wof", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gambian Wolof", + "Comment": "" + }, + { + "Id": "wog", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wogamusin", + "Comment": "" + }, + { + "Id": "woi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kamang", + "Comment": "" + }, + { + "Id": "wok", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Longto", + "Comment": "" + }, + { + "Id": "wol", + "Part2B": "wol", + "Part2T": "wol", + "Part1": "wo", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wolof", + "Comment": "" + }, + { + "Id": "wom", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wom (Nigeria)", + "Comment": "" + }, + { + "Id": "won", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wongo", + "Comment": "" + }, + { + "Id": "woo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Manombai", + "Comment": "" + }, + { + "Id": "wor", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Woria", + "Comment": "" + }, + { + "Id": "wos", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hanga Hundi", + "Comment": "" + }, + { + "Id": "wow", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wawonii", + "Comment": "" + }, + { + "Id": "woy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Weyto", + "Comment": "" + }, + { + "Id": "wpc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Maco", + "Comment": "" + }, + { + "Id": "wrb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Waluwarra", + "Comment": "" + }, + { + "Id": "wrg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Warungu", + "Comment": "" + }, + { + "Id": "wrh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Wiradjuri", + "Comment": "" + }, + { + "Id": "wri", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Wariyangga", + "Comment": "" + }, + { + "Id": "wrk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Garrwa", + "Comment": "" + }, + { + "Id": "wrl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Warlmanpa", + "Comment": "" + }, + { + "Id": "wrm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Warumungu", + "Comment": "" + }, + { + "Id": "wrn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Warnang", + "Comment": "" + }, + { + "Id": "wro", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Worrorra", + "Comment": "" + }, + { + "Id": "wrp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Waropen", + "Comment": "" + }, + { + "Id": "wrr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wardaman", + "Comment": "" + }, + { + "Id": "wrs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Waris", + "Comment": "" + }, + { + "Id": "wru", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Waru", + "Comment": "" + }, + { + "Id": "wrv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Waruna", + "Comment": "" + }, + { + "Id": "wrw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Gugu Warra", + "Comment": "" + }, + { + "Id": "wrx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wae Rana", + "Comment": "" + }, + { + "Id": "wry", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Merwari", + "Comment": "" + }, + { + "Id": "wrz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Waray (Australia)", + "Comment": "" + }, + { + "Id": "wsa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Warembori", + "Comment": "" + }, + { + "Id": "wsg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Adilabad Gondi", + "Comment": "" + }, + { + "Id": "wsi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wusi", + "Comment": "" + }, + { + "Id": "wsk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Waskia", + "Comment": "" + }, + { + "Id": "wsr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Owenia", + "Comment": "" + }, + { + "Id": "wss", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wasa", + "Comment": "" + }, + { + "Id": "wsu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Wasu", + "Comment": "" + }, + { + "Id": "wsv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Wotapuri-Katarqalai", + "Comment": "" + }, + { + "Id": "wtb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Matambwe", + "Comment": "" + }, + { + "Id": "wtf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Watiwa", + "Comment": "" + }, + { + "Id": "wth", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Wathawurrung", + "Comment": "" + }, + { + "Id": "wti", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Berta", + "Comment": "" + }, + { + "Id": "wtk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Watakataui", + "Comment": "" + }, + { + "Id": "wtm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mewati", + "Comment": "" + }, + { + "Id": "wtw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wotu", + "Comment": "" + }, + { + "Id": "wua", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wikngenchera", + "Comment": "" + }, + { + "Id": "wub", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wunambal", + "Comment": "" + }, + { + "Id": "wud", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wudu", + "Comment": "" + }, + { + "Id": "wuh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wutunhua", + "Comment": "" + }, + { + "Id": "wul", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Silimo", + "Comment": "" + }, + { + "Id": "wum", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wumbvu", + "Comment": "" + }, + { + "Id": "wun", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bungu", + "Comment": "" + }, + { + "Id": "wur", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Wurrugu", + "Comment": "" + }, + { + "Id": "wut", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wutung", + "Comment": "" + }, + { + "Id": "wuu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wu Chinese", + "Comment": "" + }, + { + "Id": "wuv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wuvulu-Aua", + "Comment": "" + }, + { + "Id": "wux", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wulna", + "Comment": "" + }, + { + "Id": "wuy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wauyai", + "Comment": "" + }, + { + "Id": "wwa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Waama", + "Comment": "" + }, + { + "Id": "wwb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Wakabunga", + "Comment": "" + }, + { + "Id": "wwo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wetamut", + "Comment": "" + }, + { + "Id": "wwr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Warrwa", + "Comment": "" + }, + { + "Id": "www", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wawa", + "Comment": "" + }, + { + "Id": "wxa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Waxianghua", + "Comment": "" + }, + { + "Id": "wxw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Wardandi", + "Comment": "" + }, + { + "Id": "wyb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wangaaybuwan-Ngiyambaa", + "Comment": "" + }, + { + "Id": "wyi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Woiwurrung", + "Comment": "" + }, + { + "Id": "wym", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wymysorys", + "Comment": "" + }, + { + "Id": "wyn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wyandot", + "Comment": "" + }, + { + "Id": "wyr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wayor\u00F3", + "Comment": "" + }, + { + "Id": "wyy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Western Fijian", + "Comment": "" + }, + { + "Id": "xaa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Andalusian Arabic", + "Comment": "" + }, + { + "Id": "xab", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sambe", + "Comment": "" + }, + { + "Id": "xac", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kachari", + "Comment": "" + }, + { + "Id": "xad", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Adai", + "Comment": "" + }, + { + "Id": "xae", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Aequian", + "Comment": "" + }, + { + "Id": "xag", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Aghwan", + "Comment": "" + }, + { + "Id": "xai", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Kaimb\u00E9", + "Comment": "" + }, + { + "Id": "xaj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Ararandew\u00E1ra", + "Comment": "" + }, + { + "Id": "xak", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "M\u00E1ku", + "Comment": "" + }, + { + "Id": "xal", + "Part2B": "xal", + "Part2T": "xal", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kalmyk", + "Comment": "" + }, + { + "Id": "xam", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "\u01C0Xam", + "Comment": "" + }, + { + "Id": "xan", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Xamtanga", + "Comment": "" + }, + { + "Id": "xao", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Khao", + "Comment": "" + }, + { + "Id": "xap", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Apalachee", + "Comment": "" + }, + { + "Id": "xaq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Aquitanian", + "Comment": "" + }, + { + "Id": "xar", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Karami", + "Comment": "" + }, + { + "Id": "xas", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Kamas", + "Comment": "" + }, + { + "Id": "xat", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Katawixi", + "Comment": "" + }, + { + "Id": "xau", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kauwera", + "Comment": "" + }, + { + "Id": "xav", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Xav\u00E1nte", + "Comment": "" + }, + { + "Id": "xaw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kawaiisu", + "Comment": "" + }, + { + "Id": "xay", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kayan Mahakam", + "Comment": "" + }, + { + "Id": "xbb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Lower Burdekin", + "Comment": "" + }, + { + "Id": "xbc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Bactrian", + "Comment": "" + }, + { + "Id": "xbd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Bindal", + "Comment": "" + }, + { + "Id": "xbe", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Bigambal", + "Comment": "" + }, + { + "Id": "xbg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Bunganditj", + "Comment": "" + }, + { + "Id": "xbi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kombio", + "Comment": "" + }, + { + "Id": "xbj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Birrpayi", + "Comment": "" + }, + { + "Id": "xbm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Middle Breton", + "Comment": "" + }, + { + "Id": "xbn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Kenaboi", + "Comment": "" + }, + { + "Id": "xbo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Bolgarian", + "Comment": "" + }, + { + "Id": "xbp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Bibbulman", + "Comment": "" + }, + { + "Id": "xbr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kambera", + "Comment": "" + }, + { + "Id": "xbw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Kambiw\u00E1", + "Comment": "" + }, + { + "Id": "xby", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Batjala", + "Comment": "" + }, + { + "Id": "xcb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Cumbric", + "Comment": "" + }, + { + "Id": "xcc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Camunic", + "Comment": "" + }, + { + "Id": "xce", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Celtiberian", + "Comment": "" + }, + { + "Id": "xcg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Cisalpine Gaulish", + "Comment": "" + }, + { + "Id": "xch", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Chemakum", + "Comment": "" + }, + { + "Id": "xcl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Classical Armenian", + "Comment": "" + }, + { + "Id": "xcm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Comecrudo", + "Comment": "" + }, + { + "Id": "xcn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Cotoname", + "Comment": "" + }, + { + "Id": "xco", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Chorasmian", + "Comment": "" + }, + { + "Id": "xcr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Carian", + "Comment": "" + }, + { + "Id": "xct", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Classical Tibetan", + "Comment": "" + }, + { + "Id": "xcu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Curonian", + "Comment": "" + }, + { + "Id": "xcv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Chuvantsy", + "Comment": "" + }, + { + "Id": "xcw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Coahuilteco", + "Comment": "" + }, + { + "Id": "xcy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Cayuse", + "Comment": "" + }, + { + "Id": "xda", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Darkinyung", + "Comment": "" + }, + { + "Id": "xdc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Dacian", + "Comment": "" + }, + { + "Id": "xdk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Dharuk", + "Comment": "" + }, + { + "Id": "xdm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Edomite", + "Comment": "" + }, + { + "Id": "xdo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kwandu", + "Comment": "" + }, + { + "Id": "xdq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kaitag", + "Comment": "" + }, + { + "Id": "xdy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Malayic Dayak", + "Comment": "" + }, + { + "Id": "xeb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Eblan", + "Comment": "" + }, + { + "Id": "xed", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hdi", + "Comment": "" + }, + { + "Id": "xeg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "\u01C1Xegwi", + "Comment": "" + }, + { + "Id": "xel", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kelo", + "Comment": "" + }, + { + "Id": "xem", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kembayan", + "Comment": "" + }, + { + "Id": "xep", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Epi-Olmec", + "Comment": "" + }, + { + "Id": "xer", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Xer\u00E9nte", + "Comment": "" + }, + { + "Id": "xes", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kesawai", + "Comment": "" + }, + { + "Id": "xet", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Xet\u00E1", + "Comment": "" + }, + { + "Id": "xeu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Keoru-Ahia", + "Comment": "" + }, + { + "Id": "xfa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Faliscan", + "Comment": "" + }, + { + "Id": "xga", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Galatian", + "Comment": "" + }, + { + "Id": "xgb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Gbin", + "Comment": "" + }, + { + "Id": "xgd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Gudang", + "Comment": "" + }, + { + "Id": "xgf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Gabrielino-Fernande\u00F1o", + "Comment": "" + }, + { + "Id": "xgg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Goreng", + "Comment": "" + }, + { + "Id": "xgi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Garingbal", + "Comment": "" + }, + { + "Id": "xgl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Galindan", + "Comment": "" + }, + { + "Id": "xgm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Dharumbal", + "Comment": "" + }, + { + "Id": "xgr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Garza", + "Comment": "" + }, + { + "Id": "xgu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Unggumi", + "Comment": "" + }, + { + "Id": "xgw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Guwa", + "Comment": "" + }, + { + "Id": "xha", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Harami", + "Comment": "" + }, + { + "Id": "xhc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Hunnic", + "Comment": "" + }, + { + "Id": "xhd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Hadrami", + "Comment": "" + }, + { + "Id": "xhe", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Khetrani", + "Comment": "" + }, + { + "Id": "xhm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Middle Khmer (1400 to 1850 CE)", + "Comment": "" + }, + { + "Id": "xho", + "Part2B": "xho", + "Part2T": "xho", + "Part1": "xh", + "Scope": "I", + "LanguageType": "L", + "RefName": "Xhosa", + "Comment": "" + }, + { + "Id": "xhr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Hernican", + "Comment": "" + }, + { + "Id": "xht", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Hattic", + "Comment": "" + }, + { + "Id": "xhu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Hurrian", + "Comment": "" + }, + { + "Id": "xhv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Khua", + "Comment": "" + }, + { + "Id": "xib", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Iberian", + "Comment": "" + }, + { + "Id": "xii", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Xiri", + "Comment": "" + }, + { + "Id": "xil", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Illyrian", + "Comment": "" + }, + { + "Id": "xin", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Xinca", + "Comment": "" + }, + { + "Id": "xir", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Xiri\u00E2na", + "Comment": "" + }, + { + "Id": "xis", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kisan", + "Comment": "" + }, + { + "Id": "xiv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Indus Valley Language", + "Comment": "" + }, + { + "Id": "xiy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Xipaya", + "Comment": "" + }, + { + "Id": "xjb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Minjungbal", + "Comment": "" + }, + { + "Id": "xjt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Jaitmatang", + "Comment": "" + }, + { + "Id": "xka", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kalkoti", + "Comment": "" + }, + { + "Id": "xkb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Northern Nago", + "Comment": "" + }, + { + "Id": "xkc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kho\u0027ini", + "Comment": "" + }, + { + "Id": "xkd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mendalam Kayan", + "Comment": "" + }, + { + "Id": "xke", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kereho", + "Comment": "" + }, + { + "Id": "xkf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Khengkha", + "Comment": "" + }, + { + "Id": "xkg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kagoro", + "Comment": "" + }, + { + "Id": "xki", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kenyan Sign Language", + "Comment": "" + }, + { + "Id": "xkj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kajali", + "Comment": "" + }, + { + "Id": "xkk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kachok", + "Comment": "" + }, + { + "Id": "xkl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mainstream Kenyah", + "Comment": "" + }, + { + "Id": "xkn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kayan River Kayan", + "Comment": "" + }, + { + "Id": "xko", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kiorr", + "Comment": "" + }, + { + "Id": "xkp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kabatei", + "Comment": "" + }, + { + "Id": "xkq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Koroni", + "Comment": "" + }, + { + "Id": "xkr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Xakriab\u00E1", + "Comment": "" + }, + { + "Id": "xks", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kumbewaha", + "Comment": "" + }, + { + "Id": "xkt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kantosi", + "Comment": "" + }, + { + "Id": "xku", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kaamba", + "Comment": "" + }, + { + "Id": "xkv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kgalagadi", + "Comment": "" + }, + { + "Id": "xkw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kembra", + "Comment": "" + }, + { + "Id": "xkx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Karore", + "Comment": "" + }, + { + "Id": "xky", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Uma\u0027 Lasan", + "Comment": "" + }, + { + "Id": "xkz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kurtokha", + "Comment": "" + }, + { + "Id": "xla", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kamula", + "Comment": "" + }, + { + "Id": "xlb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Loup B", + "Comment": "" + }, + { + "Id": "xlc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Lycian", + "Comment": "" + }, + { + "Id": "xld", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Lydian", + "Comment": "" + }, + { + "Id": "xle", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Lemnian", + "Comment": "" + }, + { + "Id": "xlg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Ligurian (Ancient)", + "Comment": "" + }, + { + "Id": "xli", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Liburnian", + "Comment": "" + }, + { + "Id": "xln", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Alanic", + "Comment": "" + }, + { + "Id": "xlo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Loup A", + "Comment": "" + }, + { + "Id": "xlp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Lepontic", + "Comment": "" + }, + { + "Id": "xls", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Lusitanian", + "Comment": "" + }, + { + "Id": "xlu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Cuneiform Luwian", + "Comment": "" + }, + { + "Id": "xly", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Elymian", + "Comment": "" + }, + { + "Id": "xma", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mushungulu", + "Comment": "" + }, + { + "Id": "xmb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mbonga", + "Comment": "" + }, + { + "Id": "xmc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Makhuwa-Marrevone", + "Comment": "" + }, + { + "Id": "xmd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mbudum", + "Comment": "" + }, + { + "Id": "xme", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Median", + "Comment": "" + }, + { + "Id": "xmf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mingrelian", + "Comment": "" + }, + { + "Id": "xmg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mengaka", + "Comment": "" + }, + { + "Id": "xmh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kugu-Muminh", + "Comment": "" + }, + { + "Id": "xmj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Majera", + "Comment": "" + }, + { + "Id": "xmk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Ancient Macedonian", + "Comment": "" + }, + { + "Id": "xml", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Malaysian Sign Language", + "Comment": "" + }, + { + "Id": "xmm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Manado Malay", + "Comment": "" + }, + { + "Id": "xmn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Manichaean Middle Persian", + "Comment": "" + }, + { + "Id": "xmo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Morerebi", + "Comment": "" + }, + { + "Id": "xmp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Kuku-Mu\u0027inh", + "Comment": "" + }, + { + "Id": "xmq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Kuku-Mangk", + "Comment": "" + }, + { + "Id": "xmr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Meroitic", + "Comment": "" + }, + { + "Id": "xms", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Moroccan Sign Language", + "Comment": "" + }, + { + "Id": "xmt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Matbat", + "Comment": "" + }, + { + "Id": "xmu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Kamu", + "Comment": "" + }, + { + "Id": "xmv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Antankarana Malagasy", + "Comment": "" + }, + { + "Id": "xmw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tsimihety Malagasy", + "Comment": "" + }, + { + "Id": "xmx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Salawati", + "Comment": "" + }, + { + "Id": "xmy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mayaguduna", + "Comment": "" + }, + { + "Id": "xmz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mori Bawah", + "Comment": "" + }, + { + "Id": "xna", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Ancient North Arabian", + "Comment": "" + }, + { + "Id": "xnb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kanakanabu", + "Comment": "" + }, + { + "Id": "xng", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Middle Mongolian", + "Comment": "" + }, + { + "Id": "xnh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kuanhua", + "Comment": "" + }, + { + "Id": "xni", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Ngarigu", + "Comment": "" + }, + { + "Id": "xnj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ngoni (Tanzania)", + "Comment": "" + }, + { + "Id": "xnk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Nganakarti", + "Comment": "" + }, + { + "Id": "xnm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Ngumbarl", + "Comment": "" + }, + { + "Id": "xnn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Northern Kankanay", + "Comment": "" + }, + { + "Id": "xno", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Anglo-Norman", + "Comment": "" + }, + { + "Id": "xnq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ngoni (Mozambique)", + "Comment": "" + }, + { + "Id": "xnr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kangri", + "Comment": "" + }, + { + "Id": "xns", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kanashi", + "Comment": "" + }, + { + "Id": "xnt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Narragansett", + "Comment": "" + }, + { + "Id": "xnu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Nukunul", + "Comment": "" + }, + { + "Id": "xny", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nyiyaparli", + "Comment": "" + }, + { + "Id": "xnz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kenzi", + "Comment": "" + }, + { + "Id": "xoc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "O\u0027chi\u0027chi\u0027", + "Comment": "" + }, + { + "Id": "xod", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kokoda", + "Comment": "" + }, + { + "Id": "xog", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Soga", + "Comment": "" + }, + { + "Id": "xoi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kominimung", + "Comment": "" + }, + { + "Id": "xok", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Xokleng", + "Comment": "" + }, + { + "Id": "xom", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Komo (Sudan)", + "Comment": "" + }, + { + "Id": "xon", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Konkomba", + "Comment": "" + }, + { + "Id": "xoo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Xukur\u00FA", + "Comment": "" + }, + { + "Id": "xop", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kopar", + "Comment": "" + }, + { + "Id": "xor", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Korubo", + "Comment": "" + }, + { + "Id": "xow", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kowaki", + "Comment": "" + }, + { + "Id": "xpa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Pirriya", + "Comment": "" + }, + { + "Id": "xpb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Northeastern Tasmanian", + "Comment": "" + }, + { + "Id": "xpc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Pecheneg", + "Comment": "" + }, + { + "Id": "xpd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Oyster Bay Tasmanian", + "Comment": "" + }, + { + "Id": "xpe", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Liberia Kpelle", + "Comment": "" + }, + { + "Id": "xpf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Southeast Tasmanian", + "Comment": "" + }, + { + "Id": "xpg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Phrygian", + "Comment": "" + }, + { + "Id": "xph", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "North Midlands Tasmanian", + "Comment": "" + }, + { + "Id": "xpi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Pictish", + "Comment": "" + }, + { + "Id": "xpj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Mpalitjanh", + "Comment": "" + }, + { + "Id": "xpk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kulina Pano", + "Comment": "" + }, + { + "Id": "xpl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Port Sorell Tasmanian", + "Comment": "" + }, + { + "Id": "xpm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Pumpokol", + "Comment": "" + }, + { + "Id": "xpn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Kapinaw\u00E1", + "Comment": "" + }, + { + "Id": "xpo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Pochutec", + "Comment": "" + }, + { + "Id": "xpp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Puyo-Paekche", + "Comment": "" + }, + { + "Id": "xpq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Mohegan-Pequot", + "Comment": "" + }, + { + "Id": "xpr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Parthian", + "Comment": "" + }, + { + "Id": "xps", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Pisidian", + "Comment": "" + }, + { + "Id": "xpt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Punthamara", + "Comment": "" + }, + { + "Id": "xpu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Punic", + "Comment": "" + }, + { + "Id": "xpv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Northern Tasmanian", + "Comment": "" + }, + { + "Id": "xpw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Northwestern Tasmanian", + "Comment": "" + }, + { + "Id": "xpx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Southwestern Tasmanian", + "Comment": "" + }, + { + "Id": "xpy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Puyo", + "Comment": "" + }, + { + "Id": "xpz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Bruny Island Tasmanian", + "Comment": "" + }, + { + "Id": "xqa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Karakhanid", + "Comment": "" + }, + { + "Id": "xqt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Qatabanian", + "Comment": "" + }, + { + "Id": "xra", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Krah\u00F4", + "Comment": "" + }, + { + "Id": "xrb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Eastern Karaboro", + "Comment": "" + }, + { + "Id": "xrd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Gundungurra", + "Comment": "" + }, + { + "Id": "xre", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kreye", + "Comment": "" + }, + { + "Id": "xrg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Minang", + "Comment": "" + }, + { + "Id": "xri", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Krikati-Timbira", + "Comment": "" + }, + { + "Id": "xrm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Armazic", + "Comment": "" + }, + { + "Id": "xrn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Arin", + "Comment": "" + }, + { + "Id": "xrr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Raetic", + "Comment": "" + }, + { + "Id": "xrt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Aranama-Tamique", + "Comment": "" + }, + { + "Id": "xru", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Marriammu", + "Comment": "" + }, + { + "Id": "xrw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Karawa", + "Comment": "" + }, + { + "Id": "xsa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Sabaean", + "Comment": "" + }, + { + "Id": "xsb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sambal", + "Comment": "" + }, + { + "Id": "xsc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Scythian", + "Comment": "" + }, + { + "Id": "xsd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Sidetic", + "Comment": "" + }, + { + "Id": "xse", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sempan", + "Comment": "" + }, + { + "Id": "xsh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Shamang", + "Comment": "" + }, + { + "Id": "xsi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sio", + "Comment": "" + }, + { + "Id": "xsj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Subi", + "Comment": "" + }, + { + "Id": "xsl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "South Slavey", + "Comment": "" + }, + { + "Id": "xsm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kasem", + "Comment": "" + }, + { + "Id": "xsn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sanga (Nigeria)", + "Comment": "" + }, + { + "Id": "xso", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Solano", + "Comment": "" + }, + { + "Id": "xsp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Silopi", + "Comment": "" + }, + { + "Id": "xsq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Makhuwa-Saka", + "Comment": "" + }, + { + "Id": "xsr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sherpa", + "Comment": "" + }, + { + "Id": "xsu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sanum\u00E1", + "Comment": "" + }, + { + "Id": "xsv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Sudovian", + "Comment": "" + }, + { + "Id": "xsy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Saisiyat", + "Comment": "" + }, + { + "Id": "xta", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Alcozauca Mixtec", + "Comment": "" + }, + { + "Id": "xtb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chazumba Mixtec", + "Comment": "" + }, + { + "Id": "xtc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Katcha-Kadugli-Miri", + "Comment": "" + }, + { + "Id": "xtd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Diuxi-Tilantongo Mixtec", + "Comment": "" + }, + { + "Id": "xte", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ketengban", + "Comment": "" + }, + { + "Id": "xtg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Transalpine Gaulish", + "Comment": "" + }, + { + "Id": "xth", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Yitha Yitha", + "Comment": "" + }, + { + "Id": "xti", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sinicahua Mixtec", + "Comment": "" + }, + { + "Id": "xtj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "San Juan Teita Mixtec", + "Comment": "" + }, + { + "Id": "xtl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tijaltepec Mixtec", + "Comment": "" + }, + { + "Id": "xtm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Magdalena Pe\u00F1asco Mixtec", + "Comment": "" + }, + { + "Id": "xtn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Northern Tlaxiaco Mixtec", + "Comment": "" + }, + { + "Id": "xto", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Tokharian A", + "Comment": "" + }, + { + "Id": "xtp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "San Miguel Piedras Mixtec", + "Comment": "" + }, + { + "Id": "xtq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Tumshuqese", + "Comment": "" + }, + { + "Id": "xtr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Early Tripuri", + "Comment": "" + }, + { + "Id": "xts", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sindihui Mixtec", + "Comment": "" + }, + { + "Id": "xtt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tacahua Mixtec", + "Comment": "" + }, + { + "Id": "xtu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Cuyamecalco Mixtec", + "Comment": "" + }, + { + "Id": "xtv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Thawa", + "Comment": "" + }, + { + "Id": "xtw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tawand\u00EA", + "Comment": "" + }, + { + "Id": "xty", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yoloxochitl Mixtec", + "Comment": "" + }, + { + "Id": "xua", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Alu Kurumba", + "Comment": "" + }, + { + "Id": "xub", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Betta Kurumba", + "Comment": "" + }, + { + "Id": "xud", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Umiida", + "Comment": "" + }, + { + "Id": "xug", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kunigami", + "Comment": "" + }, + { + "Id": "xuj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Jennu Kurumba", + "Comment": "" + }, + { + "Id": "xul", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Ngunawal", + "Comment": "" + }, + { + "Id": "xum", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Umbrian", + "Comment": "" + }, + { + "Id": "xun", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Unggaranggu", + "Comment": "" + }, + { + "Id": "xuo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kuo", + "Comment": "" + }, + { + "Id": "xup", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Upper Umpqua", + "Comment": "" + }, + { + "Id": "xur", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Urartian", + "Comment": "" + }, + { + "Id": "xut", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Kuthant", + "Comment": "" + }, + { + "Id": "xuu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kxoe", + "Comment": "" + }, + { + "Id": "xve", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Venetic", + "Comment": "" + }, + { + "Id": "xvi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kamviri", + "Comment": "" + }, + { + "Id": "xvn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Vandalic", + "Comment": "" + }, + { + "Id": "xvo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Volscian", + "Comment": "" + }, + { + "Id": "xvs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Vestinian", + "Comment": "" + }, + { + "Id": "xwa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kwaza", + "Comment": "" + }, + { + "Id": "xwc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Woccon", + "Comment": "" + }, + { + "Id": "xwd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Wadi Wadi", + "Comment": "" + }, + { + "Id": "xwe", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Xwela Gbe", + "Comment": "" + }, + { + "Id": "xwg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kwegu", + "Comment": "" + }, + { + "Id": "xwj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Wajuk", + "Comment": "" + }, + { + "Id": "xwk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Wangkumara", + "Comment": "" + }, + { + "Id": "xwl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Western Xwla Gbe", + "Comment": "" + }, + { + "Id": "xwo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Written Oirat", + "Comment": "" + }, + { + "Id": "xwr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kwerba Mamberamo", + "Comment": "" + }, + { + "Id": "xwt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Wotjobaluk", + "Comment": "" + }, + { + "Id": "xww", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Wemba Wemba", + "Comment": "" + }, + { + "Id": "xxb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Boro (Ghana)", + "Comment": "" + }, + { + "Id": "xxk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ke\u0027o", + "Comment": "" + }, + { + "Id": "xxm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Minkin", + "Comment": "" + }, + { + "Id": "xxr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Korop\u00F3", + "Comment": "" + }, + { + "Id": "xxt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Tambora", + "Comment": "" + }, + { + "Id": "xya", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Yaygir", + "Comment": "" + }, + { + "Id": "xyb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Yandjibara", + "Comment": "" + }, + { + "Id": "xyj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Mayi-Yapi", + "Comment": "" + }, + { + "Id": "xyk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Mayi-Kulan", + "Comment": "" + }, + { + "Id": "xyl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Yalakalore", + "Comment": "" + }, + { + "Id": "xyt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Mayi-Thakurti", + "Comment": "" + }, + { + "Id": "xyy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yorta Yorta", + "Comment": "" + }, + { + "Id": "xzh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Zhang-Zhung", + "Comment": "" + }, + { + "Id": "xzm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Zemgalian", + "Comment": "" + }, + { + "Id": "xzp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Ancient Zapotec", + "Comment": "" + }, + { + "Id": "yaa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yaminahua", + "Comment": "" + }, + { + "Id": "yab", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yuhup", + "Comment": "" + }, + { + "Id": "yac", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pass Valley Yali", + "Comment": "" + }, + { + "Id": "yad", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yagua", + "Comment": "" + }, + { + "Id": "yae", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pum\u00E9", + "Comment": "" + }, + { + "Id": "yaf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yaka (Democratic Republic of Congo)", + "Comment": "" + }, + { + "Id": "yag", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Y\u00E1mana", + "Comment": "" + }, + { + "Id": "yah", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yazgulyam", + "Comment": "" + }, + { + "Id": "yai", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yagnobi", + "Comment": "" + }, + { + "Id": "yaj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Banda-Yangere", + "Comment": "" + }, + { + "Id": "yak", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yakama", + "Comment": "" + }, + { + "Id": "yal", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yalunka", + "Comment": "" + }, + { + "Id": "yam", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yamba", + "Comment": "" + }, + { + "Id": "yan", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mayangna", + "Comment": "" + }, + { + "Id": "yao", + "Part2B": "yao", + "Part2T": "yao", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yao", + "Comment": "" + }, + { + "Id": "yap", + "Part2B": "yap", + "Part2T": "yap", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yapese", + "Comment": "" + }, + { + "Id": "yaq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yaqui", + "Comment": "" + }, + { + "Id": "yar", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yabarana", + "Comment": "" + }, + { + "Id": "yas", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nugunu (Cameroon)", + "Comment": "" + }, + { + "Id": "yat", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yambeta", + "Comment": "" + }, + { + "Id": "yau", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yuwana", + "Comment": "" + }, + { + "Id": "yav", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yangben", + "Comment": "" + }, + { + "Id": "yaw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yawalapit\u00ED", + "Comment": "" + }, + { + "Id": "yax", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yauma", + "Comment": "" + }, + { + "Id": "yay", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Agwagwune", + "Comment": "" + }, + { + "Id": "yaz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lokaa", + "Comment": "" + }, + { + "Id": "yba", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yala", + "Comment": "" + }, + { + "Id": "ybb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yemba", + "Comment": "" + }, + { + "Id": "ybe", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "West Yugur", + "Comment": "" + }, + { + "Id": "ybh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yakha", + "Comment": "" + }, + { + "Id": "ybi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yamphu", + "Comment": "" + }, + { + "Id": "ybj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hasha", + "Comment": "" + }, + { + "Id": "ybk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bokha", + "Comment": "" + }, + { + "Id": "ybl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yukuben", + "Comment": "" + }, + { + "Id": "ybm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yaben", + "Comment": "" + }, + { + "Id": "ybn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Yaba\u00E2na", + "Comment": "" + }, + { + "Id": "ybo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yabong", + "Comment": "" + }, + { + "Id": "ybx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yawiyo", + "Comment": "" + }, + { + "Id": "yby", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yaweyuha", + "Comment": "" + }, + { + "Id": "ych", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chesu", + "Comment": "" + }, + { + "Id": "ycl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lolopo", + "Comment": "" + }, + { + "Id": "ycn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yucuna", + "Comment": "" + }, + { + "Id": "ycp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chepya", + "Comment": "" + }, + { + "Id": "ycr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yilan Creole", + "Comment": "" + }, + { + "Id": "yda", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Yanda", + "Comment": "" + }, + { + "Id": "ydd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Eastern Yiddish", + "Comment": "" + }, + { + "Id": "yde", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yangum Dey", + "Comment": "" + }, + { + "Id": "ydg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yidgha", + "Comment": "" + }, + { + "Id": "ydk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yoidik", + "Comment": "" + }, + { + "Id": "yea", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ravula", + "Comment": "" + }, + { + "Id": "yec", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yeniche", + "Comment": "" + }, + { + "Id": "yee", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yimas", + "Comment": "" + }, + { + "Id": "yei", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Yeni", + "Comment": "" + }, + { + "Id": "yej", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yevanic", + "Comment": "" + }, + { + "Id": "yel", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yela", + "Comment": "" + }, + { + "Id": "yer", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tarok", + "Comment": "" + }, + { + "Id": "yes", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nyankpa", + "Comment": "" + }, + { + "Id": "yet", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yetfa", + "Comment": "" + }, + { + "Id": "yeu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yerukula", + "Comment": "" + }, + { + "Id": "yev", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yapunda", + "Comment": "" + }, + { + "Id": "yey", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yeyi", + "Comment": "" + }, + { + "Id": "yga", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Malyangapa", + "Comment": "" + }, + { + "Id": "ygi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Yiningayi", + "Comment": "" + }, + { + "Id": "ygl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yangum Gel", + "Comment": "" + }, + { + "Id": "ygm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yagomi", + "Comment": "" + }, + { + "Id": "ygp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Gepo", + "Comment": "" + }, + { + "Id": "ygr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yagaria", + "Comment": "" + }, + { + "Id": "ygs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yol\u014Bu Sign Language", + "Comment": "" + }, + { + "Id": "ygu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yugul", + "Comment": "" + }, + { + "Id": "ygw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yagwoia", + "Comment": "" + }, + { + "Id": "yha", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Baha Buyang", + "Comment": "" + }, + { + "Id": "yhd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Judeo-Iraqi Arabic", + "Comment": "" + }, + { + "Id": "yhl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Hlepho Phowa", + "Comment": "" + }, + { + "Id": "yhs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yan-nha\u014Bu Sign Language", + "Comment": "" + }, + { + "Id": "yia", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yinggarda", + "Comment": "" + }, + { + "Id": "yid", + "Part2B": "yid", + "Part2T": "yid", + "Part1": "yi", + "Scope": "M", + "LanguageType": "L", + "RefName": "Yiddish", + "Comment": "" + }, + { + "Id": "yif", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ache", + "Comment": "" + }, + { + "Id": "yig", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wusa Nasu", + "Comment": "" + }, + { + "Id": "yih", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Western Yiddish", + "Comment": "" + }, + { + "Id": "yii", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yidiny", + "Comment": "" + }, + { + "Id": "yij", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yindjibarndi", + "Comment": "" + }, + { + "Id": "yik", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dongshanba Lalo", + "Comment": "" + }, + { + "Id": "yil", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Yindjilandji", + "Comment": "" + }, + { + "Id": "yim", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yimchungru Naga", + "Comment": "" + }, + { + "Id": "yin", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Riang Lai", + "Comment": "" + }, + { + "Id": "yip", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Pholo", + "Comment": "" + }, + { + "Id": "yiq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Miqie", + "Comment": "" + }, + { + "Id": "yir", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "North Awyu", + "Comment": "" + }, + { + "Id": "yis", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yis", + "Comment": "" + }, + { + "Id": "yit", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Eastern Lalu", + "Comment": "" + }, + { + "Id": "yiu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Awu", + "Comment": "" + }, + { + "Id": "yiv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Northern Nisu", + "Comment": "" + }, + { + "Id": "yix", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Axi Yi", + "Comment": "" + }, + { + "Id": "yiz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Azhe", + "Comment": "" + }, + { + "Id": "yka", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yakan", + "Comment": "" + }, + { + "Id": "ykg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Northern Yukaghir", + "Comment": "" + }, + { + "Id": "ykh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Khamnigan Mongol", + "Comment": "" + }, + { + "Id": "yki", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yoke", + "Comment": "" + }, + { + "Id": "ykk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yakaikeke", + "Comment": "" + }, + { + "Id": "ykl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Khlula", + "Comment": "" + }, + { + "Id": "ykm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kap", + "Comment": "" + }, + { + "Id": "ykn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kua-nsi", + "Comment": "" + }, + { + "Id": "yko", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yasa", + "Comment": "" + }, + { + "Id": "ykr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yekora", + "Comment": "" + }, + { + "Id": "ykt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kathu", + "Comment": "" + }, + { + "Id": "yku", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kuamasi", + "Comment": "" + }, + { + "Id": "yky", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yakoma", + "Comment": "" + }, + { + "Id": "yla", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yaul", + "Comment": "" + }, + { + "Id": "ylb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yaleba", + "Comment": "" + }, + { + "Id": "yle", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yele", + "Comment": "" + }, + { + "Id": "ylg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yelogu", + "Comment": "" + }, + { + "Id": "yli", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Angguruk Yali", + "Comment": "" + }, + { + "Id": "yll", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yil", + "Comment": "" + }, + { + "Id": "ylm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Limi", + "Comment": "" + }, + { + "Id": "yln", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Langnian Buyang", + "Comment": "" + }, + { + "Id": "ylo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Naluo Yi", + "Comment": "" + }, + { + "Id": "ylr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Yalarnnga", + "Comment": "" + }, + { + "Id": "ylu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Aribwaung", + "Comment": "" + }, + { + "Id": "yly", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ny\u00E2layu", + "Comment": "" + }, + { + "Id": "ymb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yambes", + "Comment": "" + }, + { + "Id": "ymc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southern Muji", + "Comment": "" + }, + { + "Id": "ymd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Muda", + "Comment": "" + }, + { + "Id": "yme", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Yameo", + "Comment": "" + }, + { + "Id": "ymg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yamongeri", + "Comment": "" + }, + { + "Id": "ymh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mili", + "Comment": "" + }, + { + "Id": "ymi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Moji", + "Comment": "" + }, + { + "Id": "ymk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Makwe", + "Comment": "" + }, + { + "Id": "yml", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Iamalele", + "Comment": "" + }, + { + "Id": "ymm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Maay", + "Comment": "" + }, + { + "Id": "ymn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yamna", + "Comment": "" + }, + { + "Id": "ymo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yangum Mon", + "Comment": "" + }, + { + "Id": "ymp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yamap", + "Comment": "" + }, + { + "Id": "ymq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Qila Muji", + "Comment": "" + }, + { + "Id": "ymr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Malasar", + "Comment": "" + }, + { + "Id": "yms", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Mysian", + "Comment": "" + }, + { + "Id": "ymx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Northern Muji", + "Comment": "" + }, + { + "Id": "ymz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Muzi", + "Comment": "" + }, + { + "Id": "yna", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Aluo", + "Comment": "" + }, + { + "Id": "ynb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yamben", + "Comment": "" + }, + { + "Id": "ynd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Yandruwandha", + "Comment": "" + }, + { + "Id": "yne", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lang\u0027e", + "Comment": "" + }, + { + "Id": "yng", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yango", + "Comment": "" + }, + { + "Id": "ynk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Naukan Yupik", + "Comment": "" + }, + { + "Id": "ynl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yangulam", + "Comment": "" + }, + { + "Id": "ynn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Yana", + "Comment": "" + }, + { + "Id": "yno", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yong", + "Comment": "" + }, + { + "Id": "ynq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yendang", + "Comment": "" + }, + { + "Id": "yns", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yansi", + "Comment": "" + }, + { + "Id": "ynu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Yahuna", + "Comment": "" + }, + { + "Id": "yob", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Yoba", + "Comment": "" + }, + { + "Id": "yog", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yogad", + "Comment": "" + }, + { + "Id": "yoi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yonaguni", + "Comment": "" + }, + { + "Id": "yok", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yokuts", + "Comment": "" + }, + { + "Id": "yol", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Yola", + "Comment": "" + }, + { + "Id": "yom", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yombe", + "Comment": "" + }, + { + "Id": "yon", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yongkom", + "Comment": "" + }, + { + "Id": "yor", + "Part2B": "yor", + "Part2T": "yor", + "Part1": "yo", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yoruba", + "Comment": "" + }, + { + "Id": "yot", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yotti", + "Comment": "" + }, + { + "Id": "yox", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yoron", + "Comment": "" + }, + { + "Id": "yoy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yoy", + "Comment": "" + }, + { + "Id": "ypa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Phala", + "Comment": "" + }, + { + "Id": "ypb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Labo Phowa", + "Comment": "" + }, + { + "Id": "ypg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Phola", + "Comment": "" + }, + { + "Id": "yph", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Phupha", + "Comment": "" + }, + { + "Id": "ypm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Phuma", + "Comment": "" + }, + { + "Id": "ypn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ani Phowa", + "Comment": "" + }, + { + "Id": "ypo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Alo Phola", + "Comment": "" + }, + { + "Id": "ypp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Phupa", + "Comment": "" + }, + { + "Id": "ypz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Phuza", + "Comment": "" + }, + { + "Id": "yra", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yerakai", + "Comment": "" + }, + { + "Id": "yrb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yareba", + "Comment": "" + }, + { + "Id": "yre", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yaour\u00E9", + "Comment": "" + }, + { + "Id": "yrk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nenets", + "Comment": "" + }, + { + "Id": "yrl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nhengatu", + "Comment": "" + }, + { + "Id": "yrm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yirrk-Mel", + "Comment": "" + }, + { + "Id": "yrn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yerong", + "Comment": "" + }, + { + "Id": "yro", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yaroam\u00EB", + "Comment": "" + }, + { + "Id": "yrs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yarsun", + "Comment": "" + }, + { + "Id": "yrw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yarawata", + "Comment": "" + }, + { + "Id": "yry", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yarluyandi", + "Comment": "" + }, + { + "Id": "ysc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Yassic", + "Comment": "" + }, + { + "Id": "ysd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Samatao", + "Comment": "" + }, + { + "Id": "ysg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sonaga", + "Comment": "" + }, + { + "Id": "ysl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yugoslavian Sign Language", + "Comment": "" + }, + { + "Id": "ysm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Myanmar Sign Language", + "Comment": "" + }, + { + "Id": "ysn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sani", + "Comment": "" + }, + { + "Id": "yso", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nisi (China)", + "Comment": "" + }, + { + "Id": "ysp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southern Lolopo", + "Comment": "" + }, + { + "Id": "ysr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Sirenik Yupik", + "Comment": "" + }, + { + "Id": "yss", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yessan-Mayo", + "Comment": "" + }, + { + "Id": "ysy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sanie", + "Comment": "" + }, + { + "Id": "yta", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Talu", + "Comment": "" + }, + { + "Id": "ytl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tanglang", + "Comment": "" + }, + { + "Id": "ytp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Thopho", + "Comment": "" + }, + { + "Id": "ytw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yout Wam", + "Comment": "" + }, + { + "Id": "yty", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Yatay", + "Comment": "" + }, + { + "Id": "yua", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yucateco", + "Comment": "" + }, + { + "Id": "yub", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Yugambal", + "Comment": "" + }, + { + "Id": "yuc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yuchi", + "Comment": "" + }, + { + "Id": "yud", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Judeo-Tripolitanian Arabic", + "Comment": "" + }, + { + "Id": "yue", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yue Chinese", + "Comment": "" + }, + { + "Id": "yuf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Havasupai-Walapai-Yavapai", + "Comment": "" + }, + { + "Id": "yug", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Yug", + "Comment": "" + }, + { + "Id": "yui", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yurut\u00ED", + "Comment": "" + }, + { + "Id": "yuj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Karkar-Yuri", + "Comment": "" + }, + { + "Id": "yuk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Yuki", + "Comment": "" + }, + { + "Id": "yul", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yulu", + "Comment": "" + }, + { + "Id": "yum", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Quechan", + "Comment": "" + }, + { + "Id": "yun", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bena (Nigeria)", + "Comment": "" + }, + { + "Id": "yup", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yukpa", + "Comment": "" + }, + { + "Id": "yuq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yuqui", + "Comment": "" + }, + { + "Id": "yur", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Yurok", + "Comment": "" + }, + { + "Id": "yut", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yopno", + "Comment": "" + }, + { + "Id": "yuw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yau (Morobe Province)", + "Comment": "" + }, + { + "Id": "yux", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southern Yukaghir", + "Comment": "" + }, + { + "Id": "yuy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "East Yugur", + "Comment": "" + }, + { + "Id": "yuz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yuracare", + "Comment": "" + }, + { + "Id": "yva", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yawa", + "Comment": "" + }, + { + "Id": "yvt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Yavitero", + "Comment": "" + }, + { + "Id": "ywa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kalou", + "Comment": "" + }, + { + "Id": "ywg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yinhawangka", + "Comment": "" + }, + { + "Id": "ywl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Western Lalu", + "Comment": "" + }, + { + "Id": "ywn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yawanawa", + "Comment": "" + }, + { + "Id": "ywq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wuding-Luquan Yi", + "Comment": "" + }, + { + "Id": "ywr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yawuru", + "Comment": "" + }, + { + "Id": "ywt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Xishanba Lalo", + "Comment": "" + }, + { + "Id": "ywu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Wumeng Nasu", + "Comment": "" + }, + { + "Id": "yww", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Yawarawarga", + "Comment": "" + }, + { + "Id": "yxa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Mayawali", + "Comment": "" + }, + { + "Id": "yxg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Yagara", + "Comment": "" + }, + { + "Id": "yxl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Yardliyawarra", + "Comment": "" + }, + { + "Id": "yxm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Yinwum", + "Comment": "" + }, + { + "Id": "yxu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Yuyu", + "Comment": "" + }, + { + "Id": "yxy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Yabula Yabula", + "Comment": "" + }, + { + "Id": "yyr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Yir Yoront", + "Comment": "" + }, + { + "Id": "yyu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yau (Sandaun Province)", + "Comment": "" + }, + { + "Id": "yyz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ayizi", + "Comment": "" + }, + { + "Id": "yzg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "E\u0027ma Buyang", + "Comment": "" + }, + { + "Id": "yzk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Zokhuo", + "Comment": "" + }, + { + "Id": "zaa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sierra de Ju\u00E1rez Zapotec", + "Comment": "" + }, + { + "Id": "zab", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Western Tlacolula Valley Zapotec", + "Comment": "" + }, + { + "Id": "zac", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ocotl\u00E1n Zapotec", + "Comment": "" + }, + { + "Id": "zad", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Cajonos Zapotec", + "Comment": "" + }, + { + "Id": "zae", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yareni Zapotec", + "Comment": "" + }, + { + "Id": "zaf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ayoquesco Zapotec", + "Comment": "" + }, + { + "Id": "zag", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Zaghawa", + "Comment": "" + }, + { + "Id": "zah", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Zangwal", + "Comment": "" + }, + { + "Id": "zai", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Isthmus Zapotec", + "Comment": "" + }, + { + "Id": "zaj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Zaramo", + "Comment": "" + }, + { + "Id": "zak", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Zanaki", + "Comment": "" + }, + { + "Id": "zal", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Zauzou", + "Comment": "" + }, + { + "Id": "zam", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Miahuatl\u00E1n Zapotec", + "Comment": "" + }, + { + "Id": "zao", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ozolotepec Zapotec", + "Comment": "" + }, + { + "Id": "zap", + "Part2B": "zap", + "Part2T": "zap", + "Part1": "", + "Scope": "M", + "LanguageType": "L", + "RefName": "Zapotec", + "Comment": "" + }, + { + "Id": "zaq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Alo\u00E1pam Zapotec", + "Comment": "" + }, + { + "Id": "zar", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Rinc\u00F3n Zapotec", + "Comment": "" + }, + { + "Id": "zas", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Santo Domingo Albarradas Zapotec", + "Comment": "" + }, + { + "Id": "zat", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tabaa Zapotec", + "Comment": "" + }, + { + "Id": "zau", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Zangskari", + "Comment": "" + }, + { + "Id": "zav", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yatzachi Zapotec", + "Comment": "" + }, + { + "Id": "zaw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mitla Zapotec", + "Comment": "" + }, + { + "Id": "zax", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Xadani Zapotec", + "Comment": "" + }, + { + "Id": "zay", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Zayse-Zergulla", + "Comment": "" + }, + { + "Id": "zaz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Zari", + "Comment": "" + }, + { + "Id": "zba", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "C", + "RefName": "Balaibalan", + "Comment": "" + }, + { + "Id": "zbc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Central Berawan", + "Comment": "" + }, + { + "Id": "zbe", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "East Berawan", + "Comment": "" + }, + { + "Id": "zbl", + "Part2B": "zbl", + "Part2T": "zbl", + "Part1": "", + "Scope": "I", + "LanguageType": "C", + "RefName": "Blissymbols", + "Comment": "" + }, + { + "Id": "zbt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Batui", + "Comment": "" + }, + { + "Id": "zbu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bu (Bauchi State)", + "Comment": "" + }, + { + "Id": "zbw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "West Berawan", + "Comment": "" + }, + { + "Id": "zca", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Coatecas Altas Zapotec", + "Comment": "" + }, + { + "Id": "zcd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Las Delicias Zapotec", + "Comment": "" + }, + { + "Id": "zch", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Central Hongshuihe Zhuang", + "Comment": "" + }, + { + "Id": "zdj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ngazidja Comorian", + "Comment": "" + }, + { + "Id": "zea", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Zeeuws", + "Comment": "" + }, + { + "Id": "zeg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Zenag", + "Comment": "" + }, + { + "Id": "zeh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Eastern Hongshuihe Zhuang", + "Comment": "" + }, + { + "Id": "zem", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Zeem", + "Comment": "" + }, + { + "Id": "zen", + "Part2B": "zen", + "Part2T": "zen", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Zenaga", + "Comment": "" + }, + { + "Id": "zga", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kinga", + "Comment": "" + }, + { + "Id": "zgb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Guibei Zhuang", + "Comment": "" + }, + { + "Id": "zgh", + "Part2B": "zgh", + "Part2T": "zgh", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Standard Moroccan Tamazight", + "Comment": "" + }, + { + "Id": "zgm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Minz Zhuang", + "Comment": "" + }, + { + "Id": "zgn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Guibian Zhuang", + "Comment": "" + }, + { + "Id": "zgr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Magori", + "Comment": "" + }, + { + "Id": "zha", + "Part2B": "zha", + "Part2T": "zha", + "Part1": "za", + "Scope": "M", + "LanguageType": "L", + "RefName": "Zhuang", + "Comment": "" + }, + { + "Id": "zhb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Zhaba", + "Comment": "" + }, + { + "Id": "zhd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Dai Zhuang", + "Comment": "" + }, + { + "Id": "zhi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Zhire", + "Comment": "" + }, + { + "Id": "zhn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Nong Zhuang", + "Comment": "" + }, + { + "Id": "zho", + "Part2B": "chi", + "Part2T": "zho", + "Part1": "zh", + "Scope": "M", + "LanguageType": "L", + "RefName": "Chinese", + "Comment": "" + }, + { + "Id": "zhw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Zhoa", + "Comment": "" + }, + { + "Id": "zia", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Zia", + "Comment": "" + }, + { + "Id": "zib", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Zimbabwe Sign Language", + "Comment": "" + }, + { + "Id": "zik", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Zimakani", + "Comment": "" + }, + { + "Id": "zil", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Zialo", + "Comment": "" + }, + { + "Id": "zim", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mesme", + "Comment": "" + }, + { + "Id": "zin", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Zinza", + "Comment": "" + }, + { + "Id": "ziw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Zigula", + "Comment": "" + }, + { + "Id": "ziz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Zizilivakan", + "Comment": "" + }, + { + "Id": "zka", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kaimbulawa", + "Comment": "" + }, + { + "Id": "zkd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kadu", + "Comment": "" + }, + { + "Id": "zkg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Koguryo", + "Comment": "" + }, + { + "Id": "zkh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Khorezmian", + "Comment": "" + }, + { + "Id": "zkk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Karankawa", + "Comment": "" + }, + { + "Id": "zkn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kanan", + "Comment": "" + }, + { + "Id": "zko", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Kott", + "Comment": "" + }, + { + "Id": "zkp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "S\u00E3o Paulo Kaing\u00E1ng", + "Comment": "" + }, + { + "Id": "zkr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Zakhring", + "Comment": "" + }, + { + "Id": "zkt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Kitan", + "Comment": "" + }, + { + "Id": "zku", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kaurna", + "Comment": "" + }, + { + "Id": "zkv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Krevinian", + "Comment": "" + }, + { + "Id": "zkz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Khazar", + "Comment": "" + }, + { + "Id": "zla", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Zula", + "Comment": "" + }, + { + "Id": "zlj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Liujiang Zhuang", + "Comment": "" + }, + { + "Id": "zlm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Malay (individual language)", + "Comment": "" + }, + { + "Id": "zln", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lianshan Zhuang", + "Comment": "" + }, + { + "Id": "zlq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Liuqian Zhuang", + "Comment": "" + }, + { + "Id": "zlu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Zul", + "Comment": "" + }, + { + "Id": "zma", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Manda (Australia)", + "Comment": "" + }, + { + "Id": "zmb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Zimba", + "Comment": "" + }, + { + "Id": "zmc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Margany", + "Comment": "" + }, + { + "Id": "zmd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Maridan", + "Comment": "" + }, + { + "Id": "zme", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Mangerr", + "Comment": "" + }, + { + "Id": "zmf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mfinu", + "Comment": "" + }, + { + "Id": "zmg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Marti Ke", + "Comment": "" + }, + { + "Id": "zmh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Makolkol", + "Comment": "" + }, + { + "Id": "zmi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Negeri Sembilan Malay", + "Comment": "" + }, + { + "Id": "zmj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Maridjabin", + "Comment": "" + }, + { + "Id": "zmk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Mandandanyi", + "Comment": "" + }, + { + "Id": "zml", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Matngala", + "Comment": "" + }, + { + "Id": "zmm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Marimanindji", + "Comment": "" + }, + { + "Id": "zmn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mbangwe", + "Comment": "" + }, + { + "Id": "zmo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Molo", + "Comment": "" + }, + { + "Id": "zmp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mpuono", + "Comment": "" + }, + { + "Id": "zmq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mituku", + "Comment": "" + }, + { + "Id": "zmr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Maranunggu", + "Comment": "" + }, + { + "Id": "zms", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mbesa", + "Comment": "" + }, + { + "Id": "zmt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Maringarr", + "Comment": "" + }, + { + "Id": "zmu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Muruwari", + "Comment": "" + }, + { + "Id": "zmv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Mbariman-Gudhinma", + "Comment": "" + }, + { + "Id": "zmw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mbo (Democratic Republic of Congo)", + "Comment": "" + }, + { + "Id": "zmx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Bomitaba", + "Comment": "" + }, + { + "Id": "zmy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mariyedi", + "Comment": "" + }, + { + "Id": "zmz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mbandja", + "Comment": "" + }, + { + "Id": "zna", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Zan Gula", + "Comment": "" + }, + { + "Id": "zne", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Zande (individual language)", + "Comment": "" + }, + { + "Id": "zng", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mang", + "Comment": "" + }, + { + "Id": "znk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Manangkari", + "Comment": "" + }, + { + "Id": "zns", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mangas", + "Comment": "" + }, + { + "Id": "zoc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Copainal\u00E1 Zoque", + "Comment": "" + }, + { + "Id": "zoh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chimalapa Zoque", + "Comment": "" + }, + { + "Id": "zom", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Zou", + "Comment": "" + }, + { + "Id": "zoo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Asunci\u00F3n Mixtepec Zapotec", + "Comment": "" + }, + { + "Id": "zoq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tabasco Zoque", + "Comment": "" + }, + { + "Id": "zor", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Ray\u00F3n Zoque", + "Comment": "" + }, + { + "Id": "zos", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Francisco Le\u00F3n Zoque", + "Comment": "" + }, + { + "Id": "zpa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lachiguiri Zapotec", + "Comment": "" + }, + { + "Id": "zpb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yautepec Zapotec", + "Comment": "" + }, + { + "Id": "zpc", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Choapan Zapotec", + "Comment": "" + }, + { + "Id": "zpd", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southeastern Ixtl\u00E1n Zapotec", + "Comment": "" + }, + { + "Id": "zpe", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Petapa Zapotec", + "Comment": "" + }, + { + "Id": "zpf", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "San Pedro Quiatoni Zapotec", + "Comment": "" + }, + { + "Id": "zpg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Guevea De Humboldt Zapotec", + "Comment": "" + }, + { + "Id": "zph", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Totomachapan Zapotec", + "Comment": "" + }, + { + "Id": "zpi", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Santa Mar\u00EDa Quiegolani Zapotec", + "Comment": "" + }, + { + "Id": "zpj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Quiavicuzas Zapotec", + "Comment": "" + }, + { + "Id": "zpk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tlacolulita Zapotec", + "Comment": "" + }, + { + "Id": "zpl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lachix\u00EDo Zapotec", + "Comment": "" + }, + { + "Id": "zpm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mixtepec Zapotec", + "Comment": "" + }, + { + "Id": "zpn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Santa In\u00E9s Yatzechi Zapotec", + "Comment": "" + }, + { + "Id": "zpo", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Amatl\u00E1n Zapotec", + "Comment": "" + }, + { + "Id": "zpp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "El Alto Zapotec", + "Comment": "" + }, + { + "Id": "zpq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Zoogocho Zapotec", + "Comment": "" + }, + { + "Id": "zpr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Santiago Xanica Zapotec", + "Comment": "" + }, + { + "Id": "zps", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Coatl\u00E1n Zapotec", + "Comment": "" + }, + { + "Id": "zpt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "San Vicente Coatl\u00E1n Zapotec", + "Comment": "" + }, + { + "Id": "zpu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yal\u00E1lag Zapotec", + "Comment": "" + }, + { + "Id": "zpv", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Chichicapan Zapotec", + "Comment": "" + }, + { + "Id": "zpw", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Zaniza Zapotec", + "Comment": "" + }, + { + "Id": "zpx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "San Baltazar Loxicha Zapotec", + "Comment": "" + }, + { + "Id": "zpy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mazaltepec Zapotec", + "Comment": "" + }, + { + "Id": "zpz", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Texmelucan Zapotec", + "Comment": "" + }, + { + "Id": "zqe", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Qiubei Zhuang", + "Comment": "" + }, + { + "Id": "zra", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Kara (Korea)", + "Comment": "" + }, + { + "Id": "zrg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mirgan", + "Comment": "" + }, + { + "Id": "zrn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Zerenkel", + "Comment": "" + }, + { + "Id": "zro", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Z\u00E1paro", + "Comment": "" + }, + { + "Id": "zrp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "E", + "RefName": "Zarphatic", + "Comment": "" + }, + { + "Id": "zrs", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Mairasi", + "Comment": "" + }, + { + "Id": "zsa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sarasira", + "Comment": "" + }, + { + "Id": "zsk", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "H", + "RefName": "Kaskean", + "Comment": "" + }, + { + "Id": "zsl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Zambian Sign Language", + "Comment": "" + }, + { + "Id": "zsm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Standard Malay", + "Comment": "" + }, + { + "Id": "zsr", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Southern Rincon Zapotec", + "Comment": "" + }, + { + "Id": "zsu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Sukurum", + "Comment": "" + }, + { + "Id": "zte", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Elotepec Zapotec", + "Comment": "" + }, + { + "Id": "ztg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Xanagu\u00EDa Zapotec", + "Comment": "" + }, + { + "Id": "ztl", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Lapagu\u00EDa-Guivini Zapotec", + "Comment": "" + }, + { + "Id": "ztm", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "San Agust\u00EDn Mixtepec Zapotec", + "Comment": "" + }, + { + "Id": "ztn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Santa Catarina Albarradas Zapotec", + "Comment": "" + }, + { + "Id": "ztp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Loxicha Zapotec", + "Comment": "" + }, + { + "Id": "ztq", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Quioquitani-Quier\u00ED Zapotec", + "Comment": "" + }, + { + "Id": "zts", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tilquiapan Zapotec", + "Comment": "" + }, + { + "Id": "ztt", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tejalapan Zapotec", + "Comment": "" + }, + { + "Id": "ztu", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "G\u00FCil\u00E1 Zapotec", + "Comment": "" + }, + { + "Id": "ztx", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Zaachila Zapotec", + "Comment": "" + }, + { + "Id": "zty", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yatee Zapotec", + "Comment": "" + }, + { + "Id": "zuh", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Tokano", + "Comment": "" + }, + { + "Id": "zul", + "Part2B": "zul", + "Part2T": "zul", + "Part1": "zu", + "Scope": "I", + "LanguageType": "L", + "RefName": "Zulu", + "Comment": "" + }, + { + "Id": "zum", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Kumzari", + "Comment": "" + }, + { + "Id": "zun", + "Part2B": "zun", + "Part2T": "zun", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Zuni", + "Comment": "" + }, + { + "Id": "zuy", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Zumaya", + "Comment": "" + }, + { + "Id": "zwa", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Zay", + "Comment": "" + }, + { + "Id": "zxx", + "Part2B": "zxx", + "Part2T": "zxx", + "Part1": "", + "Scope": "S", + "LanguageType": "S", + "RefName": "No linguistic content", + "Comment": "" + }, + { + "Id": "zyb", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yongbei Zhuang", + "Comment": "" + }, + { + "Id": "zyg", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yang Zhuang", + "Comment": "" + }, + { + "Id": "zyj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Youjiang Zhuang", + "Comment": "" + }, + { + "Id": "zyn", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Yongnan Zhuang", + "Comment": "" + }, + { + "Id": "zyp", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Zyphe Chin", + "Comment": "" + }, + { + "Id": "zza", + "Part2B": "zza", + "Part2T": "zza", + "Part1": "", + "Scope": "M", + "LanguageType": "L", + "RefName": "Zaza", + "Comment": "" + }, + { + "Id": "zzj", + "Part2B": "", + "Part2T": "", + "Part1": "", + "Scope": "I", + "LanguageType": "L", + "RefName": "Zuojiang Zhuang", + "Comment": "" + } + ] +} \ No newline at end of file diff --git a/LanguageData/rfc5646 b/LanguageData/rfc5646 new file mode 100644 index 0000000..64c40f2 --- /dev/null +++ b/LanguageData/rfc5646 @@ -0,0 +1,49138 @@ +File-Date: 2025-05-15 +%% +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 +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 (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: Nyanja +Description: Chewa +Description: Chichewa +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: 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 +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 +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: 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 +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 +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: 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: Slave (Athapascan) +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: 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: Han +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 (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: Harijan Kinnauri +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: 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: 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: 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: Luiseno +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: 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 (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 +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 +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: 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: 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: 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 +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 +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 +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: 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: 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 +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 +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: 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: 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: 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 +%% +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: 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: Mpuono +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: 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: 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: 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: 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: 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: 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: 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: 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: 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: 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: 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: 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: 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: 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 new file mode 100644 index 0000000..8fc5bf0 --- /dev/null +++ b/LanguageData/rfc5646.json @@ -0,0 +1,159314 @@ +{ + "FileDate": "2025-05-15", + "RecordList": [ + { + "Type": 1, + "SubTag": "aa", + "Description": [ + "Afar" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aa" + }, + { + "Type": 1, + "SubTag": "ab", + "Description": [ + "Abkhazian" + ], + "Added": "2005-10-16", + "SuppressScript": "Cyrl", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ab" + }, + { + "Type": 1, + "SubTag": "ae", + "Description": [ + "Avestan" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ae" + }, + { + "Type": 1, + "SubTag": "af", + "Description": [ + "Afrikaans" + ], + "Added": "2005-10-16", + "SuppressScript": "Latn", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "af" + }, + { + "Type": 1, + "SubTag": "ak", + "Description": [ + "Akan" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "macrolanguage", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ak" + }, + { + "Type": 1, + "SubTag": "am", + "Description": [ + "Amharic" + ], + "Added": "2005-10-16", + "SuppressScript": "Ethi", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "am" + }, + { + "Type": 1, + "SubTag": "an", + "Description": [ + "Aragonese" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "an" + }, + { + "Type": 1, + "SubTag": "ar", + "Description": [ + "Arabic" + ], + "Added": "2005-10-16", + "SuppressScript": "Arab", + "Scope": "macrolanguage", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ar" + }, + { + "Type": 1, + "SubTag": "as", + "Description": [ + "Assamese" + ], + "Added": "2005-10-16", + "SuppressScript": "Beng", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "as" + }, + { + "Type": 1, + "SubTag": "av", + "Description": [ + "Avaric" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "av" + }, + { + "Type": 1, + "SubTag": "ay", + "Description": [ + "Aymara" + ], + "Added": "2005-10-16", + "SuppressScript": "Latn", + "Scope": "macrolanguage", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ay" + }, + { + "Type": 1, + "SubTag": "az", + "Description": [ + "Azerbaijani" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "macrolanguage", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "az" + }, + { + "Type": 1, + "SubTag": "ba", + "Description": [ + "Bashkir" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ba" + }, + { + "Type": 1, + "SubTag": "be", + "Description": [ + "Belarusian" + ], + "Added": "2005-10-16", + "SuppressScript": "Cyrl", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "be" + }, + { + "Type": 1, + "SubTag": "bg", + "Description": [ + "Bulgarian" + ], + "Added": "2005-10-16", + "SuppressScript": "Cyrl", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bg" + }, + { + "Type": 1, + "SubTag": "bh", + "Description": [ + "Bihari languages" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bh" + }, + { + "Type": 1, + "SubTag": "bi", + "Description": [ + "Bislama" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bi" + }, + { + "Type": 1, + "SubTag": "bm", + "Description": [ + "Bambara" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bm" + }, + { + "Type": 1, + "SubTag": "bn", + "Description": [ + "Bengali", + "Bangla" + ], + "Added": "2005-10-16", + "SuppressScript": "Beng", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bn" + }, + { + "Type": 1, + "SubTag": "bo", + "Description": [ + "Tibetan" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bo" + }, + { + "Type": 1, + "SubTag": "br", + "Description": [ + "Breton" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "br" + }, + { + "Type": 1, + "SubTag": "bs", + "Description": [ + "Bosnian" + ], + "Added": "2005-10-16", + "SuppressScript": "Latn", + "Scope": "", + "MacroLanguage": "sh", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bs" + }, + { + "Type": 1, + "SubTag": "ca", + "Description": [ + "Catalan", + "Valencian" + ], + "Added": "2005-10-16", + "SuppressScript": "Latn", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ca" + }, + { + "Type": 1, + "SubTag": "ce", + "Description": [ + "Chechen" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ce" + }, + { + "Type": 1, + "SubTag": "ch", + "Description": [ + "Chamorro" + ], + "Added": "2005-10-16", + "SuppressScript": "Latn", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ch" + }, + { + "Type": 1, + "SubTag": "co", + "Description": [ + "Corsican" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "co" + }, + { + "Type": 1, + "SubTag": "cr", + "Description": [ + "Cree" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "macrolanguage", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cr" + }, + { + "Type": 1, + "SubTag": "cs", + "Description": [ + "Czech" + ], + "Added": "2005-10-16", + "SuppressScript": "Latn", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cs" + }, + { + "Type": 1, + "SubTag": "cu", + "Description": [ + "Church Slavic", + "Church Slavonic", + "Old Bulgarian", + "Old Church Slavonic", + "Old Slavonic" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cu" + }, + { + "Type": 1, + "SubTag": "cv", + "Description": [ + "Chuvash" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cv" + }, + { + "Type": 1, + "SubTag": "cy", + "Description": [ + "Welsh" + ], + "Added": "2005-10-16", + "SuppressScript": "Latn", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cy" + }, + { + "Type": 1, + "SubTag": "da", + "Description": [ + "Danish" + ], + "Added": "2005-10-16", + "SuppressScript": "Latn", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "da" + }, + { + "Type": 1, + "SubTag": "de", + "Description": [ + "German" + ], + "Added": "2005-10-16", + "SuppressScript": "Latn", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "de" + }, + { + "Type": 1, + "SubTag": "dv", + "Description": [ + "Dhivehi", + "Divehi", + "Maldivian" + ], + "Added": "2005-10-16", + "SuppressScript": "Thaa", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dv" + }, + { + "Type": 1, + "SubTag": "dz", + "Description": [ + "Dzongkha" + ], + "Added": "2005-10-16", + "SuppressScript": "Tibt", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dz" + }, + { + "Type": 1, + "SubTag": "ee", + "Description": [ + "Ewe" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ee" + }, + { + "Type": 1, + "SubTag": "el", + "Description": [ + "Modern Greek (1453-)" + ], + "Added": "2005-10-16", + "SuppressScript": "Grek", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "el" + }, + { + "Type": 1, + "SubTag": "en", + "Description": [ + "English" + ], + "Added": "2005-10-16", + "SuppressScript": "Latn", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "en" + }, + { + "Type": 1, + "SubTag": "eo", + "Description": [ + "Esperanto" + ], + "Added": "2005-10-16", + "SuppressScript": "Latn", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "eo" + }, + { + "Type": 1, + "SubTag": "es", + "Description": [ + "Spanish", + "Castilian" + ], + "Added": "2005-10-16", + "SuppressScript": "Latn", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "es" + }, + { + "Type": 1, + "SubTag": "et", + "Description": [ + "Estonian" + ], + "Added": "2005-10-16", + "SuppressScript": "Latn", + "Scope": "macrolanguage", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "et" + }, + { + "Type": 1, + "SubTag": "eu", + "Description": [ + "Basque" + ], + "Added": "2005-10-16", + "SuppressScript": "Latn", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "eu" + }, + { + "Type": 1, + "SubTag": "fa", + "Description": [ + "Persian" + ], + "Added": "2005-10-16", + "SuppressScript": "Arab", + "Scope": "macrolanguage", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "fa" + }, + { + "Type": 1, + "SubTag": "ff", + "Description": [ + "Fulah" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "macrolanguage", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ff" + }, + { + "Type": 1, + "SubTag": "fi", + "Description": [ + "Finnish" + ], + "Added": "2005-10-16", + "SuppressScript": "Latn", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "fi" + }, + { + "Type": 1, + "SubTag": "fj", + "Description": [ + "Fijian" + ], + "Added": "2005-10-16", + "SuppressScript": "Latn", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "fj" + }, + { + "Type": 1, + "SubTag": "fo", + "Description": [ + "Faroese" + ], + "Added": "2005-10-16", + "SuppressScript": "Latn", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "fo" + }, + { + "Type": 1, + "SubTag": "fr", + "Description": [ + "French" + ], + "Added": "2005-10-16", + "SuppressScript": "Latn", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "fr" + }, + { + "Type": 1, + "SubTag": "fy", + "Description": [ + "Western Frisian" + ], + "Added": "2005-10-16", + "SuppressScript": "Latn", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "fy" + }, + { + "Type": 1, + "SubTag": "ga", + "Description": [ + "Irish" + ], + "Added": "2005-10-16", + "SuppressScript": "Latn", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ga" + }, + { + "Type": 1, + "SubTag": "gd", + "Description": [ + "Scottish Gaelic", + "Gaelic" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gd" + }, + { + "Type": 1, + "SubTag": "gl", + "Description": [ + "Galician" + ], + "Added": "2005-10-16", + "SuppressScript": "Latn", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gl" + }, + { + "Type": 1, + "SubTag": "gn", + "Description": [ + "Guarani" + ], + "Added": "2005-10-16", + "SuppressScript": "Latn", + "Scope": "macrolanguage", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gn" + }, + { + "Type": 1, + "SubTag": "gu", + "Description": [ + "Gujarati" + ], + "Added": "2005-10-16", + "SuppressScript": "Gujr", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gu" + }, + { + "Type": 1, + "SubTag": "gv", + "Description": [ + "Manx" + ], + "Added": "2005-10-16", + "SuppressScript": "Latn", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gv" + }, + { + "Type": 1, + "SubTag": "ha", + "Description": [ + "Hausa" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ha" + }, + { + "Type": 1, + "SubTag": "he", + "Description": [ + "Hebrew" + ], + "Added": "2005-10-16", + "SuppressScript": "Hebr", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "he" + }, + { + "Type": 1, + "SubTag": "hi", + "Description": [ + "Hindi" + ], + "Added": "2005-10-16", + "SuppressScript": "Deva", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hi" + }, + { + "Type": 1, + "SubTag": "ho", + "Description": [ + "Hiri Motu" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ho" + }, + { + "Type": 1, + "SubTag": "hr", + "Description": [ + "Croatian" + ], + "Added": "2005-10-16", + "SuppressScript": "Latn", + "Scope": "", + "MacroLanguage": "sh", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hr" + }, + { + "Type": 1, + "SubTag": "ht", + "Description": [ + "Haitian", + "Haitian Creole" + ], + "Added": "2005-10-16", + "SuppressScript": "Latn", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ht" + }, + { + "Type": 1, + "SubTag": "hu", + "Description": [ + "Hungarian" + ], + "Added": "2005-10-16", + "SuppressScript": "Latn", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hu" + }, + { + "Type": 1, + "SubTag": "hy", + "Description": [ + "Armenian" + ], + "Added": "2005-10-16", + "SuppressScript": "Armn", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [ + "see also hyw" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hy" + }, + { + "Type": 1, + "SubTag": "hz", + "Description": [ + "Herero" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hz" + }, + { + "Type": 1, + "SubTag": "ia", + "Description": [ + "Interlingua (International Auxiliary Language Association)" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ia" + }, + { + "Type": 1, + "SubTag": "id", + "Description": [ + "Indonesian" + ], + "Added": "2005-10-16", + "SuppressScript": "Latn", + "Scope": "", + "MacroLanguage": "ms", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "id" + }, + { + "Type": 1, + "SubTag": "ie", + "Description": [ + "Interlingue", + "Occidental" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ie" + }, + { + "Type": 1, + "SubTag": "ig", + "Description": [ + "Igbo" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ig" + }, + { + "Type": 1, + "SubTag": "ii", + "Description": [ + "Sichuan Yi", + "Nuosu" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ii" + }, + { + "Type": 1, + "SubTag": "ik", + "Description": [ + "Inupiaq" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "macrolanguage", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ik" + }, + { + "Type": 1, + "SubTag": "in", + "Description": [ + "Indonesian" + ], + "Added": "2005-10-16", + "SuppressScript": "Latn", + "Scope": "", + "MacroLanguage": "ms", + "Deprecated": "1989-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "id", + "Tag": "", + "TagAny": "in" + }, + { + "Type": 1, + "SubTag": "io", + "Description": [ + "Ido" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "io" + }, + { + "Type": 1, + "SubTag": "is", + "Description": [ + "Icelandic" + ], + "Added": "2005-10-16", + "SuppressScript": "Latn", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "is" + }, + { + "Type": 1, + "SubTag": "it", + "Description": [ + "Italian" + ], + "Added": "2005-10-16", + "SuppressScript": "Latn", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "it" + }, + { + "Type": 1, + "SubTag": "iu", + "Description": [ + "Inuktitut" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "macrolanguage", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "iu" + }, + { + "Type": 1, + "SubTag": "iw", + "Description": [ + "Hebrew" + ], + "Added": "2005-10-16", + "SuppressScript": "Hebr", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "1989-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "he", + "Tag": "", + "TagAny": "iw" + }, + { + "Type": 1, + "SubTag": "ja", + "Description": [ + "Japanese" + ], + "Added": "2005-10-16", + "SuppressScript": "Jpan", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ja" + }, + { + "Type": 1, + "SubTag": "ji", + "Description": [ + "Yiddish" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "1989-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "yi", + "Tag": "", + "TagAny": "ji" + }, + { + "Type": 1, + "SubTag": "jv", + "Description": [ + "Javanese" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jv" + }, + { + "Type": 1, + "SubTag": "jw", + "Description": [ + "Javanese" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2001-08-13", + "Comments": [ + "published by error in Table 1 of ISO 639:1988" + ], + "Prefix": [], + "PreferredValue": "jv", + "Tag": "", + "TagAny": "jw" + }, + { + "Type": 1, + "SubTag": "ka", + "Description": [ + "Georgian" + ], + "Added": "2005-10-16", + "SuppressScript": "Geor", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ka" + }, + { + "Type": 1, + "SubTag": "kg", + "Description": [ + "Kongo" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "macrolanguage", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kg" + }, + { + "Type": 1, + "SubTag": "ki", + "Description": [ + "Kikuyu", + "Gikuyu" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ki" + }, + { + "Type": 1, + "SubTag": "kj", + "Description": [ + "Kuanyama", + "Kwanyama" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kj" + }, + { + "Type": 1, + "SubTag": "kk", + "Description": [ + "Kazakh" + ], + "Added": "2005-10-16", + "SuppressScript": "Cyrl", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kk" + }, + { + "Type": 1, + "SubTag": "kl", + "Description": [ + "Kalaallisut", + "Greenlandic" + ], + "Added": "2005-10-16", + "SuppressScript": "Latn", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kl" + }, + { + "Type": 1, + "SubTag": "km", + "Description": [ + "Khmer", + "Central Khmer" + ], + "Added": "2005-10-16", + "SuppressScript": "Khmr", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "km" + }, + { + "Type": 1, + "SubTag": "kn", + "Description": [ + "Kannada" + ], + "Added": "2005-10-16", + "SuppressScript": "Knda", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kn" + }, + { + "Type": 1, + "SubTag": "ko", + "Description": [ + "Korean" + ], + "Added": "2005-10-16", + "SuppressScript": "Kore", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ko" + }, + { + "Type": 1, + "SubTag": "kr", + "Description": [ + "Kanuri" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "macrolanguage", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kr" + }, + { + "Type": 1, + "SubTag": "ks", + "Description": [ + "Kashmiri" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ks" + }, + { + "Type": 1, + "SubTag": "ku", + "Description": [ + "Kurdish" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "macrolanguage", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ku" + }, + { + "Type": 1, + "SubTag": "kv", + "Description": [ + "Komi" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "macrolanguage", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kv" + }, + { + "Type": 1, + "SubTag": "kw", + "Description": [ + "Cornish" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kw" + }, + { + "Type": 1, + "SubTag": "ky", + "Description": [ + "Kirghiz", + "Kyrgyz" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ky" + }, + { + "Type": 1, + "SubTag": "la", + "Description": [ + "Latin" + ], + "Added": "2005-10-16", + "SuppressScript": "Latn", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "la" + }, + { + "Type": 1, + "SubTag": "lb", + "Description": [ + "Luxembourgish", + "Letzeburgesch" + ], + "Added": "2005-10-16", + "SuppressScript": "Latn", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lb" + }, + { + "Type": 1, + "SubTag": "lg", + "Description": [ + "Ganda", + "Luganda" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lg" + }, + { + "Type": 1, + "SubTag": "li", + "Description": [ + "Limburgan", + "Limburger", + "Limburgish" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "li" + }, + { + "Type": 1, + "SubTag": "ln", + "Description": [ + "Lingala" + ], + "Added": "2005-10-16", + "SuppressScript": "Latn", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ln" + }, + { + "Type": 1, + "SubTag": "lo", + "Description": [ + "Lao" + ], + "Added": "2005-10-16", + "SuppressScript": "Laoo", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lo" + }, + { + "Type": 1, + "SubTag": "lt", + "Description": [ + "Lithuanian" + ], + "Added": "2005-10-16", + "SuppressScript": "Latn", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lt" + }, + { + "Type": 1, + "SubTag": "lu", + "Description": [ + "Luba-Katanga" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lu" + }, + { + "Type": 1, + "SubTag": "lv", + "Description": [ + "Latvian" + ], + "Added": "2005-10-16", + "SuppressScript": "Latn", + "Scope": "macrolanguage", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lv" + }, + { + "Type": 1, + "SubTag": "mg", + "Description": [ + "Malagasy" + ], + "Added": "2005-10-16", + "SuppressScript": "Latn", + "Scope": "macrolanguage", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mg" + }, + { + "Type": 1, + "SubTag": "mh", + "Description": [ + "Marshallese" + ], + "Added": "2005-10-16", + "SuppressScript": "Latn", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mh" + }, + { + "Type": 1, + "SubTag": "mi", + "Description": [ + "Maori" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mi" + }, + { + "Type": 1, + "SubTag": "mk", + "Description": [ + "Macedonian" + ], + "Added": "2005-10-16", + "SuppressScript": "Cyrl", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mk" + }, + { + "Type": 1, + "SubTag": "ml", + "Description": [ + "Malayalam" + ], + "Added": "2005-10-16", + "SuppressScript": "Mlym", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ml" + }, + { + "Type": 1, + "SubTag": "mn", + "Description": [ + "Mongolian" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "macrolanguage", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mn" + }, + { + "Type": 1, + "SubTag": "mo", + "Description": [ + "Moldavian", + "Moldovan" + ], + "Added": "2005-10-16", + "SuppressScript": "Latn", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2008-11-22", + "Comments": [], + "Prefix": [], + "PreferredValue": "ro", + "Tag": "", + "TagAny": "mo" + }, + { + "Type": 1, + "SubTag": "mr", + "Description": [ + "Marathi" + ], + "Added": "2005-10-16", + "SuppressScript": "Deva", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mr" + }, + { + "Type": 1, + "SubTag": "ms", + "Description": [ + "Malay (macrolanguage)" + ], + "Added": "2005-10-16", + "SuppressScript": "Latn", + "Scope": "macrolanguage", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ms" + }, + { + "Type": 1, + "SubTag": "mt", + "Description": [ + "Maltese" + ], + "Added": "2005-10-16", + "SuppressScript": "Latn", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mt" + }, + { + "Type": 1, + "SubTag": "my", + "Description": [ + "Burmese" + ], + "Added": "2005-10-16", + "SuppressScript": "Mymr", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "my" + }, + { + "Type": 1, + "SubTag": "na", + "Description": [ + "Nauru" + ], + "Added": "2005-10-16", + "SuppressScript": "Latn", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "na" + }, + { + "Type": 1, + "SubTag": "nb", + "Description": [ + "Norwegian Bokm\u00E5l" + ], + "Added": "2005-10-16", + "SuppressScript": "Latn", + "Scope": "", + "MacroLanguage": "no", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nb" + }, + { + "Type": 1, + "SubTag": "nd", + "Description": [ + "North Ndebele" + ], + "Added": "2005-10-16", + "SuppressScript": "Latn", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nd" + }, + { + "Type": 1, + "SubTag": "ne", + "Description": [ + "Nepali (macrolanguage)" + ], + "Added": "2005-10-16", + "SuppressScript": "Deva", + "Scope": "macrolanguage", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ne" + }, + { + "Type": 1, + "SubTag": "ng", + "Description": [ + "Ndonga" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ng" + }, + { + "Type": 1, + "SubTag": "nl", + "Description": [ + "Dutch", + "Flemish" + ], + "Added": "2005-10-16", + "SuppressScript": "Latn", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nl" + }, + { + "Type": 1, + "SubTag": "nn", + "Description": [ + "Norwegian Nynorsk" + ], + "Added": "2005-10-16", + "SuppressScript": "Latn", + "Scope": "", + "MacroLanguage": "no", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nn" + }, + { + "Type": 1, + "SubTag": "no", + "Description": [ + "Norwegian" + ], + "Added": "2005-10-16", + "SuppressScript": "Latn", + "Scope": "macrolanguage", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "no" + }, + { + "Type": 1, + "SubTag": "nr", + "Description": [ + "South Ndebele" + ], + "Added": "2005-10-16", + "SuppressScript": "Latn", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nr" + }, + { + "Type": 1, + "SubTag": "nv", + "Description": [ + "Navajo", + "Navaho" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nv" + }, + { + "Type": 1, + "SubTag": "ny", + "Description": [ + "Nyanja", + "Chewa", + "Chichewa" + ], + "Added": "2005-10-16", + "SuppressScript": "Latn", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ny" + }, + { + "Type": 1, + "SubTag": "oc", + "Description": [ + "Occitan (post 1500)" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "oc" + }, + { + "Type": 1, + "SubTag": "oj", + "Description": [ + "Ojibwa" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "macrolanguage", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "oj" + }, + { + "Type": 1, + "SubTag": "om", + "Description": [ + "Oromo" + ], + "Added": "2005-10-16", + "SuppressScript": "Latn", + "Scope": "macrolanguage", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "om" + }, + { + "Type": 1, + "SubTag": "or", + "Description": [ + "Oriya (macrolanguage)", + "Odia (macrolanguage)" + ], + "Added": "2005-10-16", + "SuppressScript": "Orya", + "Scope": "macrolanguage", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "or" + }, + { + "Type": 1, + "SubTag": "os", + "Description": [ + "Ossetian", + "Ossetic" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "os" + }, + { + "Type": 1, + "SubTag": "pa", + "Description": [ + "Panjabi", + "Punjabi" + ], + "Added": "2005-10-16", + "SuppressScript": "Guru", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pa" + }, + { + "Type": 1, + "SubTag": "pi", + "Description": [ + "Pali" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pi" + }, + { + "Type": 1, + "SubTag": "pl", + "Description": [ + "Polish" + ], + "Added": "2005-10-16", + "SuppressScript": "Latn", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pl" + }, + { + "Type": 1, + "SubTag": "ps", + "Description": [ + "Pushto", + "Pashto" + ], + "Added": "2005-10-16", + "SuppressScript": "Arab", + "Scope": "macrolanguage", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ps" + }, + { + "Type": 1, + "SubTag": "pt", + "Description": [ + "Portuguese" + ], + "Added": "2005-10-16", + "SuppressScript": "Latn", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pt" + }, + { + "Type": 1, + "SubTag": "qu", + "Description": [ + "Quechua" + ], + "Added": "2005-10-16", + "SuppressScript": "Latn", + "Scope": "macrolanguage", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "qu" + }, + { + "Type": 1, + "SubTag": "rm", + "Description": [ + "Romansh" + ], + "Added": "2005-10-16", + "SuppressScript": "Latn", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rm" + }, + { + "Type": 1, + "SubTag": "rn", + "Description": [ + "Rundi" + ], + "Added": "2005-10-16", + "SuppressScript": "Latn", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rn" + }, + { + "Type": 1, + "SubTag": "ro", + "Description": [ + "Romanian", + "Moldavian", + "Moldovan" + ], + "Added": "2005-10-16", + "SuppressScript": "Latn", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ro" + }, + { + "Type": 1, + "SubTag": "ru", + "Description": [ + "Russian" + ], + "Added": "2005-10-16", + "SuppressScript": "Cyrl", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ru" + }, + { + "Type": 1, + "SubTag": "rw", + "Description": [ + "Kinyarwanda" + ], + "Added": "2005-10-16", + "SuppressScript": "Latn", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rw" + }, + { + "Type": 1, + "SubTag": "sa", + "Description": [ + "Sanskrit" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "macrolanguage", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sa" + }, + { + "Type": 1, + "SubTag": "sc", + "Description": [ + "Sardinian" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "macrolanguage", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sc" + }, + { + "Type": 1, + "SubTag": "sd", + "Description": [ + "Sindhi" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sd" + }, + { + "Type": 1, + "SubTag": "se", + "Description": [ + "Northern Sami" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "se" + }, + { + "Type": 1, + "SubTag": "sg", + "Description": [ + "Sango" + ], + "Added": "2005-10-16", + "SuppressScript": "Latn", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sg" + }, + { + "Type": 1, + "SubTag": "sh", + "Description": [ + "Serbo-Croatian" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "macrolanguage", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [ + "sr, hr, bs are preferred for most modern uses" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sh" + }, + { + "Type": 1, + "SubTag": "si", + "Description": [ + "Sinhala", + "Sinhalese" + ], + "Added": "2005-10-16", + "SuppressScript": "Sinh", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "si" + }, + { + "Type": 1, + "SubTag": "sk", + "Description": [ + "Slovak" + ], + "Added": "2005-10-16", + "SuppressScript": "Latn", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sk" + }, + { + "Type": 1, + "SubTag": "sl", + "Description": [ + "Slovenian" + ], + "Added": "2005-10-16", + "SuppressScript": "Latn", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sl" + }, + { + "Type": 1, + "SubTag": "sm", + "Description": [ + "Samoan" + ], + "Added": "2005-10-16", + "SuppressScript": "Latn", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sm" + }, + { + "Type": 1, + "SubTag": "sn", + "Description": [ + "Shona" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sn" + }, + { + "Type": 1, + "SubTag": "so", + "Description": [ + "Somali" + ], + "Added": "2005-10-16", + "SuppressScript": "Latn", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "so" + }, + { + "Type": 1, + "SubTag": "sq", + "Description": [ + "Albanian" + ], + "Added": "2005-10-16", + "SuppressScript": "Latn", + "Scope": "macrolanguage", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sq" + }, + { + "Type": 1, + "SubTag": "sr", + "Description": [ + "Serbian" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "sh", + "Deprecated": "0001-01-01", + "Comments": [ + "see cnr for Montenegrin" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sr" + }, + { + "Type": 1, + "SubTag": "ss", + "Description": [ + "Swati" + ], + "Added": "2005-10-16", + "SuppressScript": "Latn", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ss" + }, + { + "Type": 1, + "SubTag": "st", + "Description": [ + "Southern Sotho" + ], + "Added": "2005-10-16", + "SuppressScript": "Latn", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "st" + }, + { + "Type": 1, + "SubTag": "su", + "Description": [ + "Sundanese" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "su" + }, + { + "Type": 1, + "SubTag": "sv", + "Description": [ + "Swedish" + ], + "Added": "2005-10-16", + "SuppressScript": "Latn", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sv" + }, + { + "Type": 1, + "SubTag": "sw", + "Description": [ + "Swahili (macrolanguage)" + ], + "Added": "2005-10-16", + "SuppressScript": "Latn", + "Scope": "macrolanguage", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sw" + }, + { + "Type": 1, + "SubTag": "ta", + "Description": [ + "Tamil" + ], + "Added": "2005-10-16", + "SuppressScript": "Taml", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ta" + }, + { + "Type": 1, + "SubTag": "te", + "Description": [ + "Telugu" + ], + "Added": "2005-10-16", + "SuppressScript": "Telu", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "te" + }, + { + "Type": 1, + "SubTag": "tg", + "Description": [ + "Tajik" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tg" + }, + { + "Type": 1, + "SubTag": "th", + "Description": [ + "Thai" + ], + "Added": "2005-10-16", + "SuppressScript": "Thai", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "th" + }, + { + "Type": 1, + "SubTag": "ti", + "Description": [ + "Tigrinya" + ], + "Added": "2005-10-16", + "SuppressScript": "Ethi", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ti" + }, + { + "Type": 1, + "SubTag": "tk", + "Description": [ + "Turkmen" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tk" + }, + { + "Type": 1, + "SubTag": "tl", + "Description": [ + "Tagalog" + ], + "Added": "2005-10-16", + "SuppressScript": "Latn", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tl" + }, + { + "Type": 1, + "SubTag": "tn", + "Description": [ + "Tswana" + ], + "Added": "2005-10-16", + "SuppressScript": "Latn", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tn" + }, + { + "Type": 1, + "SubTag": "to", + "Description": [ + "Tonga (Tonga Islands)" + ], + "Added": "2005-10-16", + "SuppressScript": "Latn", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "to" + }, + { + "Type": 1, + "SubTag": "tr", + "Description": [ + "Turkish" + ], + "Added": "2005-10-16", + "SuppressScript": "Latn", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tr" + }, + { + "Type": 1, + "SubTag": "ts", + "Description": [ + "Tsonga" + ], + "Added": "2005-10-16", + "SuppressScript": "Latn", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ts" + }, + { + "Type": 1, + "SubTag": "tt", + "Description": [ + "Tatar" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tt" + }, + { + "Type": 1, + "SubTag": "tw", + "Description": [ + "Twi" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ak", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tw" + }, + { + "Type": 1, + "SubTag": "ty", + "Description": [ + "Tahitian" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ty" + }, + { + "Type": 1, + "SubTag": "ug", + "Description": [ + "Uighur", + "Uyghur" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ug" + }, + { + "Type": 1, + "SubTag": "uk", + "Description": [ + "Ukrainian" + ], + "Added": "2005-10-16", + "SuppressScript": "Cyrl", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "uk" + }, + { + "Type": 1, + "SubTag": "ur", + "Description": [ + "Urdu" + ], + "Added": "2005-10-16", + "SuppressScript": "Arab", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ur" + }, + { + "Type": 1, + "SubTag": "uz", + "Description": [ + "Uzbek" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "macrolanguage", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "uz" + }, + { + "Type": 1, + "SubTag": "ve", + "Description": [ + "Venda" + ], + "Added": "2005-10-16", + "SuppressScript": "Latn", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ve" + }, + { + "Type": 1, + "SubTag": "vi", + "Description": [ + "Vietnamese" + ], + "Added": "2005-10-16", + "SuppressScript": "Latn", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "vi" + }, + { + "Type": 1, + "SubTag": "vo", + "Description": [ + "Volap\u00FCk" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "vo" + }, + { + "Type": 1, + "SubTag": "wa", + "Description": [ + "Walloon" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wa" + }, + { + "Type": 1, + "SubTag": "wo", + "Description": [ + "Wolof" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wo" + }, + { + "Type": 1, + "SubTag": "xh", + "Description": [ + "Xhosa" + ], + "Added": "2005-10-16", + "SuppressScript": "Latn", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xh" + }, + { + "Type": 1, + "SubTag": "yi", + "Description": [ + "Yiddish" + ], + "Added": "2005-10-16", + "SuppressScript": "Hebr", + "Scope": "macrolanguage", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yi" + }, + { + "Type": 1, + "SubTag": "yo", + "Description": [ + "Yoruba" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yo" + }, + { + "Type": 1, + "SubTag": "za", + "Description": [ + "Zhuang", + "Chuang" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "macrolanguage", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "za" + }, + { + "Type": 1, + "SubTag": "zh", + "Description": [ + "Chinese" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "macrolanguage", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zh" + }, + { + "Type": 1, + "SubTag": "zu", + "Description": [ + "Zulu" + ], + "Added": "2005-10-16", + "SuppressScript": "Latn", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zu" + }, + { + "Type": 1, + "SubTag": "aaa", + "Description": [ + "Ghotuo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aaa" + }, + { + "Type": 1, + "SubTag": "aab", + "Description": [ + "Alumu-Tesu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aab" + }, + { + "Type": 1, + "SubTag": "aac", + "Description": [ + "Ari" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aac" + }, + { + "Type": 1, + "SubTag": "aad", + "Description": [ + "Amal" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aad" + }, + { + "Type": 1, + "SubTag": "aae", + "Description": [ + "Arb\u00EBresh\u00EB Albanian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "sq", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aae" + }, + { + "Type": 1, + "SubTag": "aaf", + "Description": [ + "Aranadan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aaf" + }, + { + "Type": 1, + "SubTag": "aag", + "Description": [ + "Ambrak" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aag" + }, + { + "Type": 1, + "SubTag": "aah", + "Description": [ + "Abu\u0027 Arapesh" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aah" + }, + { + "Type": 1, + "SubTag": "aai", + "Description": [ + "Arifama-Miniafia" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aai" + }, + { + "Type": 1, + "SubTag": "aak", + "Description": [ + "Ankave" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aak" + }, + { + "Type": 1, + "SubTag": "aal", + "Description": [ + "Afade" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aal" + }, + { + "Type": 1, + "SubTag": "aam", + "Description": [ + "Aramanik" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2015-02-12", + "Comments": [], + "Prefix": [], + "PreferredValue": "aas", + "Tag": "", + "TagAny": "aam" + }, + { + "Type": 1, + "SubTag": "aan", + "Description": [ + "Anamb\u00E9" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aan" + }, + { + "Type": 1, + "SubTag": "aao", + "Description": [ + "Algerian Saharan Arabic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ar", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aao" + }, + { + "Type": 1, + "SubTag": "aap", + "Description": [ + "Par\u00E1 Ar\u00E1ra" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aap" + }, + { + "Type": 1, + "SubTag": "aaq", + "Description": [ + "Eastern Abnaki" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aaq" + }, + { + "Type": 1, + "SubTag": "aas", + "Description": [ + "Aas\u00E1x" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aas" + }, + { + "Type": 1, + "SubTag": "aat", + "Description": [ + "Arvanitika Albanian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "sq", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aat" + }, + { + "Type": 1, + "SubTag": "aau", + "Description": [ + "Abau" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aau" + }, + { + "Type": 1, + "SubTag": "aav", + "Description": [ + "Austro-Asiatic languages" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aav" + }, + { + "Type": 1, + "SubTag": "aaw", + "Description": [ + "Solong" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aaw" + }, + { + "Type": 1, + "SubTag": "aax", + "Description": [ + "Mandobo Atas" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aax" + }, + { + "Type": 1, + "SubTag": "aaz", + "Description": [ + "Amarasi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aaz" + }, + { + "Type": 1, + "SubTag": "aba", + "Description": [ + "Ab\u00E9" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aba" + }, + { + "Type": 1, + "SubTag": "abb", + "Description": [ + "Bankon" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "abb" + }, + { + "Type": 1, + "SubTag": "abc", + "Description": [ + "Ambala Ayta" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "abc" + }, + { + "Type": 1, + "SubTag": "abd", + "Description": [ + "Manide" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "abd" + }, + { + "Type": 1, + "SubTag": "abe", + "Description": [ + "Western Abnaki" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "abe" + }, + { + "Type": 1, + "SubTag": "abf", + "Description": [ + "Abai Sungai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "abf" + }, + { + "Type": 1, + "SubTag": "abg", + "Description": [ + "Abaga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "abg" + }, + { + "Type": 1, + "SubTag": "abh", + "Description": [ + "Tajiki Arabic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ar", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "abh" + }, + { + "Type": 1, + "SubTag": "abi", + "Description": [ + "Abidji" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "abi" + }, + { + "Type": 1, + "SubTag": "abj", + "Description": [ + "Aka-Bea" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "abj" + }, + { + "Type": 1, + "SubTag": "abl", + "Description": [ + "Lampung Nyo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "abl" + }, + { + "Type": 1, + "SubTag": "abm", + "Description": [ + "Abanyom" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "abm" + }, + { + "Type": 1, + "SubTag": "abn", + "Description": [ + "Abua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "abn" + }, + { + "Type": 1, + "SubTag": "abo", + "Description": [ + "Abon" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "abo" + }, + { + "Type": 1, + "SubTag": "abp", + "Description": [ + "Abellen Ayta" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "abp" + }, + { + "Type": 1, + "SubTag": "abq", + "Description": [ + "Abaza" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "abq" + }, + { + "Type": 1, + "SubTag": "abr", + "Description": [ + "Abron" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "abr" + }, + { + "Type": 1, + "SubTag": "abs", + "Description": [ + "Ambonese Malay" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "abs" + }, + { + "Type": 1, + "SubTag": "abt", + "Description": [ + "Ambulas" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "abt" + }, + { + "Type": 1, + "SubTag": "abu", + "Description": [ + "Abure" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "abu" + }, + { + "Type": 1, + "SubTag": "abv", + "Description": [ + "Baharna Arabic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ar", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "abv" + }, + { + "Type": 1, + "SubTag": "abw", + "Description": [ + "Pal" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "abw" + }, + { + "Type": 1, + "SubTag": "abx", + "Description": [ + "Inabaknon" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "abx" + }, + { + "Type": 1, + "SubTag": "aby", + "Description": [ + "Aneme Wake" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aby" + }, + { + "Type": 1, + "SubTag": "abz", + "Description": [ + "Abui" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "abz" + }, + { + "Type": 1, + "SubTag": "aca", + "Description": [ + "Achagua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aca" + }, + { + "Type": 1, + "SubTag": "acb", + "Description": [ + "\u00C1nc\u00E1" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "acb" + }, + { + "Type": 1, + "SubTag": "acd", + "Description": [ + "Gikyode" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "acd" + }, + { + "Type": 1, + "SubTag": "ace", + "Description": [ + "Achinese" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ace" + }, + { + "Type": 1, + "SubTag": "acf", + "Description": [ + "Saint Lucian Creole French" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "acf" + }, + { + "Type": 1, + "SubTag": "ach", + "Description": [ + "Acoli" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ach" + }, + { + "Type": 1, + "SubTag": "aci", + "Description": [ + "Aka-Cari" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aci" + }, + { + "Type": 1, + "SubTag": "ack", + "Description": [ + "Aka-Kora" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ack" + }, + { + "Type": 1, + "SubTag": "acl", + "Description": [ + "Akar-Bale" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "acl" + }, + { + "Type": 1, + "SubTag": "acm", + "Description": [ + "Mesopotamian Arabic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ar", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "acm" + }, + { + "Type": 1, + "SubTag": "acn", + "Description": [ + "Achang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "acn" + }, + { + "Type": 1, + "SubTag": "acp", + "Description": [ + "Eastern Acipa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "acp" + }, + { + "Type": 1, + "SubTag": "acq", + "Description": [ + "Ta\u0027izzi-Adeni Arabic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ar", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "acq" + }, + { + "Type": 1, + "SubTag": "acr", + "Description": [ + "Achi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "acr" + }, + { + "Type": 1, + "SubTag": "acs", + "Description": [ + "Acro\u00E1" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "acs" + }, + { + "Type": 1, + "SubTag": "act", + "Description": [ + "Achterhoeks" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "act" + }, + { + "Type": 1, + "SubTag": "acu", + "Description": [ + "Achuar-Shiwiar" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "acu" + }, + { + "Type": 1, + "SubTag": "acv", + "Description": [ + "Achumawi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "acv" + }, + { + "Type": 1, + "SubTag": "acw", + "Description": [ + "Hijazi Arabic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ar", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "acw" + }, + { + "Type": 1, + "SubTag": "acx", + "Description": [ + "Omani Arabic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ar", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "acx" + }, + { + "Type": 1, + "SubTag": "acy", + "Description": [ + "Cypriot Arabic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ar", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "acy" + }, + { + "Type": 1, + "SubTag": "acz", + "Description": [ + "Acheron" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "acz" + }, + { + "Type": 1, + "SubTag": "ada", + "Description": [ + "Adangme" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ada" + }, + { + "Type": 1, + "SubTag": "adb", + "Description": [ + "Atauran" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "adb" + }, + { + "Type": 1, + "SubTag": "add", + "Description": [ + "Lidzonka", + "Dzodinka" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "add" + }, + { + "Type": 1, + "SubTag": "ade", + "Description": [ + "Adele" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ade" + }, + { + "Type": 1, + "SubTag": "adf", + "Description": [ + "Dhofari Arabic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ar", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "adf" + }, + { + "Type": 1, + "SubTag": "adg", + "Description": [ + "Andegerebinha" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "adg" + }, + { + "Type": 1, + "SubTag": "adh", + "Description": [ + "Adhola" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "adh" + }, + { + "Type": 1, + "SubTag": "adi", + "Description": [ + "Adi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "adi" + }, + { + "Type": 1, + "SubTag": "adj", + "Description": [ + "Adioukrou" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "adj" + }, + { + "Type": 1, + "SubTag": "adl", + "Description": [ + "Galo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "adl" + }, + { + "Type": 1, + "SubTag": "adn", + "Description": [ + "Adang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "adn" + }, + { + "Type": 1, + "SubTag": "ado", + "Description": [ + "Abu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ado" + }, + { + "Type": 1, + "SubTag": "adp", + "Description": [ + "Adap" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2015-02-12", + "Comments": [], + "Prefix": [], + "PreferredValue": "dz", + "Tag": "", + "TagAny": "adp" + }, + { + "Type": 1, + "SubTag": "adq", + "Description": [ + "Adangbe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "adq" + }, + { + "Type": 1, + "SubTag": "adr", + "Description": [ + "Adonara" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "adr" + }, + { + "Type": 1, + "SubTag": "ads", + "Description": [ + "Adamorobe Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ads" + }, + { + "Type": 1, + "SubTag": "adt", + "Description": [ + "Adnyamathanha" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "adt" + }, + { + "Type": 1, + "SubTag": "adu", + "Description": [ + "Aduge" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "adu" + }, + { + "Type": 1, + "SubTag": "adw", + "Description": [ + "Amundava" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "adw" + }, + { + "Type": 1, + "SubTag": "adx", + "Description": [ + "Amdo Tibetan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "adx" + }, + { + "Type": 1, + "SubTag": "ady", + "Description": [ + "Adyghe", + "Adygei" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ady" + }, + { + "Type": 1, + "SubTag": "adz", + "Description": [ + "Adzera" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "adz" + }, + { + "Type": 1, + "SubTag": "aea", + "Description": [ + "Areba" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aea" + }, + { + "Type": 1, + "SubTag": "aeb", + "Description": [ + "Tunisian Arabic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ar", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aeb" + }, + { + "Type": 1, + "SubTag": "aec", + "Description": [ + "Saidi Arabic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ar", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aec" + }, + { + "Type": 1, + "SubTag": "aed", + "Description": [ + "Argentine Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aed" + }, + { + "Type": 1, + "SubTag": "aee", + "Description": [ + "Northeast Pashai", + "Northeast Pashayi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aee" + }, + { + "Type": 1, + "SubTag": "aek", + "Description": [ + "Haeke" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aek" + }, + { + "Type": 1, + "SubTag": "ael", + "Description": [ + "Ambele" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ael" + }, + { + "Type": 1, + "SubTag": "aem", + "Description": [ + "Arem" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aem" + }, + { + "Type": 1, + "SubTag": "aen", + "Description": [ + "Armenian Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aen" + }, + { + "Type": 1, + "SubTag": "aeq", + "Description": [ + "Aer" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aeq" + }, + { + "Type": 1, + "SubTag": "aer", + "Description": [ + "Eastern Arrernte" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aer" + }, + { + "Type": 1, + "SubTag": "aes", + "Description": [ + "Alsea" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aes" + }, + { + "Type": 1, + "SubTag": "aeu", + "Description": [ + "Akeu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aeu" + }, + { + "Type": 1, + "SubTag": "aew", + "Description": [ + "Ambakich" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aew" + }, + { + "Type": 1, + "SubTag": "aey", + "Description": [ + "Amele" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aey" + }, + { + "Type": 1, + "SubTag": "aez", + "Description": [ + "Aeka" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aez" + }, + { + "Type": 1, + "SubTag": "afa", + "Description": [ + "Afro-Asiatic languages" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "afa" + }, + { + "Type": 1, + "SubTag": "afb", + "Description": [ + "Gulf Arabic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ar", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "afb" + }, + { + "Type": 1, + "SubTag": "afd", + "Description": [ + "Andai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "afd" + }, + { + "Type": 1, + "SubTag": "afe", + "Description": [ + "Putukwam" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "afe" + }, + { + "Type": 1, + "SubTag": "afg", + "Description": [ + "Afghan Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "afg" + }, + { + "Type": 1, + "SubTag": "afh", + "Description": [ + "Afrihili" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "afh" + }, + { + "Type": 1, + "SubTag": "afi", + "Description": [ + "Akrukay", + "Chini" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "afi" + }, + { + "Type": 1, + "SubTag": "afk", + "Description": [ + "Nanubae" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "afk" + }, + { + "Type": 1, + "SubTag": "afn", + "Description": [ + "Defaka" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "afn" + }, + { + "Type": 1, + "SubTag": "afo", + "Description": [ + "Eloyi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "afo" + }, + { + "Type": 1, + "SubTag": "afp", + "Description": [ + "Tapei" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "afp" + }, + { + "Type": 1, + "SubTag": "afs", + "Description": [ + "Afro-Seminole Creole" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "afs" + }, + { + "Type": 1, + "SubTag": "aft", + "Description": [ + "Afitti" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aft" + }, + { + "Type": 1, + "SubTag": "afu", + "Description": [ + "Awutu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "afu" + }, + { + "Type": 1, + "SubTag": "afz", + "Description": [ + "Obokuitai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "afz" + }, + { + "Type": 1, + "SubTag": "aga", + "Description": [ + "Aguano" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aga" + }, + { + "Type": 1, + "SubTag": "agb", + "Description": [ + "Legbo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "agb" + }, + { + "Type": 1, + "SubTag": "agc", + "Description": [ + "Agatu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "agc" + }, + { + "Type": 1, + "SubTag": "agd", + "Description": [ + "Agarabi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "agd" + }, + { + "Type": 1, + "SubTag": "age", + "Description": [ + "Angal" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "age" + }, + { + "Type": 1, + "SubTag": "agf", + "Description": [ + "Arguni" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "agf" + }, + { + "Type": 1, + "SubTag": "agg", + "Description": [ + "Angor" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "agg" + }, + { + "Type": 1, + "SubTag": "agh", + "Description": [ + "Ngelima" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "agh" + }, + { + "Type": 1, + "SubTag": "agi", + "Description": [ + "Agariya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "agi" + }, + { + "Type": 1, + "SubTag": "agj", + "Description": [ + "Argobba" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "agj" + }, + { + "Type": 1, + "SubTag": "agk", + "Description": [ + "Isarog Agta" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "agk" + }, + { + "Type": 1, + "SubTag": "agl", + "Description": [ + "Fembe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "agl" + }, + { + "Type": 1, + "SubTag": "agm", + "Description": [ + "Angaataha" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "agm" + }, + { + "Type": 1, + "SubTag": "agn", + "Description": [ + "Agutaynen" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "agn" + }, + { + "Type": 1, + "SubTag": "ago", + "Description": [ + "Tainae" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ago" + }, + { + "Type": 1, + "SubTag": "agp", + "Description": [ + "Paranan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2010-03-11", + "Comments": [ + "see apf, prf" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "agp" + }, + { + "Type": 1, + "SubTag": "agq", + "Description": [ + "Aghem" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "agq" + }, + { + "Type": 1, + "SubTag": "agr", + "Description": [ + "Aguaruna" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "agr" + }, + { + "Type": 1, + "SubTag": "ags", + "Description": [ + "Esimbi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ags" + }, + { + "Type": 1, + "SubTag": "agt", + "Description": [ + "Central Cagayan Agta" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "agt" + }, + { + "Type": 1, + "SubTag": "agu", + "Description": [ + "Aguacateco" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "agu" + }, + { + "Type": 1, + "SubTag": "agv", + "Description": [ + "Remontado Dumagat" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "agv" + }, + { + "Type": 1, + "SubTag": "agw", + "Description": [ + "Kahua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "agw" + }, + { + "Type": 1, + "SubTag": "agx", + "Description": [ + "Aghul" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "agx" + }, + { + "Type": 1, + "SubTag": "agy", + "Description": [ + "Southern Alta" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "agy" + }, + { + "Type": 1, + "SubTag": "agz", + "Description": [ + "Mt. Iriga Agta" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "agz" + }, + { + "Type": 1, + "SubTag": "aha", + "Description": [ + "Ahanta" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aha" + }, + { + "Type": 1, + "SubTag": "ahb", + "Description": [ + "Axamb" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ahb" + }, + { + "Type": 1, + "SubTag": "ahg", + "Description": [ + "Qimant" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ahg" + }, + { + "Type": 1, + "SubTag": "ahh", + "Description": [ + "Aghu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ahh" + }, + { + "Type": 1, + "SubTag": "ahi", + "Description": [ + "Tiagbamrin Aizi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ahi" + }, + { + "Type": 1, + "SubTag": "ahk", + "Description": [ + "Akha" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ahk" + }, + { + "Type": 1, + "SubTag": "ahl", + "Description": [ + "Igo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ahl" + }, + { + "Type": 1, + "SubTag": "ahm", + "Description": [ + "Mobumrin Aizi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ahm" + }, + { + "Type": 1, + "SubTag": "ahn", + "Description": [ + "\u00C0h\u00E0n" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ahn" + }, + { + "Type": 1, + "SubTag": "aho", + "Description": [ + "Ahom" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aho" + }, + { + "Type": 1, + "SubTag": "ahp", + "Description": [ + "Aproumu Aizi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ahp" + }, + { + "Type": 1, + "SubTag": "ahr", + "Description": [ + "Ahirani" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ahr" + }, + { + "Type": 1, + "SubTag": "ahs", + "Description": [ + "Ashe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ahs" + }, + { + "Type": 1, + "SubTag": "aht", + "Description": [ + "Ahtena" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aht" + }, + { + "Type": 1, + "SubTag": "aia", + "Description": [ + "Arosi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aia" + }, + { + "Type": 1, + "SubTag": "aib", + "Description": [ + "Ainu (China)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aib" + }, + { + "Type": 1, + "SubTag": "aic", + "Description": [ + "Ainbai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aic" + }, + { + "Type": 1, + "SubTag": "aid", + "Description": [ + "Alngith" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aid" + }, + { + "Type": 1, + "SubTag": "aie", + "Description": [ + "Amara" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aie" + }, + { + "Type": 1, + "SubTag": "aif", + "Description": [ + "Agi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aif" + }, + { + "Type": 1, + "SubTag": "aig", + "Description": [ + "Antigua and Barbuda Creole English" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aig" + }, + { + "Type": 1, + "SubTag": "aih", + "Description": [ + "Ai-Cham" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aih" + }, + { + "Type": 1, + "SubTag": "aii", + "Description": [ + "Assyrian Neo-Aramaic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "syr", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aii" + }, + { + "Type": 1, + "SubTag": "aij", + "Description": [ + "Lishanid Noshan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aij" + }, + { + "Type": 1, + "SubTag": "aik", + "Description": [ + "Ake" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aik" + }, + { + "Type": 1, + "SubTag": "ail", + "Description": [ + "Aimele" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ail" + }, + { + "Type": 1, + "SubTag": "aim", + "Description": [ + "Aimol" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aim" + }, + { + "Type": 1, + "SubTag": "ain", + "Description": [ + "Ainu (Japan)" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ain" + }, + { + "Type": 1, + "SubTag": "aio", + "Description": [ + "Aiton" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aio" + }, + { + "Type": 1, + "SubTag": "aip", + "Description": [ + "Burumakok" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aip" + }, + { + "Type": 1, + "SubTag": "aiq", + "Description": [ + "Aimaq" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aiq" + }, + { + "Type": 1, + "SubTag": "air", + "Description": [ + "Airoran" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "air" + }, + { + "Type": 1, + "SubTag": "ais", + "Description": [ + "Nataoran Amis" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2019-04-16", + "Comments": [ + "see ami, szy" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ais" + }, + { + "Type": 1, + "SubTag": "ait", + "Description": [ + "Arikem" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ait" + }, + { + "Type": 1, + "SubTag": "aiw", + "Description": [ + "Aari" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aiw" + }, + { + "Type": 1, + "SubTag": "aix", + "Description": [ + "Aighon" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aix" + }, + { + "Type": 1, + "SubTag": "aiy", + "Description": [ + "Ali" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aiy" + }, + { + "Type": 1, + "SubTag": "aja", + "Description": [ + "Aja (South Sudan)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aja" + }, + { + "Type": 1, + "SubTag": "ajg", + "Description": [ + "Aja (Benin)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ajg" + }, + { + "Type": 1, + "SubTag": "aji", + "Description": [ + "Aji\u00EB" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aji" + }, + { + "Type": 1, + "SubTag": "ajn", + "Description": [ + "Andajin" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ajn" + }, + { + "Type": 1, + "SubTag": "ajp", + "Description": [ + "South Levantine Arabic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ar", + "Deprecated": "2023-03-17", + "Comments": [], + "Prefix": [], + "PreferredValue": "apc", + "Tag": "", + "TagAny": "ajp" + }, + { + "Type": 1, + "SubTag": "ajs", + "Description": [ + "Algerian Jewish Sign Language" + ], + "Added": "2022-02-25", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ajs" + }, + { + "Type": 1, + "SubTag": "ajt", + "Description": [ + "Judeo-Tunisian Arabic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "jrb", + "Deprecated": "2022-02-25", + "Comments": [], + "Prefix": [], + "PreferredValue": "aeb", + "Tag": "", + "TagAny": "ajt" + }, + { + "Type": 1, + "SubTag": "aju", + "Description": [ + "Judeo-Moroccan Arabic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "jrb", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aju" + }, + { + "Type": 1, + "SubTag": "ajw", + "Description": [ + "Ajawa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ajw" + }, + { + "Type": 1, + "SubTag": "ajz", + "Description": [ + "Amri Karbi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ajz" + }, + { + "Type": 1, + "SubTag": "akb", + "Description": [ + "Batak Angkola" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "akb" + }, + { + "Type": 1, + "SubTag": "akc", + "Description": [ + "Mpur" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "akc" + }, + { + "Type": 1, + "SubTag": "akd", + "Description": [ + "Ukpet-Ehom" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "akd" + }, + { + "Type": 1, + "SubTag": "ake", + "Description": [ + "Akawaio" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ake" + }, + { + "Type": 1, + "SubTag": "akf", + "Description": [ + "Akpa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "akf" + }, + { + "Type": 1, + "SubTag": "akg", + "Description": [ + "Anakalangu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "akg" + }, + { + "Type": 1, + "SubTag": "akh", + "Description": [ + "Angal Heneng" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "akh" + }, + { + "Type": 1, + "SubTag": "aki", + "Description": [ + "Aiome" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aki" + }, + { + "Type": 1, + "SubTag": "akj", + "Description": [ + "Aka-Jeru" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "akj" + }, + { + "Type": 1, + "SubTag": "akk", + "Description": [ + "Akkadian" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "akk" + }, + { + "Type": 1, + "SubTag": "akl", + "Description": [ + "Aklanon" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "akl" + }, + { + "Type": 1, + "SubTag": "akm", + "Description": [ + "Aka-Bo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "akm" + }, + { + "Type": 1, + "SubTag": "ako", + "Description": [ + "Akurio" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ako" + }, + { + "Type": 1, + "SubTag": "akp", + "Description": [ + "Siwu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "akp" + }, + { + "Type": 1, + "SubTag": "akq", + "Description": [ + "Ak" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "akq" + }, + { + "Type": 1, + "SubTag": "akr", + "Description": [ + "Araki" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "akr" + }, + { + "Type": 1, + "SubTag": "aks", + "Description": [ + "Akaselem" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aks" + }, + { + "Type": 1, + "SubTag": "akt", + "Description": [ + "Akolet" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "akt" + }, + { + "Type": 1, + "SubTag": "aku", + "Description": [ + "Akum" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aku" + }, + { + "Type": 1, + "SubTag": "akv", + "Description": [ + "Akhvakh" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "akv" + }, + { + "Type": 1, + "SubTag": "akw", + "Description": [ + "Akwa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "akw" + }, + { + "Type": 1, + "SubTag": "akx", + "Description": [ + "Aka-Kede" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "akx" + }, + { + "Type": 1, + "SubTag": "aky", + "Description": [ + "Aka-Kol" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aky" + }, + { + "Type": 1, + "SubTag": "akz", + "Description": [ + "Alabama" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "akz" + }, + { + "Type": 1, + "SubTag": "ala", + "Description": [ + "Alago" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ala" + }, + { + "Type": 1, + "SubTag": "alc", + "Description": [ + "Qawasqar" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "alc" + }, + { + "Type": 1, + "SubTag": "ald", + "Description": [ + "Alladian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ald" + }, + { + "Type": 1, + "SubTag": "ale", + "Description": [ + "Aleut" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ale" + }, + { + "Type": 1, + "SubTag": "alf", + "Description": [ + "Alege" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "alf" + }, + { + "Type": 1, + "SubTag": "alg", + "Description": [ + "Algonquian languages" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "alg" + }, + { + "Type": 1, + "SubTag": "alh", + "Description": [ + "Alawa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "alh" + }, + { + "Type": 1, + "SubTag": "ali", + "Description": [ + "Amaimon" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ali" + }, + { + "Type": 1, + "SubTag": "alj", + "Description": [ + "Alangan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "alj" + }, + { + "Type": 1, + "SubTag": "alk", + "Description": [ + "Alak" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "alk" + }, + { + "Type": 1, + "SubTag": "all", + "Description": [ + "Allar" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "all" + }, + { + "Type": 1, + "SubTag": "alm", + "Description": [ + "Amblong" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "alm" + }, + { + "Type": 1, + "SubTag": "aln", + "Description": [ + "Gheg Albanian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "sq", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aln" + }, + { + "Type": 1, + "SubTag": "alo", + "Description": [ + "Larike-Wakasihu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "alo" + }, + { + "Type": 1, + "SubTag": "alp", + "Description": [ + "Alune" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "alp" + }, + { + "Type": 1, + "SubTag": "alq", + "Description": [ + "Algonquin" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "alq" + }, + { + "Type": 1, + "SubTag": "alr", + "Description": [ + "Alutor" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "alr" + }, + { + "Type": 1, + "SubTag": "als", + "Description": [ + "Tosk Albanian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "sq", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "als" + }, + { + "Type": 1, + "SubTag": "alt", + "Description": [ + "Southern Altai" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "alt" + }, + { + "Type": 1, + "SubTag": "alu", + "Description": [ + "\u0027Are\u0027are" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "alu" + }, + { + "Type": 1, + "SubTag": "alv", + "Description": [ + "Atlantic-Congo languages" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "alv" + }, + { + "Type": 1, + "SubTag": "alw", + "Description": [ + "Alaba-K\u2019abeena", + "Wanbasana" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "alw" + }, + { + "Type": 1, + "SubTag": "alx", + "Description": [ + "Amol" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "alx" + }, + { + "Type": 1, + "SubTag": "aly", + "Description": [ + "Alyawarr" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aly" + }, + { + "Type": 1, + "SubTag": "alz", + "Description": [ + "Alur" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "alz" + }, + { + "Type": 1, + "SubTag": "ama", + "Description": [ + "Amanay\u00E9" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ama" + }, + { + "Type": 1, + "SubTag": "amb", + "Description": [ + "Ambo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "amb" + }, + { + "Type": 1, + "SubTag": "amc", + "Description": [ + "Amahuaca" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "amc" + }, + { + "Type": 1, + "SubTag": "ame", + "Description": [ + "Yanesha\u0027" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ame" + }, + { + "Type": 1, + "SubTag": "amf", + "Description": [ + "Hamer-Banna" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "amf" + }, + { + "Type": 1, + "SubTag": "amg", + "Description": [ + "Amurdak" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "amg" + }, + { + "Type": 1, + "SubTag": "ami", + "Description": [ + "Amis" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ami" + }, + { + "Type": 1, + "SubTag": "amj", + "Description": [ + "Amdang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "amj" + }, + { + "Type": 1, + "SubTag": "amk", + "Description": [ + "Ambai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "amk" + }, + { + "Type": 1, + "SubTag": "aml", + "Description": [ + "War-Jaintia" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aml" + }, + { + "Type": 1, + "SubTag": "amm", + "Description": [ + "Ama (Papua New Guinea)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "amm" + }, + { + "Type": 1, + "SubTag": "amn", + "Description": [ + "Amanab" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "amn" + }, + { + "Type": 1, + "SubTag": "amo", + "Description": [ + "Amo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "amo" + }, + { + "Type": 1, + "SubTag": "amp", + "Description": [ + "Alamblak" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "amp" + }, + { + "Type": 1, + "SubTag": "amq", + "Description": [ + "Amahai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "amq" + }, + { + "Type": 1, + "SubTag": "amr", + "Description": [ + "Amarakaeri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "amr" + }, + { + "Type": 1, + "SubTag": "ams", + "Description": [ + "Southern Amami-Oshima" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ams" + }, + { + "Type": 1, + "SubTag": "amt", + "Description": [ + "Amto" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "amt" + }, + { + "Type": 1, + "SubTag": "amu", + "Description": [ + "Guerrero Amuzgo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "amu" + }, + { + "Type": 1, + "SubTag": "amv", + "Description": [ + "Ambelau" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "amv" + }, + { + "Type": 1, + "SubTag": "amw", + "Description": [ + "Western Neo-Aramaic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "amw" + }, + { + "Type": 1, + "SubTag": "amx", + "Description": [ + "Anmatyerre" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "amx" + }, + { + "Type": 1, + "SubTag": "amy", + "Description": [ + "Ami" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "amy" + }, + { + "Type": 1, + "SubTag": "amz", + "Description": [ + "Atampaya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "amz" + }, + { + "Type": 1, + "SubTag": "ana", + "Description": [ + "Andaqui" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ana" + }, + { + "Type": 1, + "SubTag": "anb", + "Description": [ + "Andoa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "anb" + }, + { + "Type": 1, + "SubTag": "anc", + "Description": [ + "Ngas" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "anc" + }, + { + "Type": 1, + "SubTag": "and", + "Description": [ + "Ansus" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "and" + }, + { + "Type": 1, + "SubTag": "ane", + "Description": [ + "X\u00E2r\u00E2c\u00F9\u00F9" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ane" + }, + { + "Type": 1, + "SubTag": "anf", + "Description": [ + "Animere" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "anf" + }, + { + "Type": 1, + "SubTag": "ang", + "Description": [ + "Old English (ca. 450-1100)" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ang" + }, + { + "Type": 1, + "SubTag": "anh", + "Description": [ + "Nend" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "anh" + }, + { + "Type": 1, + "SubTag": "ani", + "Description": [ + "Andi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ani" + }, + { + "Type": 1, + "SubTag": "anj", + "Description": [ + "Anor" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "anj" + }, + { + "Type": 1, + "SubTag": "ank", + "Description": [ + "Goemai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ank" + }, + { + "Type": 1, + "SubTag": "anl", + "Description": [ + "Anu-Hkongso Chin" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "anl" + }, + { + "Type": 1, + "SubTag": "anm", + "Description": [ + "Anal" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "anm" + }, + { + "Type": 1, + "SubTag": "ann", + "Description": [ + "Obolo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ann" + }, + { + "Type": 1, + "SubTag": "ano", + "Description": [ + "Andoque" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ano" + }, + { + "Type": 1, + "SubTag": "anp", + "Description": [ + "Angika" + ], + "Added": "2006-03-08", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "anp" + }, + { + "Type": 1, + "SubTag": "anq", + "Description": [ + "Jarawa (India)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "anq" + }, + { + "Type": 1, + "SubTag": "anr", + "Description": [ + "Andh" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "anr" + }, + { + "Type": 1, + "SubTag": "ans", + "Description": [ + "Anserma" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ans" + }, + { + "Type": 1, + "SubTag": "ant", + "Description": [ + "Antakarinya", + "Antikarinya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ant" + }, + { + "Type": 1, + "SubTag": "anu", + "Description": [ + "Anuak" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "anu" + }, + { + "Type": 1, + "SubTag": "anv", + "Description": [ + "Denya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "anv" + }, + { + "Type": 1, + "SubTag": "anw", + "Description": [ + "Anaang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "anw" + }, + { + "Type": 1, + "SubTag": "anx", + "Description": [ + "Andra-Hus" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "anx" + }, + { + "Type": 1, + "SubTag": "any", + "Description": [ + "Anyin" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "any" + }, + { + "Type": 1, + "SubTag": "anz", + "Description": [ + "Anem" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "anz" + }, + { + "Type": 1, + "SubTag": "aoa", + "Description": [ + "Angolar" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aoa" + }, + { + "Type": 1, + "SubTag": "aob", + "Description": [ + "Abom" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aob" + }, + { + "Type": 1, + "SubTag": "aoc", + "Description": [ + "Pemon" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aoc" + }, + { + "Type": 1, + "SubTag": "aod", + "Description": [ + "Andarum" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aod" + }, + { + "Type": 1, + "SubTag": "aoe", + "Description": [ + "Angal Enen" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aoe" + }, + { + "Type": 1, + "SubTag": "aof", + "Description": [ + "Bragat" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aof" + }, + { + "Type": 1, + "SubTag": "aog", + "Description": [ + "Angoram" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aog" + }, + { + "Type": 1, + "SubTag": "aoh", + "Description": [ + "Arma" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2020-03-28", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aoh" + }, + { + "Type": 1, + "SubTag": "aoi", + "Description": [ + "Anindilyakwa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aoi" + }, + { + "Type": 1, + "SubTag": "aoj", + "Description": [ + "Mufian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aoj" + }, + { + "Type": 1, + "SubTag": "aok", + "Description": [ + "Arh\u00F6" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aok" + }, + { + "Type": 1, + "SubTag": "aol", + "Description": [ + "Alor" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aol" + }, + { + "Type": 1, + "SubTag": "aom", + "Description": [ + "\u00D6mie" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aom" + }, + { + "Type": 1, + "SubTag": "aon", + "Description": [ + "Bumbita Arapesh" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aon" + }, + { + "Type": 1, + "SubTag": "aor", + "Description": [ + "Aore" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aor" + }, + { + "Type": 1, + "SubTag": "aos", + "Description": [ + "Taikat" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aos" + }, + { + "Type": 1, + "SubTag": "aot", + "Description": [ + "Atong (India)", + "A\u0027tong" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aot" + }, + { + "Type": 1, + "SubTag": "aou", + "Description": [ + "A\u0027ou" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aou" + }, + { + "Type": 1, + "SubTag": "aox", + "Description": [ + "Atorada" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aox" + }, + { + "Type": 1, + "SubTag": "aoz", + "Description": [ + "Uab Meto" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aoz" + }, + { + "Type": 1, + "SubTag": "apa", + "Description": [ + "Apache languages" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "apa" + }, + { + "Type": 1, + "SubTag": "apb", + "Description": [ + "Sa\u0027a" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "apb" + }, + { + "Type": 1, + "SubTag": "apc", + "Description": [ + "Levantine Arabic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ar", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "apc" + }, + { + "Type": 1, + "SubTag": "apd", + "Description": [ + "Sudanese Arabic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ar", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "apd" + }, + { + "Type": 1, + "SubTag": "ape", + "Description": [ + "Bukiyip" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ape" + }, + { + "Type": 1, + "SubTag": "apf", + "Description": [ + "Pahanan Agta" + ], + "Added": "2010-03-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "apf" + }, + { + "Type": 1, + "SubTag": "apg", + "Description": [ + "Ampanang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "apg" + }, + { + "Type": 1, + "SubTag": "aph", + "Description": [ + "Athpariya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aph" + }, + { + "Type": 1, + "SubTag": "api", + "Description": [ + "Apiak\u00E1" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "api" + }, + { + "Type": 1, + "SubTag": "apj", + "Description": [ + "Jicarilla Apache" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "apj" + }, + { + "Type": 1, + "SubTag": "apk", + "Description": [ + "Kiowa Apache" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "apk" + }, + { + "Type": 1, + "SubTag": "apl", + "Description": [ + "Lipan Apache" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "apl" + }, + { + "Type": 1, + "SubTag": "apm", + "Description": [ + "Mescalero-Chiricahua Apache" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "apm" + }, + { + "Type": 1, + "SubTag": "apn", + "Description": [ + "Apinay\u00E9" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "apn" + }, + { + "Type": 1, + "SubTag": "apo", + "Description": [ + "Ambul" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "apo" + }, + { + "Type": 1, + "SubTag": "app", + "Description": [ + "Apma" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "app" + }, + { + "Type": 1, + "SubTag": "apq", + "Description": [ + "A-Pucikwar" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "apq" + }, + { + "Type": 1, + "SubTag": "apr", + "Description": [ + "Arop-Lokep" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "apr" + }, + { + "Type": 1, + "SubTag": "aps", + "Description": [ + "Arop-Sissano" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aps" + }, + { + "Type": 1, + "SubTag": "apt", + "Description": [ + "Apatani" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "apt" + }, + { + "Type": 1, + "SubTag": "apu", + "Description": [ + "Apurin\u00E3" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "apu" + }, + { + "Type": 1, + "SubTag": "apv", + "Description": [ + "Alapmunte" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "apv" + }, + { + "Type": 1, + "SubTag": "apw", + "Description": [ + "Western Apache" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "apw" + }, + { + "Type": 1, + "SubTag": "apx", + "Description": [ + "Aputai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "apx" + }, + { + "Type": 1, + "SubTag": "apy", + "Description": [ + "Apala\u00ED" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "apy" + }, + { + "Type": 1, + "SubTag": "apz", + "Description": [ + "Safeyoka" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "apz" + }, + { + "Type": 1, + "SubTag": "aqa", + "Description": [ + "Alacalufan languages" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aqa" + }, + { + "Type": 1, + "SubTag": "aqc", + "Description": [ + "Archi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aqc" + }, + { + "Type": 1, + "SubTag": "aqd", + "Description": [ + "Ampari Dogon" + ], + "Added": "2011-08-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aqd" + }, + { + "Type": 1, + "SubTag": "aqg", + "Description": [ + "Arigidi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aqg" + }, + { + "Type": 1, + "SubTag": "aqk", + "Description": [ + "Aninka" + ], + "Added": "2021-02-20", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aqk" + }, + { + "Type": 1, + "SubTag": "aql", + "Description": [ + "Algic languages" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aql" + }, + { + "Type": 1, + "SubTag": "aqm", + "Description": [ + "Atohwaim" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aqm" + }, + { + "Type": 1, + "SubTag": "aqn", + "Description": [ + "Northern Alta" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aqn" + }, + { + "Type": 1, + "SubTag": "aqp", + "Description": [ + "Atakapa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aqp" + }, + { + "Type": 1, + "SubTag": "aqr", + "Description": [ + "Arh\u00E2" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aqr" + }, + { + "Type": 1, + "SubTag": "aqt", + "Description": [ + "Angait\u00E9" + ], + "Added": "2014-02-28", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aqt" + }, + { + "Type": 1, + "SubTag": "aqz", + "Description": [ + "Akuntsu" + ], + "Added": "2010-03-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aqz" + }, + { + "Type": 1, + "SubTag": "arb", + "Description": [ + "Standard Arabic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ar", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "arb" + }, + { + "Type": 1, + "SubTag": "arc", + "Description": [ + "Official Aramaic (700-300 BCE)", + "Imperial Aramaic (700-300 BCE)" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "arc" + }, + { + "Type": 1, + "SubTag": "ard", + "Description": [ + "Arabana" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ard" + }, + { + "Type": 1, + "SubTag": "are", + "Description": [ + "Western Arrarnta" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "are" + }, + { + "Type": 1, + "SubTag": "arh", + "Description": [ + "Arhuaco" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "arh" + }, + { + "Type": 1, + "SubTag": "ari", + "Description": [ + "Arikara" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ari" + }, + { + "Type": 1, + "SubTag": "arj", + "Description": [ + "Arapaso" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "arj" + }, + { + "Type": 1, + "SubTag": "ark", + "Description": [ + "Arikap\u00FA" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ark" + }, + { + "Type": 1, + "SubTag": "arl", + "Description": [ + "Arabela" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "arl" + }, + { + "Type": 1, + "SubTag": "arn", + "Description": [ + "Mapudungun", + "Mapuche" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "arn" + }, + { + "Type": 1, + "SubTag": "aro", + "Description": [ + "Araona" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aro" + }, + { + "Type": 1, + "SubTag": "arp", + "Description": [ + "Arapaho" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "arp" + }, + { + "Type": 1, + "SubTag": "arq", + "Description": [ + "Algerian Arabic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ar", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "arq" + }, + { + "Type": 1, + "SubTag": "arr", + "Description": [ + "Karo (Brazil)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "arr" + }, + { + "Type": 1, + "SubTag": "ars", + "Description": [ + "Najdi Arabic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ar", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ars" + }, + { + "Type": 1, + "SubTag": "art", + "Description": [ + "Artificial languages" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "art" + }, + { + "Type": 1, + "SubTag": "aru", + "Description": [ + "Aru\u00E1 (Amazonas State)", + "Araw\u00E1" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aru" + }, + { + "Type": 1, + "SubTag": "arv", + "Description": [ + "Arbore" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "arv" + }, + { + "Type": 1, + "SubTag": "arw", + "Description": [ + "Arawak" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "arw" + }, + { + "Type": 1, + "SubTag": "arx", + "Description": [ + "Aru\u00E1 (Rodonia State)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "arx" + }, + { + "Type": 1, + "SubTag": "ary", + "Description": [ + "Moroccan Arabic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ar", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ary" + }, + { + "Type": 1, + "SubTag": "arz", + "Description": [ + "Egyptian Arabic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ar", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "arz" + }, + { + "Type": 1, + "SubTag": "asa", + "Description": [ + "Asu (Tanzania)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "asa" + }, + { + "Type": 1, + "SubTag": "asb", + "Description": [ + "Assiniboine" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "asb" + }, + { + "Type": 1, + "SubTag": "asc", + "Description": [ + "Casuarina Coast Asmat" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "asc" + }, + { + "Type": 1, + "SubTag": "asd", + "Description": [ + "Asas" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2019-04-16", + "Comments": [], + "Prefix": [], + "PreferredValue": "snz", + "Tag": "", + "TagAny": "asd" + }, + { + "Type": 1, + "SubTag": "ase", + "Description": [ + "American Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ase" + }, + { + "Type": 1, + "SubTag": "asf", + "Description": [ + "Auslan", + "Australian Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "asf" + }, + { + "Type": 1, + "SubTag": "asg", + "Description": [ + "Cishingini" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "asg" + }, + { + "Type": 1, + "SubTag": "ash", + "Description": [ + "Abishira" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ash" + }, + { + "Type": 1, + "SubTag": "asi", + "Description": [ + "Buruwai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "asi" + }, + { + "Type": 1, + "SubTag": "asj", + "Description": [ + "Sari" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "asj" + }, + { + "Type": 1, + "SubTag": "ask", + "Description": [ + "Ashkun" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ask" + }, + { + "Type": 1, + "SubTag": "asl", + "Description": [ + "Asilulu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "asl" + }, + { + "Type": 1, + "SubTag": "asn", + "Description": [ + "Xing\u00FA Asurin\u00ED" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "asn" + }, + { + "Type": 1, + "SubTag": "aso", + "Description": [ + "Dano" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aso" + }, + { + "Type": 1, + "SubTag": "asp", + "Description": [ + "Algerian Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "asp" + }, + { + "Type": 1, + "SubTag": "asq", + "Description": [ + "Austrian Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "asq" + }, + { + "Type": 1, + "SubTag": "asr", + "Description": [ + "Asuri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "asr" + }, + { + "Type": 1, + "SubTag": "ass", + "Description": [ + "Ipulo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ass" + }, + { + "Type": 1, + "SubTag": "ast", + "Description": [ + "Asturian", + "Asturleonese", + "Bable", + "Leonese" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ast" + }, + { + "Type": 1, + "SubTag": "asu", + "Description": [ + "Tocantins Asurini" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "asu" + }, + { + "Type": 1, + "SubTag": "asv", + "Description": [ + "Asoa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "asv" + }, + { + "Type": 1, + "SubTag": "asw", + "Description": [ + "Australian Aborigines Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "asw" + }, + { + "Type": 1, + "SubTag": "asx", + "Description": [ + "Muratayak" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "asx" + }, + { + "Type": 1, + "SubTag": "asy", + "Description": [ + "Yaosakor Asmat" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "asy" + }, + { + "Type": 1, + "SubTag": "asz", + "Description": [ + "As" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "asz" + }, + { + "Type": 1, + "SubTag": "ata", + "Description": [ + "Pele-Ata" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ata" + }, + { + "Type": 1, + "SubTag": "atb", + "Description": [ + "Zaiwa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "atb" + }, + { + "Type": 1, + "SubTag": "atc", + "Description": [ + "Atsahuaca" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "atc" + }, + { + "Type": 1, + "SubTag": "atd", + "Description": [ + "Ata Manobo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "atd" + }, + { + "Type": 1, + "SubTag": "ate", + "Description": [ + "Atemble" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ate" + }, + { + "Type": 1, + "SubTag": "atg", + "Description": [ + "Ivbie North-Okpela-Arhe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "atg" + }, + { + "Type": 1, + "SubTag": "ath", + "Description": [ + "Athapascan languages" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ath" + }, + { + "Type": 1, + "SubTag": "ati", + "Description": [ + "Atti\u00E9" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ati" + }, + { + "Type": 1, + "SubTag": "atj", + "Description": [ + "Atikamekw" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "atj" + }, + { + "Type": 1, + "SubTag": "atk", + "Description": [ + "Ati" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "atk" + }, + { + "Type": 1, + "SubTag": "atl", + "Description": [ + "Mt. Iraya Agta" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "atl" + }, + { + "Type": 1, + "SubTag": "atm", + "Description": [ + "Ata" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "atm" + }, + { + "Type": 1, + "SubTag": "atn", + "Description": [ + "Ashtiani" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "atn" + }, + { + "Type": 1, + "SubTag": "ato", + "Description": [ + "Atong (Cameroon)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ato" + }, + { + "Type": 1, + "SubTag": "atp", + "Description": [ + "Pudtol Atta" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "atp" + }, + { + "Type": 1, + "SubTag": "atq", + "Description": [ + "Aralle-Tabulahan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "atq" + }, + { + "Type": 1, + "SubTag": "atr", + "Description": [ + "Waimiri-Atroari" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "atr" + }, + { + "Type": 1, + "SubTag": "ats", + "Description": [ + "Gros Ventre" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ats" + }, + { + "Type": 1, + "SubTag": "att", + "Description": [ + "Pamplona Atta" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "att" + }, + { + "Type": 1, + "SubTag": "atu", + "Description": [ + "Reel" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "atu" + }, + { + "Type": 1, + "SubTag": "atv", + "Description": [ + "Northern Altai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "atv" + }, + { + "Type": 1, + "SubTag": "atw", + "Description": [ + "Atsugewi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "atw" + }, + { + "Type": 1, + "SubTag": "atx", + "Description": [ + "Arutani" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "atx" + }, + { + "Type": 1, + "SubTag": "aty", + "Description": [ + "Aneityum" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aty" + }, + { + "Type": 1, + "SubTag": "atz", + "Description": [ + "Arta" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "atz" + }, + { + "Type": 1, + "SubTag": "aua", + "Description": [ + "Asumboa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aua" + }, + { + "Type": 1, + "SubTag": "aub", + "Description": [ + "Alugu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aub" + }, + { + "Type": 1, + "SubTag": "auc", + "Description": [ + "Waorani" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "auc" + }, + { + "Type": 1, + "SubTag": "aud", + "Description": [ + "Anuta" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aud" + }, + { + "Type": 1, + "SubTag": "aue", + "Description": [ + "\u01C2Kx\u02BCau\u01C1\u02BCein" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2015-02-12", + "Comments": [], + "Prefix": [], + "PreferredValue": "ktz", + "Tag": "", + "TagAny": "aue" + }, + { + "Type": 1, + "SubTag": "auf", + "Description": [ + "Arauan languages" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "auf" + }, + { + "Type": 1, + "SubTag": "aug", + "Description": [ + "Aguna" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aug" + }, + { + "Type": 1, + "SubTag": "auh", + "Description": [ + "Aushi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "auh" + }, + { + "Type": 1, + "SubTag": "aui", + "Description": [ + "Anuki" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aui" + }, + { + "Type": 1, + "SubTag": "auj", + "Description": [ + "Awjilah" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "auj" + }, + { + "Type": 1, + "SubTag": "auk", + "Description": [ + "Heyo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "auk" + }, + { + "Type": 1, + "SubTag": "aul", + "Description": [ + "Aulua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aul" + }, + { + "Type": 1, + "SubTag": "aum", + "Description": [ + "Asu (Nigeria)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aum" + }, + { + "Type": 1, + "SubTag": "aun", + "Description": [ + "Molmo One" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aun" + }, + { + "Type": 1, + "SubTag": "auo", + "Description": [ + "Auyokawa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "auo" + }, + { + "Type": 1, + "SubTag": "aup", + "Description": [ + "Makayam" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aup" + }, + { + "Type": 1, + "SubTag": "auq", + "Description": [ + "Anus", + "Korur" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "auq" + }, + { + "Type": 1, + "SubTag": "aur", + "Description": [ + "Aruek" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aur" + }, + { + "Type": 1, + "SubTag": "aus", + "Description": [ + "Australian languages" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aus" + }, + { + "Type": 1, + "SubTag": "aut", + "Description": [ + "Austral" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aut" + }, + { + "Type": 1, + "SubTag": "auu", + "Description": [ + "Auye" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "auu" + }, + { + "Type": 1, + "SubTag": "auw", + "Description": [ + "Awyi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "auw" + }, + { + "Type": 1, + "SubTag": "aux", + "Description": [ + "Aur\u00E1" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aux" + }, + { + "Type": 1, + "SubTag": "auy", + "Description": [ + "Awiyaana" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "auy" + }, + { + "Type": 1, + "SubTag": "auz", + "Description": [ + "Uzbeki Arabic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ar", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "auz" + }, + { + "Type": 1, + "SubTag": "avb", + "Description": [ + "Avau" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "avb" + }, + { + "Type": 1, + "SubTag": "avd", + "Description": [ + "Alviri-Vidari" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "avd" + }, + { + "Type": 1, + "SubTag": "avi", + "Description": [ + "Avikam" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "avi" + }, + { + "Type": 1, + "SubTag": "avk", + "Description": [ + "Kotava" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "avk" + }, + { + "Type": 1, + "SubTag": "avl", + "Description": [ + "Eastern Egyptian Bedawi Arabic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ar", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "avl" + }, + { + "Type": 1, + "SubTag": "avm", + "Description": [ + "Angkamuthi" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "avm" + }, + { + "Type": 1, + "SubTag": "avn", + "Description": [ + "Avatime" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "avn" + }, + { + "Type": 1, + "SubTag": "avo", + "Description": [ + "Agavotaguerra" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "avo" + }, + { + "Type": 1, + "SubTag": "avs", + "Description": [ + "Aushiri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "avs" + }, + { + "Type": 1, + "SubTag": "avt", + "Description": [ + "Au" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "avt" + }, + { + "Type": 1, + "SubTag": "avu", + "Description": [ + "Avokaya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "avu" + }, + { + "Type": 1, + "SubTag": "avv", + "Description": [ + "Av\u00E1-Canoeiro" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "avv" + }, + { + "Type": 1, + "SubTag": "awa", + "Description": [ + "Awadhi" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "awa" + }, + { + "Type": 1, + "SubTag": "awb", + "Description": [ + "Awa (Papua New Guinea)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "awb" + }, + { + "Type": 1, + "SubTag": "awc", + "Description": [ + "Cicipu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "awc" + }, + { + "Type": 1, + "SubTag": "awd", + "Description": [ + "Arawakan languages" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "awd" + }, + { + "Type": 1, + "SubTag": "awe", + "Description": [ + "Awet\u00ED" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "awe" + }, + { + "Type": 1, + "SubTag": "awg", + "Description": [ + "Anguthimri" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "awg" + }, + { + "Type": 1, + "SubTag": "awh", + "Description": [ + "Awbono" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "awh" + }, + { + "Type": 1, + "SubTag": "awi", + "Description": [ + "Aekyom" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "awi" + }, + { + "Type": 1, + "SubTag": "awk", + "Description": [ + "Awabakal" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "awk" + }, + { + "Type": 1, + "SubTag": "awm", + "Description": [ + "Arawum" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "awm" + }, + { + "Type": 1, + "SubTag": "awn", + "Description": [ + "Awngi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "awn" + }, + { + "Type": 1, + "SubTag": "awo", + "Description": [ + "Awak" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "awo" + }, + { + "Type": 1, + "SubTag": "awr", + "Description": [ + "Awera" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "awr" + }, + { + "Type": 1, + "SubTag": "aws", + "Description": [ + "South Awyu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aws" + }, + { + "Type": 1, + "SubTag": "awt", + "Description": [ + "Arawet\u00E9" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "awt" + }, + { + "Type": 1, + "SubTag": "awu", + "Description": [ + "Central Awyu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "awu" + }, + { + "Type": 1, + "SubTag": "awv", + "Description": [ + "Jair Awyu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "awv" + }, + { + "Type": 1, + "SubTag": "aww", + "Description": [ + "Awun" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aww" + }, + { + "Type": 1, + "SubTag": "awx", + "Description": [ + "Awara" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "awx" + }, + { + "Type": 1, + "SubTag": "awy", + "Description": [ + "Edera Awyu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "awy" + }, + { + "Type": 1, + "SubTag": "axb", + "Description": [ + "Abipon" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "axb" + }, + { + "Type": 1, + "SubTag": "axe", + "Description": [ + "Ayerrerenge" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "axe" + }, + { + "Type": 1, + "SubTag": "axg", + "Description": [ + "Mato Grosso Ar\u00E1ra" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "axg" + }, + { + "Type": 1, + "SubTag": "axk", + "Description": [ + "Yaka (Central African Republic)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "axk" + }, + { + "Type": 1, + "SubTag": "axl", + "Description": [ + "Lower Southern Aranda" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "axl" + }, + { + "Type": 1, + "SubTag": "axm", + "Description": [ + "Middle Armenian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "axm" + }, + { + "Type": 1, + "SubTag": "axx", + "Description": [ + "X\u00E2r\u00E2gur\u00E8" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "axx" + }, + { + "Type": 1, + "SubTag": "aya", + "Description": [ + "Awar" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aya" + }, + { + "Type": 1, + "SubTag": "ayb", + "Description": [ + "Ayizo Gbe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ayb" + }, + { + "Type": 1, + "SubTag": "ayc", + "Description": [ + "Southern Aymara" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ay", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ayc" + }, + { + "Type": 1, + "SubTag": "ayd", + "Description": [ + "Ayabadhu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ayd" + }, + { + "Type": 1, + "SubTag": "aye", + "Description": [ + "Ayere" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aye" + }, + { + "Type": 1, + "SubTag": "ayg", + "Description": [ + "Ginyanga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ayg" + }, + { + "Type": 1, + "SubTag": "ayh", + "Description": [ + "Hadrami Arabic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ar", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ayh" + }, + { + "Type": 1, + "SubTag": "ayi", + "Description": [ + "Leyigha" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ayi" + }, + { + "Type": 1, + "SubTag": "ayk", + "Description": [ + "Akuku" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ayk" + }, + { + "Type": 1, + "SubTag": "ayl", + "Description": [ + "Libyan Arabic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ar", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ayl" + }, + { + "Type": 1, + "SubTag": "ayn", + "Description": [ + "Sanaani Arabic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ar", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ayn" + }, + { + "Type": 1, + "SubTag": "ayo", + "Description": [ + "Ayoreo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ayo" + }, + { + "Type": 1, + "SubTag": "ayp", + "Description": [ + "North Mesopotamian Arabic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ar", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ayp" + }, + { + "Type": 1, + "SubTag": "ayq", + "Description": [ + "Ayi (Papua New Guinea)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ayq" + }, + { + "Type": 1, + "SubTag": "ayr", + "Description": [ + "Central Aymara" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ay", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ayr" + }, + { + "Type": 1, + "SubTag": "ays", + "Description": [ + "Sorsogon Ayta" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ays" + }, + { + "Type": 1, + "SubTag": "ayt", + "Description": [ + "Magbukun Ayta" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ayt" + }, + { + "Type": 1, + "SubTag": "ayu", + "Description": [ + "Ayu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ayu" + }, + { + "Type": 1, + "SubTag": "ayx", + "Description": [ + "Ayi (China)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2011-08-16", + "Comments": [], + "Prefix": [], + "PreferredValue": "nun", + "Tag": "", + "TagAny": "ayx" + }, + { + "Type": 1, + "SubTag": "ayy", + "Description": [ + "Tayabas Ayta" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2020-03-28", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ayy" + }, + { + "Type": 1, + "SubTag": "ayz", + "Description": [ + "Mai Brat" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ayz" + }, + { + "Type": 1, + "SubTag": "aza", + "Description": [ + "Azha" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "aza" + }, + { + "Type": 1, + "SubTag": "azb", + "Description": [ + "South Azerbaijani" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "az", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "azb" + }, + { + "Type": 1, + "SubTag": "azc", + "Description": [ + "Uto-Aztecan languages" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "azc" + }, + { + "Type": 1, + "SubTag": "azd", + "Description": [ + "Eastern Durango Nahuatl" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "azd" + }, + { + "Type": 1, + "SubTag": "azg", + "Description": [ + "San Pedro Amuzgos Amuzgo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "azg" + }, + { + "Type": 1, + "SubTag": "azj", + "Description": [ + "North Azerbaijani" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "az", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "azj" + }, + { + "Type": 1, + "SubTag": "azm", + "Description": [ + "Ipalapa Amuzgo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "azm" + }, + { + "Type": 1, + "SubTag": "azn", + "Description": [ + "Western Durango Nahuatl" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "azn" + }, + { + "Type": 1, + "SubTag": "azo", + "Description": [ + "Awing" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "azo" + }, + { + "Type": 1, + "SubTag": "azt", + "Description": [ + "Faire Atta" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "azt" + }, + { + "Type": 1, + "SubTag": "azz", + "Description": [ + "Highland Puebla Nahuatl" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "azz" + }, + { + "Type": 1, + "SubTag": "baa", + "Description": [ + "Babatana" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "baa" + }, + { + "Type": 1, + "SubTag": "bab", + "Description": [ + "Bainouk-Gunyu\u00F1o" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bab" + }, + { + "Type": 1, + "SubTag": "bac", + "Description": [ + "Badui" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bac" + }, + { + "Type": 1, + "SubTag": "bad", + "Description": [ + "Banda languages" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bad" + }, + { + "Type": 1, + "SubTag": "bae", + "Description": [ + "Bar\u00E9" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bae" + }, + { + "Type": 1, + "SubTag": "baf", + "Description": [ + "Nubaca" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "baf" + }, + { + "Type": 1, + "SubTag": "bag", + "Description": [ + "Tuki" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bag" + }, + { + "Type": 1, + "SubTag": "bah", + "Description": [ + "Bahamas Creole English" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bah" + }, + { + "Type": 1, + "SubTag": "bai", + "Description": [ + "Bamileke languages" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bai" + }, + { + "Type": 1, + "SubTag": "baj", + "Description": [ + "Barakai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "baj" + }, + { + "Type": 1, + "SubTag": "bal", + "Description": [ + "Baluchi" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "macrolanguage", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bal" + }, + { + "Type": 1, + "SubTag": "ban", + "Description": [ + "Balinese" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ban" + }, + { + "Type": 1, + "SubTag": "bao", + "Description": [ + "Waimaha" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bao" + }, + { + "Type": 1, + "SubTag": "bap", + "Description": [ + "Bantawa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bap" + }, + { + "Type": 1, + "SubTag": "bar", + "Description": [ + "Bavarian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bar" + }, + { + "Type": 1, + "SubTag": "bas", + "Description": [ + "Basa (Cameroon)" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bas" + }, + { + "Type": 1, + "SubTag": "bat", + "Description": [ + "Baltic languages" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bat" + }, + { + "Type": 1, + "SubTag": "bau", + "Description": [ + "Bada (Nigeria)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bau" + }, + { + "Type": 1, + "SubTag": "bav", + "Description": [ + "Vengo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bav" + }, + { + "Type": 1, + "SubTag": "baw", + "Description": [ + "Bambili-Bambui" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "baw" + }, + { + "Type": 1, + "SubTag": "bax", + "Description": [ + "Bamun" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bax" + }, + { + "Type": 1, + "SubTag": "bay", + "Description": [ + "Batuley" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bay" + }, + { + "Type": 1, + "SubTag": "baz", + "Description": [ + "Tunen" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2012-08-12", + "Comments": [ + "see nvo, tvu" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "baz" + }, + { + "Type": 1, + "SubTag": "bba", + "Description": [ + "Baatonum" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bba" + }, + { + "Type": 1, + "SubTag": "bbb", + "Description": [ + "Barai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bbb" + }, + { + "Type": 1, + "SubTag": "bbc", + "Description": [ + "Batak Toba" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bbc" + }, + { + "Type": 1, + "SubTag": "bbd", + "Description": [ + "Bau" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bbd" + }, + { + "Type": 1, + "SubTag": "bbe", + "Description": [ + "Bangba" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bbe" + }, + { + "Type": 1, + "SubTag": "bbf", + "Description": [ + "Baibai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bbf" + }, + { + "Type": 1, + "SubTag": "bbg", + "Description": [ + "Barama" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bbg" + }, + { + "Type": 1, + "SubTag": "bbh", + "Description": [ + "Bugan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bbh" + }, + { + "Type": 1, + "SubTag": "bbi", + "Description": [ + "Barombi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bbi" + }, + { + "Type": 1, + "SubTag": "bbj", + "Description": [ + "Ghom\u00E1l\u00E1\u0027" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bbj" + }, + { + "Type": 1, + "SubTag": "bbk", + "Description": [ + "Babanki" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bbk" + }, + { + "Type": 1, + "SubTag": "bbl", + "Description": [ + "Bats" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bbl" + }, + { + "Type": 1, + "SubTag": "bbm", + "Description": [ + "Babango" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bbm" + }, + { + "Type": 1, + "SubTag": "bbn", + "Description": [ + "Uneapa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bbn" + }, + { + "Type": 1, + "SubTag": "bbo", + "Description": [ + "Northern Bobo Madar\u00E9", + "Konab\u00E9r\u00E9" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bbo" + }, + { + "Type": 1, + "SubTag": "bbp", + "Description": [ + "West Central Banda" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bbp" + }, + { + "Type": 1, + "SubTag": "bbq", + "Description": [ + "Bamali" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bbq" + }, + { + "Type": 1, + "SubTag": "bbr", + "Description": [ + "Girawa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bbr" + }, + { + "Type": 1, + "SubTag": "bbs", + "Description": [ + "Bakpinka" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bbs" + }, + { + "Type": 1, + "SubTag": "bbt", + "Description": [ + "Mburku" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bbt" + }, + { + "Type": 1, + "SubTag": "bbu", + "Description": [ + "Kulung (Nigeria)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bbu" + }, + { + "Type": 1, + "SubTag": "bbv", + "Description": [ + "Karnai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bbv" + }, + { + "Type": 1, + "SubTag": "bbw", + "Description": [ + "Baba" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bbw" + }, + { + "Type": 1, + "SubTag": "bbx", + "Description": [ + "Bubia" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bbx" + }, + { + "Type": 1, + "SubTag": "bby", + "Description": [ + "Befang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bby" + }, + { + "Type": 1, + "SubTag": "bbz", + "Description": [ + "Babalia Creole Arabic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ar", + "Deprecated": "2020-03-28", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bbz" + }, + { + "Type": 1, + "SubTag": "bca", + "Description": [ + "Central Bai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bca" + }, + { + "Type": 1, + "SubTag": "bcb", + "Description": [ + "Bainouk-Samik" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bcb" + }, + { + "Type": 1, + "SubTag": "bcc", + "Description": [ + "Southern Balochi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "bal", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bcc" + }, + { + "Type": 1, + "SubTag": "bcd", + "Description": [ + "North Babar" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bcd" + }, + { + "Type": 1, + "SubTag": "bce", + "Description": [ + "Bamenyam" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bce" + }, + { + "Type": 1, + "SubTag": "bcf", + "Description": [ + "Bamu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bcf" + }, + { + "Type": 1, + "SubTag": "bcg", + "Description": [ + "Baga Pokur" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bcg" + }, + { + "Type": 1, + "SubTag": "bch", + "Description": [ + "Bariai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bch" + }, + { + "Type": 1, + "SubTag": "bci", + "Description": [ + "Baoul\u00E9" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bci" + }, + { + "Type": 1, + "SubTag": "bcj", + "Description": [ + "Bardi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bcj" + }, + { + "Type": 1, + "SubTag": "bck", + "Description": [ + "Bunuba" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bck" + }, + { + "Type": 1, + "SubTag": "bcl", + "Description": [ + "Central Bikol" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "bik", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bcl" + }, + { + "Type": 1, + "SubTag": "bcm", + "Description": [ + "Bannoni" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bcm" + }, + { + "Type": 1, + "SubTag": "bcn", + "Description": [ + "Bali (Nigeria)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bcn" + }, + { + "Type": 1, + "SubTag": "bco", + "Description": [ + "Kaluli" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bco" + }, + { + "Type": 1, + "SubTag": "bcp", + "Description": [ + "Bali (Democratic Republic of Congo)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bcp" + }, + { + "Type": 1, + "SubTag": "bcq", + "Description": [ + "Bench" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bcq" + }, + { + "Type": 1, + "SubTag": "bcr", + "Description": [ + "Babine" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bcr" + }, + { + "Type": 1, + "SubTag": "bcs", + "Description": [ + "Kohumono" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bcs" + }, + { + "Type": 1, + "SubTag": "bct", + "Description": [ + "Bendi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bct" + }, + { + "Type": 1, + "SubTag": "bcu", + "Description": [ + "Awad Bing" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bcu" + }, + { + "Type": 1, + "SubTag": "bcv", + "Description": [ + "Shoo-Minda-Nye" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bcv" + }, + { + "Type": 1, + "SubTag": "bcw", + "Description": [ + "Bana" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bcw" + }, + { + "Type": 1, + "SubTag": "bcy", + "Description": [ + "Bacama" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bcy" + }, + { + "Type": 1, + "SubTag": "bcz", + "Description": [ + "Bainouk-Gunyaamolo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bcz" + }, + { + "Type": 1, + "SubTag": "bda", + "Description": [ + "Bayot" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bda" + }, + { + "Type": 1, + "SubTag": "bdb", + "Description": [ + "Basap" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bdb" + }, + { + "Type": 1, + "SubTag": "bdc", + "Description": [ + "Ember\u00E1-Baud\u00F3" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bdc" + }, + { + "Type": 1, + "SubTag": "bdd", + "Description": [ + "Bunama" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bdd" + }, + { + "Type": 1, + "SubTag": "bde", + "Description": [ + "Bade" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bde" + }, + { + "Type": 1, + "SubTag": "bdf", + "Description": [ + "Biage" + ], + "Added": "2010-03-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bdf" + }, + { + "Type": 1, + "SubTag": "bdg", + "Description": [ + "Bonggi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bdg" + }, + { + "Type": 1, + "SubTag": "bdh", + "Description": [ + "Baka (South Sudan)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bdh" + }, + { + "Type": 1, + "SubTag": "bdi", + "Description": [ + "Burun" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bdi" + }, + { + "Type": 1, + "SubTag": "bdj", + "Description": [ + "Bai (South Sudan)", + "Bai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bdj" + }, + { + "Type": 1, + "SubTag": "bdk", + "Description": [ + "Budukh" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bdk" + }, + { + "Type": 1, + "SubTag": "bdl", + "Description": [ + "Indonesian Bajau" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bdl" + }, + { + "Type": 1, + "SubTag": "bdm", + "Description": [ + "Buduma" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bdm" + }, + { + "Type": 1, + "SubTag": "bdn", + "Description": [ + "Baldemu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bdn" + }, + { + "Type": 1, + "SubTag": "bdo", + "Description": [ + "Morom" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bdo" + }, + { + "Type": 1, + "SubTag": "bdp", + "Description": [ + "Bende" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bdp" + }, + { + "Type": 1, + "SubTag": "bdq", + "Description": [ + "Bahnar" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bdq" + }, + { + "Type": 1, + "SubTag": "bdr", + "Description": [ + "West Coast Bajau" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bdr" + }, + { + "Type": 1, + "SubTag": "bds", + "Description": [ + "Burunge" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bds" + }, + { + "Type": 1, + "SubTag": "bdt", + "Description": [ + "Bokoto" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "gba", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bdt" + }, + { + "Type": 1, + "SubTag": "bdu", + "Description": [ + "Oroko" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bdu" + }, + { + "Type": 1, + "SubTag": "bdv", + "Description": [ + "Bodo Parja" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bdv" + }, + { + "Type": 1, + "SubTag": "bdw", + "Description": [ + "Baham" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bdw" + }, + { + "Type": 1, + "SubTag": "bdx", + "Description": [ + "Budong-Budong" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bdx" + }, + { + "Type": 1, + "SubTag": "bdy", + "Description": [ + "Bandjalang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bdy" + }, + { + "Type": 1, + "SubTag": "bdz", + "Description": [ + "Badeshi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bdz" + }, + { + "Type": 1, + "SubTag": "bea", + "Description": [ + "Beaver" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bea" + }, + { + "Type": 1, + "SubTag": "beb", + "Description": [ + "Bebele" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "beb" + }, + { + "Type": 1, + "SubTag": "bec", + "Description": [ + "Iceve-Maci" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bec" + }, + { + "Type": 1, + "SubTag": "bed", + "Description": [ + "Bedoanas" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bed" + }, + { + "Type": 1, + "SubTag": "bee", + "Description": [ + "Byangsi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bee" + }, + { + "Type": 1, + "SubTag": "bef", + "Description": [ + "Benabena" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bef" + }, + { + "Type": 1, + "SubTag": "beg", + "Description": [ + "Belait" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "beg" + }, + { + "Type": 1, + "SubTag": "beh", + "Description": [ + "Biali" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "beh" + }, + { + "Type": 1, + "SubTag": "bei", + "Description": [ + "Bekati\u0027" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bei" + }, + { + "Type": 1, + "SubTag": "bej", + "Description": [ + "Beja", + "Bedawiyet" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bej" + }, + { + "Type": 1, + "SubTag": "bek", + "Description": [ + "Bebeli" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bek" + }, + { + "Type": 1, + "SubTag": "bem", + "Description": [ + "Bemba (Zambia)" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bem" + }, + { + "Type": 1, + "SubTag": "beo", + "Description": [ + "Beami" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "beo" + }, + { + "Type": 1, + "SubTag": "bep", + "Description": [ + "Besoa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bep" + }, + { + "Type": 1, + "SubTag": "beq", + "Description": [ + "Beembe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "beq" + }, + { + "Type": 1, + "SubTag": "ber", + "Description": [ + "Berber languages" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ber" + }, + { + "Type": 1, + "SubTag": "bes", + "Description": [ + "Besme" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bes" + }, + { + "Type": 1, + "SubTag": "bet", + "Description": [ + "Guiberoua B\u00E9te" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bet" + }, + { + "Type": 1, + "SubTag": "beu", + "Description": [ + "Blagar" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "beu" + }, + { + "Type": 1, + "SubTag": "bev", + "Description": [ + "Daloa B\u00E9t\u00E9" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bev" + }, + { + "Type": 1, + "SubTag": "bew", + "Description": [ + "Betawi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bew" + }, + { + "Type": 1, + "SubTag": "bex", + "Description": [ + "Jur Modo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bex" + }, + { + "Type": 1, + "SubTag": "bey", + "Description": [ + "Beli (Papua New Guinea)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bey" + }, + { + "Type": 1, + "SubTag": "bez", + "Description": [ + "Bena (Tanzania)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bez" + }, + { + "Type": 1, + "SubTag": "bfa", + "Description": [ + "Bari" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bfa" + }, + { + "Type": 1, + "SubTag": "bfb", + "Description": [ + "Pauri Bareli" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bfb" + }, + { + "Type": 1, + "SubTag": "bfc", + "Description": [ + "Panyi Bai", + "Northern Bai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bfc" + }, + { + "Type": 1, + "SubTag": "bfd", + "Description": [ + "Bafut" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bfd" + }, + { + "Type": 1, + "SubTag": "bfe", + "Description": [ + "Betaf", + "Tena" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bfe" + }, + { + "Type": 1, + "SubTag": "bff", + "Description": [ + "Bofi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bff" + }, + { + "Type": 1, + "SubTag": "bfg", + "Description": [ + "Busang Kayan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bfg" + }, + { + "Type": 1, + "SubTag": "bfh", + "Description": [ + "Blafe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bfh" + }, + { + "Type": 1, + "SubTag": "bfi", + "Description": [ + "British Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bfi" + }, + { + "Type": 1, + "SubTag": "bfj", + "Description": [ + "Bafanji" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bfj" + }, + { + "Type": 1, + "SubTag": "bfk", + "Description": [ + "Ban Khor Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bfk" + }, + { + "Type": 1, + "SubTag": "bfl", + "Description": [ + "Banda-Nd\u00E9l\u00E9" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bfl" + }, + { + "Type": 1, + "SubTag": "bfm", + "Description": [ + "Mmen" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bfm" + }, + { + "Type": 1, + "SubTag": "bfn", + "Description": [ + "Bunak" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bfn" + }, + { + "Type": 1, + "SubTag": "bfo", + "Description": [ + "Malba Birifor" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bfo" + }, + { + "Type": 1, + "SubTag": "bfp", + "Description": [ + "Beba" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bfp" + }, + { + "Type": 1, + "SubTag": "bfq", + "Description": [ + "Badaga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bfq" + }, + { + "Type": 1, + "SubTag": "bfr", + "Description": [ + "Bazigar" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bfr" + }, + { + "Type": 1, + "SubTag": "bfs", + "Description": [ + "Southern Bai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bfs" + }, + { + "Type": 1, + "SubTag": "bft", + "Description": [ + "Balti" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bft" + }, + { + "Type": 1, + "SubTag": "bfu", + "Description": [ + "Gahri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bfu" + }, + { + "Type": 1, + "SubTag": "bfw", + "Description": [ + "Bondo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bfw" + }, + { + "Type": 1, + "SubTag": "bfx", + "Description": [ + "Bantayanon" + ], + "Added": "2010-03-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bfx" + }, + { + "Type": 1, + "SubTag": "bfy", + "Description": [ + "Bagheli" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bfy" + }, + { + "Type": 1, + "SubTag": "bfz", + "Description": [ + "Mahasu Pahari" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bfz" + }, + { + "Type": 1, + "SubTag": "bga", + "Description": [ + "Gwamhi-Wuri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bga" + }, + { + "Type": 1, + "SubTag": "bgb", + "Description": [ + "Bobongko" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bgb" + }, + { + "Type": 1, + "SubTag": "bgc", + "Description": [ + "Haryanvi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bgc" + }, + { + "Type": 1, + "SubTag": "bgd", + "Description": [ + "Rathwi Bareli" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bgd" + }, + { + "Type": 1, + "SubTag": "bge", + "Description": [ + "Bauria" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bge" + }, + { + "Type": 1, + "SubTag": "bgf", + "Description": [ + "Bangandu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bgf" + }, + { + "Type": 1, + "SubTag": "bgg", + "Description": [ + "Bugun" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bgg" + }, + { + "Type": 1, + "SubTag": "bgi", + "Description": [ + "Giangan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bgi" + }, + { + "Type": 1, + "SubTag": "bgj", + "Description": [ + "Bangolan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bgj" + }, + { + "Type": 1, + "SubTag": "bgk", + "Description": [ + "Bit", + "Buxinhua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bgk" + }, + { + "Type": 1, + "SubTag": "bgl", + "Description": [ + "Bo (Laos)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bgl" + }, + { + "Type": 1, + "SubTag": "bgm", + "Description": [ + "Baga Mboteni" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2016-05-30", + "Comments": [], + "Prefix": [], + "PreferredValue": "bcg", + "Tag": "", + "TagAny": "bgm" + }, + { + "Type": 1, + "SubTag": "bgn", + "Description": [ + "Western Balochi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "bal", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bgn" + }, + { + "Type": 1, + "SubTag": "bgo", + "Description": [ + "Baga Koga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bgo" + }, + { + "Type": 1, + "SubTag": "bgp", + "Description": [ + "Eastern Balochi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "bal", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bgp" + }, + { + "Type": 1, + "SubTag": "bgq", + "Description": [ + "Bagri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "raj", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bgq" + }, + { + "Type": 1, + "SubTag": "bgr", + "Description": [ + "Bawm Chin" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bgr" + }, + { + "Type": 1, + "SubTag": "bgs", + "Description": [ + "Tagabawa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bgs" + }, + { + "Type": 1, + "SubTag": "bgt", + "Description": [ + "Bughotu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bgt" + }, + { + "Type": 1, + "SubTag": "bgu", + "Description": [ + "Mbongno" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bgu" + }, + { + "Type": 1, + "SubTag": "bgv", + "Description": [ + "Warkay-Bipim" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bgv" + }, + { + "Type": 1, + "SubTag": "bgw", + "Description": [ + "Bhatri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bgw" + }, + { + "Type": 1, + "SubTag": "bgx", + "Description": [ + "Balkan Gagauz Turkish" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bgx" + }, + { + "Type": 1, + "SubTag": "bgy", + "Description": [ + "Benggoi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bgy" + }, + { + "Type": 1, + "SubTag": "bgz", + "Description": [ + "Banggai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bgz" + }, + { + "Type": 1, + "SubTag": "bha", + "Description": [ + "Bharia" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bha" + }, + { + "Type": 1, + "SubTag": "bhb", + "Description": [ + "Bhili" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bhb" + }, + { + "Type": 1, + "SubTag": "bhc", + "Description": [ + "Biga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bhc" + }, + { + "Type": 1, + "SubTag": "bhd", + "Description": [ + "Bhadrawahi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bhd" + }, + { + "Type": 1, + "SubTag": "bhe", + "Description": [ + "Bhaya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bhe" + }, + { + "Type": 1, + "SubTag": "bhf", + "Description": [ + "Odiai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bhf" + }, + { + "Type": 1, + "SubTag": "bhg", + "Description": [ + "Binandere" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bhg" + }, + { + "Type": 1, + "SubTag": "bhh", + "Description": [ + "Bukharic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bhh" + }, + { + "Type": 1, + "SubTag": "bhi", + "Description": [ + "Bhilali" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bhi" + }, + { + "Type": 1, + "SubTag": "bhj", + "Description": [ + "Bahing" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bhj" + }, + { + "Type": 1, + "SubTag": "bhk", + "Description": [ + "Albay Bicolano" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "bik", + "Deprecated": "2010-03-11", + "Comments": [ + "see fbl, lbl, rbl, ubl" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bhk" + }, + { + "Type": 1, + "SubTag": "bhl", + "Description": [ + "Bimin" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bhl" + }, + { + "Type": 1, + "SubTag": "bhm", + "Description": [ + "Bathari" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bhm" + }, + { + "Type": 1, + "SubTag": "bhn", + "Description": [ + "Bohtan Neo-Aramaic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bhn" + }, + { + "Type": 1, + "SubTag": "bho", + "Description": [ + "Bhojpuri" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bho" + }, + { + "Type": 1, + "SubTag": "bhp", + "Description": [ + "Bima" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bhp" + }, + { + "Type": 1, + "SubTag": "bhq", + "Description": [ + "Tukang Besi South" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bhq" + }, + { + "Type": 1, + "SubTag": "bhr", + "Description": [ + "Bara Malagasy" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "mg", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bhr" + }, + { + "Type": 1, + "SubTag": "bhs", + "Description": [ + "Buwal" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bhs" + }, + { + "Type": 1, + "SubTag": "bht", + "Description": [ + "Bhattiyali" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bht" + }, + { + "Type": 1, + "SubTag": "bhu", + "Description": [ + "Bhunjia" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bhu" + }, + { + "Type": 1, + "SubTag": "bhv", + "Description": [ + "Bahau" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bhv" + }, + { + "Type": 1, + "SubTag": "bhw", + "Description": [ + "Biak" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bhw" + }, + { + "Type": 1, + "SubTag": "bhx", + "Description": [ + "Bhalay" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bhx" + }, + { + "Type": 1, + "SubTag": "bhy", + "Description": [ + "Bhele" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bhy" + }, + { + "Type": 1, + "SubTag": "bhz", + "Description": [ + "Bada (Indonesia)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bhz" + }, + { + "Type": 1, + "SubTag": "bia", + "Description": [ + "Badimaya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bia" + }, + { + "Type": 1, + "SubTag": "bib", + "Description": [ + "Bissa", + "Bisa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bib" + }, + { + "Type": 1, + "SubTag": "bic", + "Description": [ + "Bikaru" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2021-02-20", + "Comments": [], + "Prefix": [], + "PreferredValue": "bir", + "Tag": "", + "TagAny": "bic" + }, + { + "Type": 1, + "SubTag": "bid", + "Description": [ + "Bidiyo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bid" + }, + { + "Type": 1, + "SubTag": "bie", + "Description": [ + "Bepour" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bie" + }, + { + "Type": 1, + "SubTag": "bif", + "Description": [ + "Biafada" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bif" + }, + { + "Type": 1, + "SubTag": "big", + "Description": [ + "Biangai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "big" + }, + { + "Type": 1, + "SubTag": "bij", + "Description": [ + "Vaghat-Ya-Bijim-Legeri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2021-02-20", + "Comments": [ + "see dkg, jbm, tyy" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bij" + }, + { + "Type": 1, + "SubTag": "bik", + "Description": [ + "Bikol" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "macrolanguage", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bik" + }, + { + "Type": 1, + "SubTag": "bil", + "Description": [ + "Bile" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bil" + }, + { + "Type": 1, + "SubTag": "bim", + "Description": [ + "Bimoba" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bim" + }, + { + "Type": 1, + "SubTag": "bin", + "Description": [ + "Bini", + "Edo" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bin" + }, + { + "Type": 1, + "SubTag": "bio", + "Description": [ + "Nai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bio" + }, + { + "Type": 1, + "SubTag": "bip", + "Description": [ + "Bila" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bip" + }, + { + "Type": 1, + "SubTag": "biq", + "Description": [ + "Bipi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "biq" + }, + { + "Type": 1, + "SubTag": "bir", + "Description": [ + "Bisorio" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bir" + }, + { + "Type": 1, + "SubTag": "bit", + "Description": [ + "Berinomo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bit" + }, + { + "Type": 1, + "SubTag": "biu", + "Description": [ + "Biete" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "biu" + }, + { + "Type": 1, + "SubTag": "biv", + "Description": [ + "Southern Birifor" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "biv" + }, + { + "Type": 1, + "SubTag": "biw", + "Description": [ + "Kol (Cameroon)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "biw" + }, + { + "Type": 1, + "SubTag": "bix", + "Description": [ + "Bijori" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bix" + }, + { + "Type": 1, + "SubTag": "biy", + "Description": [ + "Birhor" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "biy" + }, + { + "Type": 1, + "SubTag": "biz", + "Description": [ + "Baloi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "biz" + }, + { + "Type": 1, + "SubTag": "bja", + "Description": [ + "Budza" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bja" + }, + { + "Type": 1, + "SubTag": "bjb", + "Description": [ + "Banggarla" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bjb" + }, + { + "Type": 1, + "SubTag": "bjc", + "Description": [ + "Bariji" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bjc" + }, + { + "Type": 1, + "SubTag": "bjd", + "Description": [ + "Bandjigali" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2012-08-12", + "Comments": [], + "Prefix": [], + "PreferredValue": "drl", + "Tag": "", + "TagAny": "bjd" + }, + { + "Type": 1, + "SubTag": "bje", + "Description": [ + "Biao-Jiao Mien" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bje" + }, + { + "Type": 1, + "SubTag": "bjf", + "Description": [ + "Barzani Jewish Neo-Aramaic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bjf" + }, + { + "Type": 1, + "SubTag": "bjg", + "Description": [ + "Bidyogo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bjg" + }, + { + "Type": 1, + "SubTag": "bjh", + "Description": [ + "Bahinemo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bjh" + }, + { + "Type": 1, + "SubTag": "bji", + "Description": [ + "Burji" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bji" + }, + { + "Type": 1, + "SubTag": "bjj", + "Description": [ + "Kanauji" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bjj" + }, + { + "Type": 1, + "SubTag": "bjk", + "Description": [ + "Barok" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bjk" + }, + { + "Type": 1, + "SubTag": "bjl", + "Description": [ + "Bulu (Papua New Guinea)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bjl" + }, + { + "Type": 1, + "SubTag": "bjm", + "Description": [ + "Bajelani" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bjm" + }, + { + "Type": 1, + "SubTag": "bjn", + "Description": [ + "Banjar" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ms", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bjn" + }, + { + "Type": 1, + "SubTag": "bjo", + "Description": [ + "Mid-Southern Banda" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bjo" + }, + { + "Type": 1, + "SubTag": "bjp", + "Description": [ + "Fanamaket" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bjp" + }, + { + "Type": 1, + "SubTag": "bjq", + "Description": [ + "Southern Betsimisaraka Malagasy" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "mg", + "Deprecated": "2011-08-16", + "Comments": [ + "see bzc, tkg" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bjq" + }, + { + "Type": 1, + "SubTag": "bjr", + "Description": [ + "Binumarien" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bjr" + }, + { + "Type": 1, + "SubTag": "bjs", + "Description": [ + "Bajan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bjs" + }, + { + "Type": 1, + "SubTag": "bjt", + "Description": [ + "Balanta-Ganja" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bjt" + }, + { + "Type": 1, + "SubTag": "bju", + "Description": [ + "Busuu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bju" + }, + { + "Type": 1, + "SubTag": "bjv", + "Description": [ + "Bedjond" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bjv" + }, + { + "Type": 1, + "SubTag": "bjw", + "Description": [ + "Bakw\u00E9" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bjw" + }, + { + "Type": 1, + "SubTag": "bjx", + "Description": [ + "Banao Itneg" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bjx" + }, + { + "Type": 1, + "SubTag": "bjy", + "Description": [ + "Bayali" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bjy" + }, + { + "Type": 1, + "SubTag": "bjz", + "Description": [ + "Baruga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bjz" + }, + { + "Type": 1, + "SubTag": "bka", + "Description": [ + "Kyak" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bka" + }, + { + "Type": 1, + "SubTag": "bkb", + "Description": [ + "Finallig" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2010-03-11", + "Comments": [ + "see ebk, obk" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bkb" + }, + { + "Type": 1, + "SubTag": "bkc", + "Description": [ + "Baka (Cameroon)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bkc" + }, + { + "Type": 1, + "SubTag": "bkd", + "Description": [ + "Binukid", + "Talaandig" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bkd" + }, + { + "Type": 1, + "SubTag": "bkf", + "Description": [ + "Beeke" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bkf" + }, + { + "Type": 1, + "SubTag": "bkg", + "Description": [ + "Buraka" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bkg" + }, + { + "Type": 1, + "SubTag": "bkh", + "Description": [ + "Bakoko" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bkh" + }, + { + "Type": 1, + "SubTag": "bki", + "Description": [ + "Baki" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bki" + }, + { + "Type": 1, + "SubTag": "bkj", + "Description": [ + "Pande" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bkj" + }, + { + "Type": 1, + "SubTag": "bkk", + "Description": [ + "Brokskat" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bkk" + }, + { + "Type": 1, + "SubTag": "bkl", + "Description": [ + "Berik" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bkl" + }, + { + "Type": 1, + "SubTag": "bkm", + "Description": [ + "Kom (Cameroon)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bkm" + }, + { + "Type": 1, + "SubTag": "bkn", + "Description": [ + "Bukitan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bkn" + }, + { + "Type": 1, + "SubTag": "bko", + "Description": [ + "Kwa\u0027" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bko" + }, + { + "Type": 1, + "SubTag": "bkp", + "Description": [ + "Boko (Democratic Republic of Congo)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bkp" + }, + { + "Type": 1, + "SubTag": "bkq", + "Description": [ + "Bakair\u00ED" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bkq" + }, + { + "Type": 1, + "SubTag": "bkr", + "Description": [ + "Bakumpai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bkr" + }, + { + "Type": 1, + "SubTag": "bks", + "Description": [ + "Northern Sorsoganon" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bks" + }, + { + "Type": 1, + "SubTag": "bkt", + "Description": [ + "Boloki" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bkt" + }, + { + "Type": 1, + "SubTag": "bku", + "Description": [ + "Buhid" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bku" + }, + { + "Type": 1, + "SubTag": "bkv", + "Description": [ + "Bekwarra" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bkv" + }, + { + "Type": 1, + "SubTag": "bkw", + "Description": [ + "Bekwel" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bkw" + }, + { + "Type": 1, + "SubTag": "bkx", + "Description": [ + "Baikeno" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bkx" + }, + { + "Type": 1, + "SubTag": "bky", + "Description": [ + "Bokyi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bky" + }, + { + "Type": 1, + "SubTag": "bkz", + "Description": [ + "Bungku" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bkz" + }, + { + "Type": 1, + "SubTag": "bla", + "Description": [ + "Siksika" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bla" + }, + { + "Type": 1, + "SubTag": "blb", + "Description": [ + "Bilua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "blb" + }, + { + "Type": 1, + "SubTag": "blc", + "Description": [ + "Bella Coola" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "blc" + }, + { + "Type": 1, + "SubTag": "bld", + "Description": [ + "Bolango" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bld" + }, + { + "Type": 1, + "SubTag": "ble", + "Description": [ + "Balanta-Kentohe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ble" + }, + { + "Type": 1, + "SubTag": "blf", + "Description": [ + "Buol" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "blf" + }, + { + "Type": 1, + "SubTag": "blg", + "Description": [ + "Balau" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2021-02-20", + "Comments": [], + "Prefix": [], + "PreferredValue": "iba", + "Tag": "", + "TagAny": "blg" + }, + { + "Type": 1, + "SubTag": "blh", + "Description": [ + "Kuwaa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "blh" + }, + { + "Type": 1, + "SubTag": "bli", + "Description": [ + "Bolia" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bli" + }, + { + "Type": 1, + "SubTag": "blj", + "Description": [ + "Bolongan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "blj" + }, + { + "Type": 1, + "SubTag": "blk", + "Description": [ + "Pa\u0027o Karen", + "Pa\u0027O" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "blk" + }, + { + "Type": 1, + "SubTag": "bll", + "Description": [ + "Biloxi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bll" + }, + { + "Type": 1, + "SubTag": "blm", + "Description": [ + "Beli (South Sudan)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "blm" + }, + { + "Type": 1, + "SubTag": "bln", + "Description": [ + "Southern Catanduanes Bikol" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "bik", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bln" + }, + { + "Type": 1, + "SubTag": "blo", + "Description": [ + "Anii" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "blo" + }, + { + "Type": 1, + "SubTag": "blp", + "Description": [ + "Blablanga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "blp" + }, + { + "Type": 1, + "SubTag": "blq", + "Description": [ + "Baluan-Pam" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "blq" + }, + { + "Type": 1, + "SubTag": "blr", + "Description": [ + "Blang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "blr" + }, + { + "Type": 1, + "SubTag": "bls", + "Description": [ + "Balaesang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bls" + }, + { + "Type": 1, + "SubTag": "blt", + "Description": [ + "Tai Dam" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "blt" + }, + { + "Type": 1, + "SubTag": "blv", + "Description": [ + "Kibala", + "Bolo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "blv" + }, + { + "Type": 1, + "SubTag": "blw", + "Description": [ + "Balangao" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "blw" + }, + { + "Type": 1, + "SubTag": "blx", + "Description": [ + "Mag-Indi Ayta" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "blx" + }, + { + "Type": 1, + "SubTag": "bly", + "Description": [ + "Notre" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bly" + }, + { + "Type": 1, + "SubTag": "blz", + "Description": [ + "Balantak" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "blz" + }, + { + "Type": 1, + "SubTag": "bma", + "Description": [ + "Lame" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bma" + }, + { + "Type": 1, + "SubTag": "bmb", + "Description": [ + "Bembe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bmb" + }, + { + "Type": 1, + "SubTag": "bmc", + "Description": [ + "Biem" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bmc" + }, + { + "Type": 1, + "SubTag": "bmd", + "Description": [ + "Baga Manduri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bmd" + }, + { + "Type": 1, + "SubTag": "bme", + "Description": [ + "Limassa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bme" + }, + { + "Type": 1, + "SubTag": "bmf", + "Description": [ + "Bom-Kim" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bmf" + }, + { + "Type": 1, + "SubTag": "bmg", + "Description": [ + "Bamwe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bmg" + }, + { + "Type": 1, + "SubTag": "bmh", + "Description": [ + "Kein" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bmh" + }, + { + "Type": 1, + "SubTag": "bmi", + "Description": [ + "Bagirmi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bmi" + }, + { + "Type": 1, + "SubTag": "bmj", + "Description": [ + "Bote-Majhi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bmj" + }, + { + "Type": 1, + "SubTag": "bmk", + "Description": [ + "Ghayavi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bmk" + }, + { + "Type": 1, + "SubTag": "bml", + "Description": [ + "Bomboli" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bml" + }, + { + "Type": 1, + "SubTag": "bmm", + "Description": [ + "Northern Betsimisaraka Malagasy" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "mg", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bmm" + }, + { + "Type": 1, + "SubTag": "bmn", + "Description": [ + "Bina (Papua New Guinea)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bmn" + }, + { + "Type": 1, + "SubTag": "bmo", + "Description": [ + "Bambalang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bmo" + }, + { + "Type": 1, + "SubTag": "bmp", + "Description": [ + "Bulgebi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bmp" + }, + { + "Type": 1, + "SubTag": "bmq", + "Description": [ + "Bomu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bmq" + }, + { + "Type": 1, + "SubTag": "bmr", + "Description": [ + "Muinane" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bmr" + }, + { + "Type": 1, + "SubTag": "bms", + "Description": [ + "Bilma Kanuri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bms" + }, + { + "Type": 1, + "SubTag": "bmt", + "Description": [ + "Biao Mon" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bmt" + }, + { + "Type": 1, + "SubTag": "bmu", + "Description": [ + "Somba-Siawari" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bmu" + }, + { + "Type": 1, + "SubTag": "bmv", + "Description": [ + "Bum" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bmv" + }, + { + "Type": 1, + "SubTag": "bmw", + "Description": [ + "Bomwali" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bmw" + }, + { + "Type": 1, + "SubTag": "bmx", + "Description": [ + "Baimak" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bmx" + }, + { + "Type": 1, + "SubTag": "bmy", + "Description": [ + "Bemba (Democratic Republic of Congo)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2015-02-12", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bmy" + }, + { + "Type": 1, + "SubTag": "bmz", + "Description": [ + "Baramu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bmz" + }, + { + "Type": 1, + "SubTag": "bna", + "Description": [ + "Bonerate" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bna" + }, + { + "Type": 1, + "SubTag": "bnb", + "Description": [ + "Bookan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bnb" + }, + { + "Type": 1, + "SubTag": "bnc", + "Description": [ + "Bontok" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "macrolanguage", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bnc" + }, + { + "Type": 1, + "SubTag": "bnd", + "Description": [ + "Banda (Indonesia)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bnd" + }, + { + "Type": 1, + "SubTag": "bne", + "Description": [ + "Bintauna" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bne" + }, + { + "Type": 1, + "SubTag": "bnf", + "Description": [ + "Masiwang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bnf" + }, + { + "Type": 1, + "SubTag": "bng", + "Description": [ + "Benga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bng" + }, + { + "Type": 1, + "SubTag": "bni", + "Description": [ + "Bangi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bni" + }, + { + "Type": 1, + "SubTag": "bnj", + "Description": [ + "Eastern Tawbuid" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bnj" + }, + { + "Type": 1, + "SubTag": "bnk", + "Description": [ + "Bierebo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bnk" + }, + { + "Type": 1, + "SubTag": "bnl", + "Description": [ + "Boon" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bnl" + }, + { + "Type": 1, + "SubTag": "bnm", + "Description": [ + "Batanga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bnm" + }, + { + "Type": 1, + "SubTag": "bnn", + "Description": [ + "Bunun" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bnn" + }, + { + "Type": 1, + "SubTag": "bno", + "Description": [ + "Bantoanon" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bno" + }, + { + "Type": 1, + "SubTag": "bnp", + "Description": [ + "Bola" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bnp" + }, + { + "Type": 1, + "SubTag": "bnq", + "Description": [ + "Bantik" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bnq" + }, + { + "Type": 1, + "SubTag": "bnr", + "Description": [ + "Butmas-Tur" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bnr" + }, + { + "Type": 1, + "SubTag": "bns", + "Description": [ + "Bundeli" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bns" + }, + { + "Type": 1, + "SubTag": "bnt", + "Description": [ + "Bantu languages" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bnt" + }, + { + "Type": 1, + "SubTag": "bnu", + "Description": [ + "Bentong" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bnu" + }, + { + "Type": 1, + "SubTag": "bnv", + "Description": [ + "Bonerif", + "Beneraf", + "Edwas" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bnv" + }, + { + "Type": 1, + "SubTag": "bnw", + "Description": [ + "Bisis" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bnw" + }, + { + "Type": 1, + "SubTag": "bnx", + "Description": [ + "Bangubangu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bnx" + }, + { + "Type": 1, + "SubTag": "bny", + "Description": [ + "Bintulu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bny" + }, + { + "Type": 1, + "SubTag": "bnz", + "Description": [ + "Beezen" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bnz" + }, + { + "Type": 1, + "SubTag": "boa", + "Description": [ + "Bora" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "boa" + }, + { + "Type": 1, + "SubTag": "bob", + "Description": [ + "Aweer" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bob" + }, + { + "Type": 1, + "SubTag": "boe", + "Description": [ + "Mundabli" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "boe" + }, + { + "Type": 1, + "SubTag": "bof", + "Description": [ + "Bolon" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bof" + }, + { + "Type": 1, + "SubTag": "bog", + "Description": [ + "Bamako Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bog" + }, + { + "Type": 1, + "SubTag": "boh", + "Description": [ + "Boma" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "boh" + }, + { + "Type": 1, + "SubTag": "boi", + "Description": [ + "Barbare\u00F1o" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "boi" + }, + { + "Type": 1, + "SubTag": "boj", + "Description": [ + "Anjam" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "boj" + }, + { + "Type": 1, + "SubTag": "bok", + "Description": [ + "Bonjo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bok" + }, + { + "Type": 1, + "SubTag": "bol", + "Description": [ + "Bole" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bol" + }, + { + "Type": 1, + "SubTag": "bom", + "Description": [ + "Berom" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bom" + }, + { + "Type": 1, + "SubTag": "bon", + "Description": [ + "Bine" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bon" + }, + { + "Type": 1, + "SubTag": "boo", + "Description": [ + "Tiemac\u00E8w\u00E8 Bozo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "boo" + }, + { + "Type": 1, + "SubTag": "bop", + "Description": [ + "Bonkiman" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bop" + }, + { + "Type": 1, + "SubTag": "boq", + "Description": [ + "Bogaya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "boq" + }, + { + "Type": 1, + "SubTag": "bor", + "Description": [ + "Bor\u00F4ro" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bor" + }, + { + "Type": 1, + "SubTag": "bot", + "Description": [ + "Bongo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bot" + }, + { + "Type": 1, + "SubTag": "bou", + "Description": [ + "Bondei" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bou" + }, + { + "Type": 1, + "SubTag": "bov", + "Description": [ + "Tuwuli" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bov" + }, + { + "Type": 1, + "SubTag": "bow", + "Description": [ + "Rema" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bow" + }, + { + "Type": 1, + "SubTag": "box", + "Description": [ + "Buamu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "box" + }, + { + "Type": 1, + "SubTag": "boy", + "Description": [ + "Bodo (Central African Republic)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "boy" + }, + { + "Type": 1, + "SubTag": "boz", + "Description": [ + "Ti\u00E9yaxo Bozo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "boz" + }, + { + "Type": 1, + "SubTag": "bpa", + "Description": [ + "Daakaka" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bpa" + }, + { + "Type": 1, + "SubTag": "bpb", + "Description": [ + "Barbacoas" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2020-03-28", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bpb" + }, + { + "Type": 1, + "SubTag": "bpc", + "Description": [ + "Mbuk" + ], + "Added": "2022-02-25", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bpc" + }, + { + "Type": 1, + "SubTag": "bpd", + "Description": [ + "Banda-Banda" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bpd" + }, + { + "Type": 1, + "SubTag": "bpe", + "Description": [ + "Bauni" + ], + "Added": "2021-02-20", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bpe" + }, + { + "Type": 1, + "SubTag": "bpg", + "Description": [ + "Bonggo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bpg" + }, + { + "Type": 1, + "SubTag": "bph", + "Description": [ + "Botlikh" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bph" + }, + { + "Type": 1, + "SubTag": "bpi", + "Description": [ + "Bagupi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bpi" + }, + { + "Type": 1, + "SubTag": "bpj", + "Description": [ + "Binji" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bpj" + }, + { + "Type": 1, + "SubTag": "bpk", + "Description": [ + "Orowe", + "\u0027\u00D4r\u00F4\u00EA" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bpk" + }, + { + "Type": 1, + "SubTag": "bpl", + "Description": [ + "Broome Pearling Lugger Pidgin" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bpl" + }, + { + "Type": 1, + "SubTag": "bpm", + "Description": [ + "Biyom" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bpm" + }, + { + "Type": 1, + "SubTag": "bpn", + "Description": [ + "Dzao Min" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bpn" + }, + { + "Type": 1, + "SubTag": "bpo", + "Description": [ + "Anasi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bpo" + }, + { + "Type": 1, + "SubTag": "bpp", + "Description": [ + "Kaure" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bpp" + }, + { + "Type": 1, + "SubTag": "bpq", + "Description": [ + "Banda Malay" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bpq" + }, + { + "Type": 1, + "SubTag": "bpr", + "Description": [ + "Koronadal Blaan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bpr" + }, + { + "Type": 1, + "SubTag": "bps", + "Description": [ + "Sarangani Blaan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bps" + }, + { + "Type": 1, + "SubTag": "bpt", + "Description": [ + "Barrow Point" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bpt" + }, + { + "Type": 1, + "SubTag": "bpu", + "Description": [ + "Bongu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bpu" + }, + { + "Type": 1, + "SubTag": "bpv", + "Description": [ + "Bian Marind" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bpv" + }, + { + "Type": 1, + "SubTag": "bpw", + "Description": [ + "Bo (Papua New Guinea)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bpw" + }, + { + "Type": 1, + "SubTag": "bpx", + "Description": [ + "Palya Bareli" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bpx" + }, + { + "Type": 1, + "SubTag": "bpy", + "Description": [ + "Bishnupriya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bpy" + }, + { + "Type": 1, + "SubTag": "bpz", + "Description": [ + "Bilba" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bpz" + }, + { + "Type": 1, + "SubTag": "bqa", + "Description": [ + "Tchumbuli" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bqa" + }, + { + "Type": 1, + "SubTag": "bqb", + "Description": [ + "Bagusa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bqb" + }, + { + "Type": 1, + "SubTag": "bqc", + "Description": [ + "Boko (Benin)", + "Boo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bqc" + }, + { + "Type": 1, + "SubTag": "bqd", + "Description": [ + "Bung" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bqd" + }, + { + "Type": 1, + "SubTag": "bqf", + "Description": [ + "Baga Kaloum" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bqf" + }, + { + "Type": 1, + "SubTag": "bqg", + "Description": [ + "Bago-Kusuntu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bqg" + }, + { + "Type": 1, + "SubTag": "bqh", + "Description": [ + "Baima" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bqh" + }, + { + "Type": 1, + "SubTag": "bqi", + "Description": [ + "Bakhtiari" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bqi" + }, + { + "Type": 1, + "SubTag": "bqj", + "Description": [ + "Bandial" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bqj" + }, + { + "Type": 1, + "SubTag": "bqk", + "Description": [ + "Banda-Mbr\u00E8s" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bqk" + }, + { + "Type": 1, + "SubTag": "bql", + "Description": [ + "Karian", + "Bilakura" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bql" + }, + { + "Type": 1, + "SubTag": "bqm", + "Description": [ + "Wumboko" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bqm" + }, + { + "Type": 1, + "SubTag": "bqn", + "Description": [ + "Bulgarian Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bqn" + }, + { + "Type": 1, + "SubTag": "bqo", + "Description": [ + "Balo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bqo" + }, + { + "Type": 1, + "SubTag": "bqp", + "Description": [ + "Busa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bqp" + }, + { + "Type": 1, + "SubTag": "bqq", + "Description": [ + "Biritai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bqq" + }, + { + "Type": 1, + "SubTag": "bqr", + "Description": [ + "Burusu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bqr" + }, + { + "Type": 1, + "SubTag": "bqs", + "Description": [ + "Bosngun" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bqs" + }, + { + "Type": 1, + "SubTag": "bqt", + "Description": [ + "Bamukumbit" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bqt" + }, + { + "Type": 1, + "SubTag": "bqu", + "Description": [ + "Boguru" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bqu" + }, + { + "Type": 1, + "SubTag": "bqv", + "Description": [ + "Koro Wachi", + "Begbere-Ejar" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bqv" + }, + { + "Type": 1, + "SubTag": "bqw", + "Description": [ + "Buru (Nigeria)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bqw" + }, + { + "Type": 1, + "SubTag": "bqx", + "Description": [ + "Baangi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bqx" + }, + { + "Type": 1, + "SubTag": "bqy", + "Description": [ + "Bengkala Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bqy" + }, + { + "Type": 1, + "SubTag": "bqz", + "Description": [ + "Bakaka" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bqz" + }, + { + "Type": 1, + "SubTag": "bra", + "Description": [ + "Braj" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bra" + }, + { + "Type": 1, + "SubTag": "brb", + "Description": [ + "Brao", + "Lave" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "brb" + }, + { + "Type": 1, + "SubTag": "brc", + "Description": [ + "Berbice Creole Dutch" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "brc" + }, + { + "Type": 1, + "SubTag": "brd", + "Description": [ + "Baraamu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "brd" + }, + { + "Type": 1, + "SubTag": "brf", + "Description": [ + "Bira" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "brf" + }, + { + "Type": 1, + "SubTag": "brg", + "Description": [ + "Baure" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "brg" + }, + { + "Type": 1, + "SubTag": "brh", + "Description": [ + "Brahui" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "brh" + }, + { + "Type": 1, + "SubTag": "bri", + "Description": [ + "Mokpwe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bri" + }, + { + "Type": 1, + "SubTag": "brj", + "Description": [ + "Bieria" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "brj" + }, + { + "Type": 1, + "SubTag": "brk", + "Description": [ + "Birked" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "brk" + }, + { + "Type": 1, + "SubTag": "brl", + "Description": [ + "Birwa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "brl" + }, + { + "Type": 1, + "SubTag": "brm", + "Description": [ + "Barambu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "brm" + }, + { + "Type": 1, + "SubTag": "brn", + "Description": [ + "Boruca" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "brn" + }, + { + "Type": 1, + "SubTag": "bro", + "Description": [ + "Brokkat" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bro" + }, + { + "Type": 1, + "SubTag": "brp", + "Description": [ + "Barapasi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "brp" + }, + { + "Type": 1, + "SubTag": "brq", + "Description": [ + "Breri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "brq" + }, + { + "Type": 1, + "SubTag": "brr", + "Description": [ + "Birao" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "brr" + }, + { + "Type": 1, + "SubTag": "brs", + "Description": [ + "Baras" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "brs" + }, + { + "Type": 1, + "SubTag": "brt", + "Description": [ + "Bitare" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "brt" + }, + { + "Type": 1, + "SubTag": "bru", + "Description": [ + "Eastern Bru" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bru" + }, + { + "Type": 1, + "SubTag": "brv", + "Description": [ + "Western Bru" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "brv" + }, + { + "Type": 1, + "SubTag": "brw", + "Description": [ + "Bellari" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "brw" + }, + { + "Type": 1, + "SubTag": "brx", + "Description": [ + "Bodo (India)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "brx" + }, + { + "Type": 1, + "SubTag": "bry", + "Description": [ + "Burui" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bry" + }, + { + "Type": 1, + "SubTag": "brz", + "Description": [ + "Bilbil" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "brz" + }, + { + "Type": 1, + "SubTag": "bsa", + "Description": [ + "Abinomn" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bsa" + }, + { + "Type": 1, + "SubTag": "bsb", + "Description": [ + "Brunei Bisaya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bsb" + }, + { + "Type": 1, + "SubTag": "bsc", + "Description": [ + "Bassari", + "Oniyan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bsc" + }, + { + "Type": 1, + "SubTag": "bse", + "Description": [ + "Wushi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bse" + }, + { + "Type": 1, + "SubTag": "bsf", + "Description": [ + "Bauchi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bsf" + }, + { + "Type": 1, + "SubTag": "bsg", + "Description": [ + "Bashkardi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bsg" + }, + { + "Type": 1, + "SubTag": "bsh", + "Description": [ + "Kati" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bsh" + }, + { + "Type": 1, + "SubTag": "bsi", + "Description": [ + "Bassossi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bsi" + }, + { + "Type": 1, + "SubTag": "bsj", + "Description": [ + "Bangwinji" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bsj" + }, + { + "Type": 1, + "SubTag": "bsk", + "Description": [ + "Burushaski" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bsk" + }, + { + "Type": 1, + "SubTag": "bsl", + "Description": [ + "Basa-Gumna" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bsl" + }, + { + "Type": 1, + "SubTag": "bsm", + "Description": [ + "Busami" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bsm" + }, + { + "Type": 1, + "SubTag": "bsn", + "Description": [ + "Barasana-Eduria" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bsn" + }, + { + "Type": 1, + "SubTag": "bso", + "Description": [ + "Buso" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bso" + }, + { + "Type": 1, + "SubTag": "bsp", + "Description": [ + "Baga Sitemu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bsp" + }, + { + "Type": 1, + "SubTag": "bsq", + "Description": [ + "Bassa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bsq" + }, + { + "Type": 1, + "SubTag": "bsr", + "Description": [ + "Bassa-Kontagora" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bsr" + }, + { + "Type": 1, + "SubTag": "bss", + "Description": [ + "Akoose" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bss" + }, + { + "Type": 1, + "SubTag": "bst", + "Description": [ + "Basketo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bst" + }, + { + "Type": 1, + "SubTag": "bsu", + "Description": [ + "Bahonsuai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bsu" + }, + { + "Type": 1, + "SubTag": "bsv", + "Description": [ + "Baga Soban\u00E9" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bsv" + }, + { + "Type": 1, + "SubTag": "bsw", + "Description": [ + "Baiso" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bsw" + }, + { + "Type": 1, + "SubTag": "bsx", + "Description": [ + "Yangkam" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bsx" + }, + { + "Type": 1, + "SubTag": "bsy", + "Description": [ + "Sabah Bisaya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bsy" + }, + { + "Type": 1, + "SubTag": "bta", + "Description": [ + "Bata" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bta" + }, + { + "Type": 1, + "SubTag": "btb", + "Description": [ + "Beti (Cameroon)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2010-03-11", + "Comments": [ + "see beb, bum, bxp, eto, ewo, fan, mct" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "btb" + }, + { + "Type": 1, + "SubTag": "btc", + "Description": [ + "Bati (Cameroon)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "btc" + }, + { + "Type": 1, + "SubTag": "btd", + "Description": [ + "Batak Dairi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "btd" + }, + { + "Type": 1, + "SubTag": "bte", + "Description": [ + "Gamo-Ningi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bte" + }, + { + "Type": 1, + "SubTag": "btf", + "Description": [ + "Birgit" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "btf" + }, + { + "Type": 1, + "SubTag": "btg", + "Description": [ + "Gagnoa B\u00E9t\u00E9" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "btg" + }, + { + "Type": 1, + "SubTag": "bth", + "Description": [ + "Biatah Bidayuh" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bth" + }, + { + "Type": 1, + "SubTag": "bti", + "Description": [ + "Burate" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bti" + }, + { + "Type": 1, + "SubTag": "btj", + "Description": [ + "Bacanese Malay" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ms", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "btj" + }, + { + "Type": 1, + "SubTag": "btk", + "Description": [ + "Batak languages" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "btk" + }, + { + "Type": 1, + "SubTag": "btl", + "Description": [ + "Bhatola" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2016-05-30", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "btl" + }, + { + "Type": 1, + "SubTag": "btm", + "Description": [ + "Batak Mandailing" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "btm" + }, + { + "Type": 1, + "SubTag": "btn", + "Description": [ + "Ratagnon" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "btn" + }, + { + "Type": 1, + "SubTag": "bto", + "Description": [ + "Rinconada Bikol" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "bik", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bto" + }, + { + "Type": 1, + "SubTag": "btp", + "Description": [ + "Budibud" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "btp" + }, + { + "Type": 1, + "SubTag": "btq", + "Description": [ + "Batek" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "btq" + }, + { + "Type": 1, + "SubTag": "btr", + "Description": [ + "Baetora" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "btr" + }, + { + "Type": 1, + "SubTag": "bts", + "Description": [ + "Batak Simalungun" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bts" + }, + { + "Type": 1, + "SubTag": "btt", + "Description": [ + "Bete-Bendi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "btt" + }, + { + "Type": 1, + "SubTag": "btu", + "Description": [ + "Batu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "btu" + }, + { + "Type": 1, + "SubTag": "btv", + "Description": [ + "Bateri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "btv" + }, + { + "Type": 1, + "SubTag": "btw", + "Description": [ + "Butuanon" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "btw" + }, + { + "Type": 1, + "SubTag": "btx", + "Description": [ + "Batak Karo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "btx" + }, + { + "Type": 1, + "SubTag": "bty", + "Description": [ + "Bobot" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bty" + }, + { + "Type": 1, + "SubTag": "btz", + "Description": [ + "Batak Alas-Kluet" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "btz" + }, + { + "Type": 1, + "SubTag": "bua", + "Description": [ + "Buriat" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "macrolanguage", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bua" + }, + { + "Type": 1, + "SubTag": "bub", + "Description": [ + "Bua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bub" + }, + { + "Type": 1, + "SubTag": "buc", + "Description": [ + "Bushi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "buc" + }, + { + "Type": 1, + "SubTag": "bud", + "Description": [ + "Ntcham" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bud" + }, + { + "Type": 1, + "SubTag": "bue", + "Description": [ + "Beothuk" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bue" + }, + { + "Type": 1, + "SubTag": "buf", + "Description": [ + "Bushoong" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "buf" + }, + { + "Type": 1, + "SubTag": "bug", + "Description": [ + "Buginese" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bug" + }, + { + "Type": 1, + "SubTag": "buh", + "Description": [ + "Younuo Bunu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "buh" + }, + { + "Type": 1, + "SubTag": "bui", + "Description": [ + "Bongili" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bui" + }, + { + "Type": 1, + "SubTag": "buj", + "Description": [ + "Basa-Gurmana" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "buj" + }, + { + "Type": 1, + "SubTag": "buk", + "Description": [ + "Bugawac" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "buk" + }, + { + "Type": 1, + "SubTag": "bum", + "Description": [ + "Bulu (Cameroon)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bum" + }, + { + "Type": 1, + "SubTag": "bun", + "Description": [ + "Sherbro" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bun" + }, + { + "Type": 1, + "SubTag": "buo", + "Description": [ + "Terei" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "buo" + }, + { + "Type": 1, + "SubTag": "bup", + "Description": [ + "Busoa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bup" + }, + { + "Type": 1, + "SubTag": "buq", + "Description": [ + "Brem" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "buq" + }, + { + "Type": 1, + "SubTag": "bus", + "Description": [ + "Bokobaru" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bus" + }, + { + "Type": 1, + "SubTag": "but", + "Description": [ + "Bungain" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "but" + }, + { + "Type": 1, + "SubTag": "buu", + "Description": [ + "Budu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "buu" + }, + { + "Type": 1, + "SubTag": "buv", + "Description": [ + "Bun" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "buv" + }, + { + "Type": 1, + "SubTag": "buw", + "Description": [ + "Bubi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "buw" + }, + { + "Type": 1, + "SubTag": "bux", + "Description": [ + "Boghom" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bux" + }, + { + "Type": 1, + "SubTag": "buy", + "Description": [ + "Bullom So" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "buy" + }, + { + "Type": 1, + "SubTag": "buz", + "Description": [ + "Bukwen" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "buz" + }, + { + "Type": 1, + "SubTag": "bva", + "Description": [ + "Barein" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bva" + }, + { + "Type": 1, + "SubTag": "bvb", + "Description": [ + "Bube" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bvb" + }, + { + "Type": 1, + "SubTag": "bvc", + "Description": [ + "Baelelea" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bvc" + }, + { + "Type": 1, + "SubTag": "bvd", + "Description": [ + "Baeggu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bvd" + }, + { + "Type": 1, + "SubTag": "bve", + "Description": [ + "Berau Malay" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ms", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bve" + }, + { + "Type": 1, + "SubTag": "bvf", + "Description": [ + "Boor" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bvf" + }, + { + "Type": 1, + "SubTag": "bvg", + "Description": [ + "Bonkeng" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bvg" + }, + { + "Type": 1, + "SubTag": "bvh", + "Description": [ + "Bure" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bvh" + }, + { + "Type": 1, + "SubTag": "bvi", + "Description": [ + "Belanda Viri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bvi" + }, + { + "Type": 1, + "SubTag": "bvj", + "Description": [ + "Baan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bvj" + }, + { + "Type": 1, + "SubTag": "bvk", + "Description": [ + "Bukat" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bvk" + }, + { + "Type": 1, + "SubTag": "bvl", + "Description": [ + "Bolivian Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bvl" + }, + { + "Type": 1, + "SubTag": "bvm", + "Description": [ + "Bamunka" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bvm" + }, + { + "Type": 1, + "SubTag": "bvn", + "Description": [ + "Buna" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bvn" + }, + { + "Type": 1, + "SubTag": "bvo", + "Description": [ + "Bolgo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bvo" + }, + { + "Type": 1, + "SubTag": "bvp", + "Description": [ + "Bumang" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bvp" + }, + { + "Type": 1, + "SubTag": "bvq", + "Description": [ + "Birri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bvq" + }, + { + "Type": 1, + "SubTag": "bvr", + "Description": [ + "Burarra" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bvr" + }, + { + "Type": 1, + "SubTag": "bvt", + "Description": [ + "Bati (Indonesia)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bvt" + }, + { + "Type": 1, + "SubTag": "bvu", + "Description": [ + "Bukit Malay" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ms", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bvu" + }, + { + "Type": 1, + "SubTag": "bvv", + "Description": [ + "Baniva" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bvv" + }, + { + "Type": 1, + "SubTag": "bvw", + "Description": [ + "Boga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bvw" + }, + { + "Type": 1, + "SubTag": "bvx", + "Description": [ + "Dibole" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bvx" + }, + { + "Type": 1, + "SubTag": "bvy", + "Description": [ + "Baybayanon" + ], + "Added": "2010-03-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bvy" + }, + { + "Type": 1, + "SubTag": "bvz", + "Description": [ + "Bauzi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bvz" + }, + { + "Type": 1, + "SubTag": "bwa", + "Description": [ + "Bwatoo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bwa" + }, + { + "Type": 1, + "SubTag": "bwb", + "Description": [ + "Namosi-Naitasiri-Serua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bwb" + }, + { + "Type": 1, + "SubTag": "bwc", + "Description": [ + "Bwile" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bwc" + }, + { + "Type": 1, + "SubTag": "bwd", + "Description": [ + "Bwaidoka" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bwd" + }, + { + "Type": 1, + "SubTag": "bwe", + "Description": [ + "Bwe Karen" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bwe" + }, + { + "Type": 1, + "SubTag": "bwf", + "Description": [ + "Boselewa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bwf" + }, + { + "Type": 1, + "SubTag": "bwg", + "Description": [ + "Barwe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bwg" + }, + { + "Type": 1, + "SubTag": "bwh", + "Description": [ + "Bishuo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bwh" + }, + { + "Type": 1, + "SubTag": "bwi", + "Description": [ + "Baniwa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bwi" + }, + { + "Type": 1, + "SubTag": "bwj", + "Description": [ + "L\u00E1\u00E1 L\u00E1\u00E1 Bwamu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bwj" + }, + { + "Type": 1, + "SubTag": "bwk", + "Description": [ + "Bauwaki" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bwk" + }, + { + "Type": 1, + "SubTag": "bwl", + "Description": [ + "Bwela" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bwl" + }, + { + "Type": 1, + "SubTag": "bwm", + "Description": [ + "Biwat" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bwm" + }, + { + "Type": 1, + "SubTag": "bwn", + "Description": [ + "Wunai Bunu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bwn" + }, + { + "Type": 1, + "SubTag": "bwo", + "Description": [ + "Boro (Ethiopia)", + "Borna (Ethiopia)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bwo" + }, + { + "Type": 1, + "SubTag": "bwp", + "Description": [ + "Mandobo Bawah" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bwp" + }, + { + "Type": 1, + "SubTag": "bwq", + "Description": [ + "Southern Bobo Madar\u00E9" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bwq" + }, + { + "Type": 1, + "SubTag": "bwr", + "Description": [ + "Bura-Pabir" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bwr" + }, + { + "Type": 1, + "SubTag": "bws", + "Description": [ + "Bomboma" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bws" + }, + { + "Type": 1, + "SubTag": "bwt", + "Description": [ + "Bafaw-Balong" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bwt" + }, + { + "Type": 1, + "SubTag": "bwu", + "Description": [ + "Buli (Ghana)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bwu" + }, + { + "Type": 1, + "SubTag": "bww", + "Description": [ + "Bwa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bww" + }, + { + "Type": 1, + "SubTag": "bwx", + "Description": [ + "Bu-Nao Bunu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bwx" + }, + { + "Type": 1, + "SubTag": "bwy", + "Description": [ + "Cwi Bwamu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bwy" + }, + { + "Type": 1, + "SubTag": "bwz", + "Description": [ + "Bwisi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bwz" + }, + { + "Type": 1, + "SubTag": "bxa", + "Description": [ + "Tairaha" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bxa" + }, + { + "Type": 1, + "SubTag": "bxb", + "Description": [ + "Belanda Bor" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bxb" + }, + { + "Type": 1, + "SubTag": "bxc", + "Description": [ + "Molengue" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bxc" + }, + { + "Type": 1, + "SubTag": "bxd", + "Description": [ + "Pela" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bxd" + }, + { + "Type": 1, + "SubTag": "bxe", + "Description": [ + "Birale" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bxe" + }, + { + "Type": 1, + "SubTag": "bxf", + "Description": [ + "Bilur", + "Minigir" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [ + "see also vmg" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bxf" + }, + { + "Type": 1, + "SubTag": "bxg", + "Description": [ + "Bangala" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bxg" + }, + { + "Type": 1, + "SubTag": "bxh", + "Description": [ + "Buhutu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bxh" + }, + { + "Type": 1, + "SubTag": "bxi", + "Description": [ + "Pirlatapa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bxi" + }, + { + "Type": 1, + "SubTag": "bxj", + "Description": [ + "Bayungu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bxj" + }, + { + "Type": 1, + "SubTag": "bxk", + "Description": [ + "Bukusu", + "Lubukusu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "luy", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bxk" + }, + { + "Type": 1, + "SubTag": "bxl", + "Description": [ + "Jalkunan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bxl" + }, + { + "Type": 1, + "SubTag": "bxm", + "Description": [ + "Mongolia Buriat" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "bua", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bxm" + }, + { + "Type": 1, + "SubTag": "bxn", + "Description": [ + "Burduna" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bxn" + }, + { + "Type": 1, + "SubTag": "bxo", + "Description": [ + "Barikanchi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bxo" + }, + { + "Type": 1, + "SubTag": "bxp", + "Description": [ + "Bebil" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bxp" + }, + { + "Type": 1, + "SubTag": "bxq", + "Description": [ + "Beele" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bxq" + }, + { + "Type": 1, + "SubTag": "bxr", + "Description": [ + "Russia Buriat" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "bua", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bxr" + }, + { + "Type": 1, + "SubTag": "bxs", + "Description": [ + "Busam" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bxs" + }, + { + "Type": 1, + "SubTag": "bxu", + "Description": [ + "China Buriat" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "bua", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bxu" + }, + { + "Type": 1, + "SubTag": "bxv", + "Description": [ + "Berakou" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bxv" + }, + { + "Type": 1, + "SubTag": "bxw", + "Description": [ + "Bankagooma" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bxw" + }, + { + "Type": 1, + "SubTag": "bxx", + "Description": [ + "Borna (Democratic Republic of Congo)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2015-02-12", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bxx" + }, + { + "Type": 1, + "SubTag": "bxz", + "Description": [ + "Binahari" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bxz" + }, + { + "Type": 1, + "SubTag": "bya", + "Description": [ + "Batak" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bya" + }, + { + "Type": 1, + "SubTag": "byb", + "Description": [ + "Bikya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "byb" + }, + { + "Type": 1, + "SubTag": "byc", + "Description": [ + "Ubaghara" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "byc" + }, + { + "Type": 1, + "SubTag": "byd", + "Description": [ + "Benyadu\u0027" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "byd" + }, + { + "Type": 1, + "SubTag": "bye", + "Description": [ + "Pouye" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bye" + }, + { + "Type": 1, + "SubTag": "byf", + "Description": [ + "Bete" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "byf" + }, + { + "Type": 1, + "SubTag": "byg", + "Description": [ + "Baygo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "byg" + }, + { + "Type": 1, + "SubTag": "byh", + "Description": [ + "Bhujel" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "byh" + }, + { + "Type": 1, + "SubTag": "byi", + "Description": [ + "Buyu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "byi" + }, + { + "Type": 1, + "SubTag": "byj", + "Description": [ + "Bina (Nigeria)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "byj" + }, + { + "Type": 1, + "SubTag": "byk", + "Description": [ + "Biao" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "byk" + }, + { + "Type": 1, + "SubTag": "byl", + "Description": [ + "Bayono" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "byl" + }, + { + "Type": 1, + "SubTag": "bym", + "Description": [ + "Bidjara" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bym" + }, + { + "Type": 1, + "SubTag": "byn", + "Description": [ + "Bilin", + "Blin" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "byn" + }, + { + "Type": 1, + "SubTag": "byo", + "Description": [ + "Biyo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "byo" + }, + { + "Type": 1, + "SubTag": "byp", + "Description": [ + "Bumaji" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "byp" + }, + { + "Type": 1, + "SubTag": "byq", + "Description": [ + "Basay" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "byq" + }, + { + "Type": 1, + "SubTag": "byr", + "Description": [ + "Baruya", + "Yipma" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "byr" + }, + { + "Type": 1, + "SubTag": "bys", + "Description": [ + "Burak" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bys" + }, + { + "Type": 1, + "SubTag": "byt", + "Description": [ + "Berti" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "byt" + }, + { + "Type": 1, + "SubTag": "byv", + "Description": [ + "Medumba" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "byv" + }, + { + "Type": 1, + "SubTag": "byw", + "Description": [ + "Belhariya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "byw" + }, + { + "Type": 1, + "SubTag": "byx", + "Description": [ + "Qaqet" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "byx" + }, + { + "Type": 1, + "SubTag": "byy", + "Description": [ + "Buya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2015-02-12", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "byy" + }, + { + "Type": 1, + "SubTag": "byz", + "Description": [ + "Banaro" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "byz" + }, + { + "Type": 1, + "SubTag": "bza", + "Description": [ + "Bandi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bza" + }, + { + "Type": 1, + "SubTag": "bzb", + "Description": [ + "Andio" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bzb" + }, + { + "Type": 1, + "SubTag": "bzc", + "Description": [ + "Southern Betsimisaraka Malagasy" + ], + "Added": "2011-08-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "mg", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bzc" + }, + { + "Type": 1, + "SubTag": "bzd", + "Description": [ + "Bribri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bzd" + }, + { + "Type": 1, + "SubTag": "bze", + "Description": [ + "Jenaama Bozo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bze" + }, + { + "Type": 1, + "SubTag": "bzf", + "Description": [ + "Boikin" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bzf" + }, + { + "Type": 1, + "SubTag": "bzg", + "Description": [ + "Babuza" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bzg" + }, + { + "Type": 1, + "SubTag": "bzh", + "Description": [ + "Mapos Buang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bzh" + }, + { + "Type": 1, + "SubTag": "bzi", + "Description": [ + "Bisu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bzi" + }, + { + "Type": 1, + "SubTag": "bzj", + "Description": [ + "Belize Kriol English" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bzj" + }, + { + "Type": 1, + "SubTag": "bzk", + "Description": [ + "Nicaragua Creole English" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bzk" + }, + { + "Type": 1, + "SubTag": "bzl", + "Description": [ + "Boano (Sulawesi)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bzl" + }, + { + "Type": 1, + "SubTag": "bzm", + "Description": [ + "Bolondo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bzm" + }, + { + "Type": 1, + "SubTag": "bzn", + "Description": [ + "Boano (Maluku)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bzn" + }, + { + "Type": 1, + "SubTag": "bzo", + "Description": [ + "Bozaba" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bzo" + }, + { + "Type": 1, + "SubTag": "bzp", + "Description": [ + "Kemberano" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bzp" + }, + { + "Type": 1, + "SubTag": "bzq", + "Description": [ + "Buli (Indonesia)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bzq" + }, + { + "Type": 1, + "SubTag": "bzr", + "Description": [ + "Biri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bzr" + }, + { + "Type": 1, + "SubTag": "bzs", + "Description": [ + "Brazilian Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bzs" + }, + { + "Type": 1, + "SubTag": "bzt", + "Description": [ + "Brithenig" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bzt" + }, + { + "Type": 1, + "SubTag": "bzu", + "Description": [ + "Burmeso" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bzu" + }, + { + "Type": 1, + "SubTag": "bzv", + "Description": [ + "Naami" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bzv" + }, + { + "Type": 1, + "SubTag": "bzw", + "Description": [ + "Basa (Nigeria)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bzw" + }, + { + "Type": 1, + "SubTag": "bzx", + "Description": [ + "K\u025Bl\u025Bngaxo Bozo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bzx" + }, + { + "Type": 1, + "SubTag": "bzy", + "Description": [ + "Obanliku" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bzy" + }, + { + "Type": 1, + "SubTag": "bzz", + "Description": [ + "Evant" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "bzz" + }, + { + "Type": 1, + "SubTag": "caa", + "Description": [ + "Chort\u00ED" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "caa" + }, + { + "Type": 1, + "SubTag": "cab", + "Description": [ + "Garifuna" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cab" + }, + { + "Type": 1, + "SubTag": "cac", + "Description": [ + "Chuj" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cac" + }, + { + "Type": 1, + "SubTag": "cad", + "Description": [ + "Caddo" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cad" + }, + { + "Type": 1, + "SubTag": "cae", + "Description": [ + "Lehar", + "Laalaa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cae" + }, + { + "Type": 1, + "SubTag": "caf", + "Description": [ + "Southern Carrier" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "caf" + }, + { + "Type": 1, + "SubTag": "cag", + "Description": [ + "Nivacl\u00E9" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cag" + }, + { + "Type": 1, + "SubTag": "cah", + "Description": [ + "Cahuarano" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cah" + }, + { + "Type": 1, + "SubTag": "cai", + "Description": [ + "Central American Indian languages" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cai" + }, + { + "Type": 1, + "SubTag": "caj", + "Description": [ + "Chan\u00E9" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "caj" + }, + { + "Type": 1, + "SubTag": "cak", + "Description": [ + "Kaqchikel", + "Cakchiquel" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cak" + }, + { + "Type": 1, + "SubTag": "cal", + "Description": [ + "Carolinian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cal" + }, + { + "Type": 1, + "SubTag": "cam", + "Description": [ + "Cemuh\u00EE" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cam" + }, + { + "Type": 1, + "SubTag": "can", + "Description": [ + "Chambri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "can" + }, + { + "Type": 1, + "SubTag": "cao", + "Description": [ + "Ch\u00E1cobo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cao" + }, + { + "Type": 1, + "SubTag": "cap", + "Description": [ + "Chipaya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cap" + }, + { + "Type": 1, + "SubTag": "caq", + "Description": [ + "Car Nicobarese" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "caq" + }, + { + "Type": 1, + "SubTag": "car", + "Description": [ + "Galibi Carib" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "car" + }, + { + "Type": 1, + "SubTag": "cas", + "Description": [ + "Tsiman\u00E9" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cas" + }, + { + "Type": 1, + "SubTag": "cau", + "Description": [ + "Caucasian languages" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cau" + }, + { + "Type": 1, + "SubTag": "cav", + "Description": [ + "Cavine\u00F1a" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cav" + }, + { + "Type": 1, + "SubTag": "caw", + "Description": [ + "Callawalla" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "caw" + }, + { + "Type": 1, + "SubTag": "cax", + "Description": [ + "Chiquitano" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cax" + }, + { + "Type": 1, + "SubTag": "cay", + "Description": [ + "Cayuga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cay" + }, + { + "Type": 1, + "SubTag": "caz", + "Description": [ + "Canichana" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "caz" + }, + { + "Type": 1, + "SubTag": "cba", + "Description": [ + "Chibchan languages" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cba" + }, + { + "Type": 1, + "SubTag": "cbb", + "Description": [ + "Cabiyar\u00ED" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cbb" + }, + { + "Type": 1, + "SubTag": "cbc", + "Description": [ + "Carapana" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cbc" + }, + { + "Type": 1, + "SubTag": "cbd", + "Description": [ + "Carijona" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cbd" + }, + { + "Type": 1, + "SubTag": "cbe", + "Description": [ + "Chipiajes" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2016-05-30", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cbe" + }, + { + "Type": 1, + "SubTag": "cbg", + "Description": [ + "Chimila" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cbg" + }, + { + "Type": 1, + "SubTag": "cbh", + "Description": [ + "Cagua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2016-05-30", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cbh" + }, + { + "Type": 1, + "SubTag": "cbi", + "Description": [ + "Chachi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cbi" + }, + { + "Type": 1, + "SubTag": "cbj", + "Description": [ + "Ede Cabe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cbj" + }, + { + "Type": 1, + "SubTag": "cbk", + "Description": [ + "Chavacano" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cbk" + }, + { + "Type": 1, + "SubTag": "cbl", + "Description": [ + "Bualkhaw Chin" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cbl" + }, + { + "Type": 1, + "SubTag": "cbn", + "Description": [ + "Nyahkur" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cbn" + }, + { + "Type": 1, + "SubTag": "cbo", + "Description": [ + "Izora" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cbo" + }, + { + "Type": 1, + "SubTag": "cbq", + "Description": [ + "Tsucuba", + "Cuba" + ], + "Added": "2015-02-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cbq" + }, + { + "Type": 1, + "SubTag": "cbr", + "Description": [ + "Cashibo-Cacataibo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cbr" + }, + { + "Type": 1, + "SubTag": "cbs", + "Description": [ + "Cashinahua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cbs" + }, + { + "Type": 1, + "SubTag": "cbt", + "Description": [ + "Chayahuita" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cbt" + }, + { + "Type": 1, + "SubTag": "cbu", + "Description": [ + "Candoshi-Shapra" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cbu" + }, + { + "Type": 1, + "SubTag": "cbv", + "Description": [ + "Cacua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cbv" + }, + { + "Type": 1, + "SubTag": "cbw", + "Description": [ + "Kinabalian" + ], + "Added": "2010-03-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cbw" + }, + { + "Type": 1, + "SubTag": "cby", + "Description": [ + "Carabayo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cby" + }, + { + "Type": 1, + "SubTag": "cca", + "Description": [ + "Cauca" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2020-03-28", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cca" + }, + { + "Type": 1, + "SubTag": "ccc", + "Description": [ + "Chamicuro" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ccc" + }, + { + "Type": 1, + "SubTag": "ccd", + "Description": [ + "Cafundo Creole" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ccd" + }, + { + "Type": 1, + "SubTag": "cce", + "Description": [ + "Chopi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cce" + }, + { + "Type": 1, + "SubTag": "ccg", + "Description": [ + "Samba Daka" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ccg" + }, + { + "Type": 1, + "SubTag": "cch", + "Description": [ + "Atsam" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cch" + }, + { + "Type": 1, + "SubTag": "ccj", + "Description": [ + "Kasanga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ccj" + }, + { + "Type": 1, + "SubTag": "ccl", + "Description": [ + "Cutchi-Swahili" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ccl" + }, + { + "Type": 1, + "SubTag": "ccm", + "Description": [ + "Malaccan Creole Malay" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ccm" + }, + { + "Type": 1, + "SubTag": "ccn", + "Description": [ + "North Caucasian languages" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ccn" + }, + { + "Type": 1, + "SubTag": "cco", + "Description": [ + "Comaltepec Chinantec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cco" + }, + { + "Type": 1, + "SubTag": "ccp", + "Description": [ + "Chakma" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ccp" + }, + { + "Type": 1, + "SubTag": "ccq", + "Description": [ + "Chaungtha" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2012-08-12", + "Comments": [], + "Prefix": [], + "PreferredValue": "rki", + "Tag": "", + "TagAny": "ccq" + }, + { + "Type": 1, + "SubTag": "ccr", + "Description": [ + "Cacaopera" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ccr" + }, + { + "Type": 1, + "SubTag": "ccs", + "Description": [ + "South Caucasian languages" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ccs" + }, + { + "Type": 1, + "SubTag": "cda", + "Description": [ + "Choni" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cda" + }, + { + "Type": 1, + "SubTag": "cdc", + "Description": [ + "Chadic languages" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cdc" + }, + { + "Type": 1, + "SubTag": "cdd", + "Description": [ + "Caddoan languages" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cdd" + }, + { + "Type": 1, + "SubTag": "cde", + "Description": [ + "Chenchu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cde" + }, + { + "Type": 1, + "SubTag": "cdf", + "Description": [ + "Chiru" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cdf" + }, + { + "Type": 1, + "SubTag": "cdg", + "Description": [ + "Chamari" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2020-03-28", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cdg" + }, + { + "Type": 1, + "SubTag": "cdh", + "Description": [ + "Chambeali" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cdh" + }, + { + "Type": 1, + "SubTag": "cdi", + "Description": [ + "Chodri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cdi" + }, + { + "Type": 1, + "SubTag": "cdj", + "Description": [ + "Churahi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cdj" + }, + { + "Type": 1, + "SubTag": "cdm", + "Description": [ + "Chepang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cdm" + }, + { + "Type": 1, + "SubTag": "cdn", + "Description": [ + "Chaudangsi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cdn" + }, + { + "Type": 1, + "SubTag": "cdo", + "Description": [ + "Min Dong Chinese" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zh", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cdo" + }, + { + "Type": 1, + "SubTag": "cdr", + "Description": [ + "Cinda-Regi-Tiyal" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cdr" + }, + { + "Type": 1, + "SubTag": "cds", + "Description": [ + "Chadian Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cds" + }, + { + "Type": 1, + "SubTag": "cdy", + "Description": [ + "Chadong" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cdy" + }, + { + "Type": 1, + "SubTag": "cdz", + "Description": [ + "Koda" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cdz" + }, + { + "Type": 1, + "SubTag": "cea", + "Description": [ + "Lower Chehalis" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cea" + }, + { + "Type": 1, + "SubTag": "ceb", + "Description": [ + "Cebuano" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ceb" + }, + { + "Type": 1, + "SubTag": "ceg", + "Description": [ + "Chamacoco" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ceg" + }, + { + "Type": 1, + "SubTag": "cek", + "Description": [ + "Eastern Khumi Chin" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cek" + }, + { + "Type": 1, + "SubTag": "cel", + "Description": [ + "Celtic languages" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cel" + }, + { + "Type": 1, + "SubTag": "cen", + "Description": [ + "Cen" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cen" + }, + { + "Type": 1, + "SubTag": "cet", + "Description": [ + "Cent\u00FA\u00FAm" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cet" + }, + { + "Type": 1, + "SubTag": "cey", + "Description": [ + "Ekai Chin" + ], + "Added": "2019-04-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cey" + }, + { + "Type": 1, + "SubTag": "cfa", + "Description": [ + "Dijim-Bwilim" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cfa" + }, + { + "Type": 1, + "SubTag": "cfd", + "Description": [ + "Cara" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cfd" + }, + { + "Type": 1, + "SubTag": "cfg", + "Description": [ + "Como Karim" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cfg" + }, + { + "Type": 1, + "SubTag": "cfm", + "Description": [ + "Falam Chin" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cfm" + }, + { + "Type": 1, + "SubTag": "cga", + "Description": [ + "Changriwa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cga" + }, + { + "Type": 1, + "SubTag": "cgc", + "Description": [ + "Kagayanen" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cgc" + }, + { + "Type": 1, + "SubTag": "cgg", + "Description": [ + "Chiga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cgg" + }, + { + "Type": 1, + "SubTag": "cgk", + "Description": [ + "Chocangacakha" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cgk" + }, + { + "Type": 1, + "SubTag": "chb", + "Description": [ + "Chibcha" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "chb" + }, + { + "Type": 1, + "SubTag": "chc", + "Description": [ + "Catawba" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "chc" + }, + { + "Type": 1, + "SubTag": "chd", + "Description": [ + "Highland Oaxaca Chontal" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "chd" + }, + { + "Type": 1, + "SubTag": "chf", + "Description": [ + "Tabasco Chontal" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "chf" + }, + { + "Type": 1, + "SubTag": "chg", + "Description": [ + "Chagatai" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "chg" + }, + { + "Type": 1, + "SubTag": "chh", + "Description": [ + "Chinook" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "chh" + }, + { + "Type": 1, + "SubTag": "chj", + "Description": [ + "Ojitl\u00E1n Chinantec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "chj" + }, + { + "Type": 1, + "SubTag": "chk", + "Description": [ + "Chuukese" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "chk" + }, + { + "Type": 1, + "SubTag": "chl", + "Description": [ + "Cahuilla" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "chl" + }, + { + "Type": 1, + "SubTag": "chm", + "Description": [ + "Mari (Russia)" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "macrolanguage", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "chm" + }, + { + "Type": 1, + "SubTag": "chn", + "Description": [ + "Chinook jargon" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "chn" + }, + { + "Type": 1, + "SubTag": "cho", + "Description": [ + "Choctaw" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cho" + }, + { + "Type": 1, + "SubTag": "chp", + "Description": [ + "Chipewyan", + "Dene Suline" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "chp" + }, + { + "Type": 1, + "SubTag": "chq", + "Description": [ + "Quiotepec Chinantec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "chq" + }, + { + "Type": 1, + "SubTag": "chr", + "Description": [ + "Cherokee" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "chr" + }, + { + "Type": 1, + "SubTag": "cht", + "Description": [ + "Chol\u00F3n" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cht" + }, + { + "Type": 1, + "SubTag": "chw", + "Description": [ + "Chuwabu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "chw" + }, + { + "Type": 1, + "SubTag": "chx", + "Description": [ + "Chantyal" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "chx" + }, + { + "Type": 1, + "SubTag": "chy", + "Description": [ + "Cheyenne" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "chy" + }, + { + "Type": 1, + "SubTag": "chz", + "Description": [ + "Ozumac\u00EDn Chinantec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "chz" + }, + { + "Type": 1, + "SubTag": "cia", + "Description": [ + "Cia-Cia" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cia" + }, + { + "Type": 1, + "SubTag": "cib", + "Description": [ + "Ci Gbe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cib" + }, + { + "Type": 1, + "SubTag": "cic", + "Description": [ + "Chickasaw" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cic" + }, + { + "Type": 1, + "SubTag": "cid", + "Description": [ + "Chimariko" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cid" + }, + { + "Type": 1, + "SubTag": "cie", + "Description": [ + "Cineni" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cie" + }, + { + "Type": 1, + "SubTag": "cih", + "Description": [ + "Chinali" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cih" + }, + { + "Type": 1, + "SubTag": "cik", + "Description": [ + "Chitkuli Kinnauri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cik" + }, + { + "Type": 1, + "SubTag": "cim", + "Description": [ + "Cimbrian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cim" + }, + { + "Type": 1, + "SubTag": "cin", + "Description": [ + "Cinta Larga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cin" + }, + { + "Type": 1, + "SubTag": "cip", + "Description": [ + "Chiapanec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cip" + }, + { + "Type": 1, + "SubTag": "cir", + "Description": [ + "Tiri", + "Ham\u00E9a", + "M\u00E9a" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cir" + }, + { + "Type": 1, + "SubTag": "ciw", + "Description": [ + "Chippewa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "oj", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ciw" + }, + { + "Type": 1, + "SubTag": "ciy", + "Description": [ + "Chaima" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ciy" + }, + { + "Type": 1, + "SubTag": "cja", + "Description": [ + "Western Cham" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cja" + }, + { + "Type": 1, + "SubTag": "cje", + "Description": [ + "Chru" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cje" + }, + { + "Type": 1, + "SubTag": "cjh", + "Description": [ + "Upper Chehalis" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cjh" + }, + { + "Type": 1, + "SubTag": "cji", + "Description": [ + "Chamalal" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cji" + }, + { + "Type": 1, + "SubTag": "cjk", + "Description": [ + "Chokwe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cjk" + }, + { + "Type": 1, + "SubTag": "cjm", + "Description": [ + "Eastern Cham" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cjm" + }, + { + "Type": 1, + "SubTag": "cjn", + "Description": [ + "Chenapian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cjn" + }, + { + "Type": 1, + "SubTag": "cjo", + "Description": [ + "Ash\u00E9ninka Pajonal" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cjo" + }, + { + "Type": 1, + "SubTag": "cjp", + "Description": [ + "Cab\u00E9car" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cjp" + }, + { + "Type": 1, + "SubTag": "cjr", + "Description": [ + "Chorotega" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2010-03-11", + "Comments": [], + "Prefix": [], + "PreferredValue": "mom", + "Tag": "", + "TagAny": "cjr" + }, + { + "Type": 1, + "SubTag": "cjs", + "Description": [ + "Shor" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cjs" + }, + { + "Type": 1, + "SubTag": "cjv", + "Description": [ + "Chuave" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cjv" + }, + { + "Type": 1, + "SubTag": "cjy", + "Description": [ + "Jinyu Chinese" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zh", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cjy" + }, + { + "Type": 1, + "SubTag": "cka", + "Description": [ + "Khumi Awa Chin" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2012-08-12", + "Comments": [], + "Prefix": [], + "PreferredValue": "cmr", + "Tag": "", + "TagAny": "cka" + }, + { + "Type": 1, + "SubTag": "ckb", + "Description": [ + "Central Kurdish" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ku", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ckb" + }, + { + "Type": 1, + "SubTag": "ckh", + "Description": [ + "Chak" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ckh" + }, + { + "Type": 1, + "SubTag": "ckl", + "Description": [ + "Cibak" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ckl" + }, + { + "Type": 1, + "SubTag": "ckm", + "Description": [ + "Chakavian" + ], + "Added": "2020-03-28", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ckm" + }, + { + "Type": 1, + "SubTag": "ckn", + "Description": [ + "Kaang Chin" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ckn" + }, + { + "Type": 1, + "SubTag": "cko", + "Description": [ + "Anufo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cko" + }, + { + "Type": 1, + "SubTag": "ckq", + "Description": [ + "Kajakse" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ckq" + }, + { + "Type": 1, + "SubTag": "ckr", + "Description": [ + "Kairak" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ckr" + }, + { + "Type": 1, + "SubTag": "cks", + "Description": [ + "Tayo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cks" + }, + { + "Type": 1, + "SubTag": "ckt", + "Description": [ + "Chukot" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ckt" + }, + { + "Type": 1, + "SubTag": "cku", + "Description": [ + "Koasati" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cku" + }, + { + "Type": 1, + "SubTag": "ckv", + "Description": [ + "Kavalan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ckv" + }, + { + "Type": 1, + "SubTag": "ckx", + "Description": [ + "Caka" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ckx" + }, + { + "Type": 1, + "SubTag": "cky", + "Description": [ + "Cakfem-Mushere" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cky" + }, + { + "Type": 1, + "SubTag": "ckz", + "Description": [ + "Cakchiquel-Quich\u00E9 Mixed Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ckz" + }, + { + "Type": 1, + "SubTag": "cla", + "Description": [ + "Ron" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cla" + }, + { + "Type": 1, + "SubTag": "clc", + "Description": [ + "Chilcotin" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "clc" + }, + { + "Type": 1, + "SubTag": "cld", + "Description": [ + "Chaldean Neo-Aramaic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "syr", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cld" + }, + { + "Type": 1, + "SubTag": "cle", + "Description": [ + "Lealao Chinantec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cle" + }, + { + "Type": 1, + "SubTag": "clh", + "Description": [ + "Chilisso" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "clh" + }, + { + "Type": 1, + "SubTag": "cli", + "Description": [ + "Chakali" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cli" + }, + { + "Type": 1, + "SubTag": "clj", + "Description": [ + "Laitu Chin" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "clj" + }, + { + "Type": 1, + "SubTag": "clk", + "Description": [ + "Idu-Mishmi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "clk" + }, + { + "Type": 1, + "SubTag": "cll", + "Description": [ + "Chala" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cll" + }, + { + "Type": 1, + "SubTag": "clm", + "Description": [ + "Clallam" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "clm" + }, + { + "Type": 1, + "SubTag": "clo", + "Description": [ + "Lowland Oaxaca Chontal" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "clo" + }, + { + "Type": 1, + "SubTag": "cls", + "Description": [ + "Classical Sanskrit" + ], + "Added": "2024-03-04", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "sa", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cls" + }, + { + "Type": 1, + "SubTag": "clt", + "Description": [ + "Lautu Chin" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "clt" + }, + { + "Type": 1, + "SubTag": "clu", + "Description": [ + "Caluyanun" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "clu" + }, + { + "Type": 1, + "SubTag": "clw", + "Description": [ + "Chulym" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "clw" + }, + { + "Type": 1, + "SubTag": "cly", + "Description": [ + "Eastern Highland Chatino" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cly" + }, + { + "Type": 1, + "SubTag": "cma", + "Description": [ + "Maa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cma" + }, + { + "Type": 1, + "SubTag": "cmc", + "Description": [ + "Chamic languages" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cmc" + }, + { + "Type": 1, + "SubTag": "cme", + "Description": [ + "Cerma" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cme" + }, + { + "Type": 1, + "SubTag": "cmg", + "Description": [ + "Classical Mongolian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cmg" + }, + { + "Type": 1, + "SubTag": "cmi", + "Description": [ + "Ember\u00E1-Cham\u00ED" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cmi" + }, + { + "Type": 1, + "SubTag": "cmk", + "Description": [ + "Chimakum" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2010-03-11", + "Comments": [], + "Prefix": [], + "PreferredValue": "xch", + "Tag": "", + "TagAny": "cmk" + }, + { + "Type": 1, + "SubTag": "cml", + "Description": [ + "Campalagian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cml" + }, + { + "Type": 1, + "SubTag": "cmm", + "Description": [ + "Michigamea" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cmm" + }, + { + "Type": 1, + "SubTag": "cmn", + "Description": [ + "Mandarin Chinese" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zh", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cmn" + }, + { + "Type": 1, + "SubTag": "cmo", + "Description": [ + "Central Mnong" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cmo" + }, + { + "Type": 1, + "SubTag": "cmr", + "Description": [ + "Mro-Khimi Chin" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cmr" + }, + { + "Type": 1, + "SubTag": "cms", + "Description": [ + "Messapic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cms" + }, + { + "Type": 1, + "SubTag": "cmt", + "Description": [ + "Camtho" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cmt" + }, + { + "Type": 1, + "SubTag": "cna", + "Description": [ + "Changthang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cna" + }, + { + "Type": 1, + "SubTag": "cnb", + "Description": [ + "Chinbon Chin" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cnb" + }, + { + "Type": 1, + "SubTag": "cnc", + "Description": [ + "C\u00F4\u00F4ng" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cnc" + }, + { + "Type": 1, + "SubTag": "cng", + "Description": [ + "Northern Qiang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cng" + }, + { + "Type": 1, + "SubTag": "cnh", + "Description": [ + "Hakha Chin", + "Haka Chin" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cnh" + }, + { + "Type": 1, + "SubTag": "cni", + "Description": [ + "Ash\u00E1ninka" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cni" + }, + { + "Type": 1, + "SubTag": "cnk", + "Description": [ + "Khumi Chin" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cnk" + }, + { + "Type": 1, + "SubTag": "cnl", + "Description": [ + "Lalana Chinantec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cnl" + }, + { + "Type": 1, + "SubTag": "cno", + "Description": [ + "Con" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cno" + }, + { + "Type": 1, + "SubTag": "cnp", + "Description": [ + "Northern Ping Chinese", + "Northern Pinghua" + ], + "Added": "2020-03-28", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zh", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cnp" + }, + { + "Type": 1, + "SubTag": "cnq", + "Description": [ + "Chung" + ], + "Added": "2022-02-25", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cnq" + }, + { + "Type": 1, + "SubTag": "cnr", + "Description": [ + "Montenegrin" + ], + "Added": "2018-01-23", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "sh", + "Deprecated": "0001-01-01", + "Comments": [ + "see sr for Serbian" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cnr" + }, + { + "Type": 1, + "SubTag": "cns", + "Description": [ + "Central Asmat" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cns" + }, + { + "Type": 1, + "SubTag": "cnt", + "Description": [ + "Tepetotutla Chinantec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cnt" + }, + { + "Type": 1, + "SubTag": "cnu", + "Description": [ + "Chenoua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cnu" + }, + { + "Type": 1, + "SubTag": "cnw", + "Description": [ + "Ngawn Chin" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cnw" + }, + { + "Type": 1, + "SubTag": "cnx", + "Description": [ + "Middle Cornish" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cnx" + }, + { + "Type": 1, + "SubTag": "coa", + "Description": [ + "Cocos Islands Malay" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ms", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "coa" + }, + { + "Type": 1, + "SubTag": "cob", + "Description": [ + "Chicomuceltec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cob" + }, + { + "Type": 1, + "SubTag": "coc", + "Description": [ + "Cocopa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "coc" + }, + { + "Type": 1, + "SubTag": "cod", + "Description": [ + "Cocama-Cocamilla" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cod" + }, + { + "Type": 1, + "SubTag": "coe", + "Description": [ + "Koreguaje" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "coe" + }, + { + "Type": 1, + "SubTag": "cof", + "Description": [ + "Colorado" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cof" + }, + { + "Type": 1, + "SubTag": "cog", + "Description": [ + "Chong" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cog" + }, + { + "Type": 1, + "SubTag": "coh", + "Description": [ + "Chonyi-Dzihana-Kauma", + "Chichonyi-Chidzihana-Chikauma" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "coh" + }, + { + "Type": 1, + "SubTag": "coj", + "Description": [ + "Cochimi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "coj" + }, + { + "Type": 1, + "SubTag": "cok", + "Description": [ + "Santa Teresa Cora" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cok" + }, + { + "Type": 1, + "SubTag": "col", + "Description": [ + "Columbia-Wenatchi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "col" + }, + { + "Type": 1, + "SubTag": "com", + "Description": [ + "Comanche" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "com" + }, + { + "Type": 1, + "SubTag": "con", + "Description": [ + "Cof\u00E1n" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "con" + }, + { + "Type": 1, + "SubTag": "coo", + "Description": [ + "Comox" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "coo" + }, + { + "Type": 1, + "SubTag": "cop", + "Description": [ + "Coptic" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cop" + }, + { + "Type": 1, + "SubTag": "coq", + "Description": [ + "Coquille" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "coq" + }, + { + "Type": 1, + "SubTag": "cot", + "Description": [ + "Caquinte" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cot" + }, + { + "Type": 1, + "SubTag": "cou", + "Description": [ + "Wamey" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cou" + }, + { + "Type": 1, + "SubTag": "cov", + "Description": [ + "Cao Miao" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cov" + }, + { + "Type": 1, + "SubTag": "cow", + "Description": [ + "Cowlitz" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cow" + }, + { + "Type": 1, + "SubTag": "cox", + "Description": [ + "Nanti" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cox" + }, + { + "Type": 1, + "SubTag": "coy", + "Description": [ + "Coyaima" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2016-05-30", + "Comments": [], + "Prefix": [], + "PreferredValue": "pij", + "Tag": "", + "TagAny": "coy" + }, + { + "Type": 1, + "SubTag": "coz", + "Description": [ + "Chochotec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "coz" + }, + { + "Type": 1, + "SubTag": "cpa", + "Description": [ + "Palantla Chinantec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cpa" + }, + { + "Type": 1, + "SubTag": "cpb", + "Description": [ + "Ucayali-Yur\u00FAa Ash\u00E9ninka" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cpb" + }, + { + "Type": 1, + "SubTag": "cpc", + "Description": [ + "Ajy\u00EDninka Apurucayali" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cpc" + }, + { + "Type": 1, + "SubTag": "cpe", + "Description": [ + "English-based creoles and pidgins" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cpe" + }, + { + "Type": 1, + "SubTag": "cpf", + "Description": [ + "French-based creoles and pidgins" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cpf" + }, + { + "Type": 1, + "SubTag": "cpg", + "Description": [ + "Cappadocian Greek" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cpg" + }, + { + "Type": 1, + "SubTag": "cpi", + "Description": [ + "Chinese Pidgin English" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cpi" + }, + { + "Type": 1, + "SubTag": "cpn", + "Description": [ + "Cherepon" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cpn" + }, + { + "Type": 1, + "SubTag": "cpo", + "Description": [ + "Kpeego" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cpo" + }, + { + "Type": 1, + "SubTag": "cpp", + "Description": [ + "Portuguese-based creoles and pidgins" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cpp" + }, + { + "Type": 1, + "SubTag": "cps", + "Description": [ + "Capiznon" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cps" + }, + { + "Type": 1, + "SubTag": "cpu", + "Description": [ + "Pichis Ash\u00E9ninka" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cpu" + }, + { + "Type": 1, + "SubTag": "cpx", + "Description": [ + "Pu-Xian Chinese" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zh", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cpx" + }, + { + "Type": 1, + "SubTag": "cpy", + "Description": [ + "South Ucayali Ash\u00E9ninka" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cpy" + }, + { + "Type": 1, + "SubTag": "cqd", + "Description": [ + "Chuanqiandian Cluster Miao" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "hmn", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cqd" + }, + { + "Type": 1, + "SubTag": "cqu", + "Description": [ + "Chilean Quechua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "qu", + "Deprecated": "2016-05-30", + "Comments": [], + "Prefix": [], + "PreferredValue": "quh", + "Tag": "", + "TagAny": "cqu" + }, + { + "Type": 1, + "SubTag": "cra", + "Description": [ + "Chara" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cra" + }, + { + "Type": 1, + "SubTag": "crb", + "Description": [ + "Island Carib" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "crb" + }, + { + "Type": 1, + "SubTag": "crc", + "Description": [ + "Lonwolwol" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "crc" + }, + { + "Type": 1, + "SubTag": "crd", + "Description": [ + "Coeur d\u0027Alene" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "crd" + }, + { + "Type": 1, + "SubTag": "crf", + "Description": [ + "Caramanta" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "crf" + }, + { + "Type": 1, + "SubTag": "crg", + "Description": [ + "Michif" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "crg" + }, + { + "Type": 1, + "SubTag": "crh", + "Description": [ + "Crimean Tatar", + "Crimean Turkish" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "crh" + }, + { + "Type": 1, + "SubTag": "cri", + "Description": [ + "S\u00E3otomense" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cri" + }, + { + "Type": 1, + "SubTag": "crj", + "Description": [ + "Southern East Cree" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "cr", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "crj" + }, + { + "Type": 1, + "SubTag": "crk", + "Description": [ + "Plains Cree" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "cr", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "crk" + }, + { + "Type": 1, + "SubTag": "crl", + "Description": [ + "Northern East Cree" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "cr", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "crl" + }, + { + "Type": 1, + "SubTag": "crm", + "Description": [ + "Moose Cree" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "cr", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "crm" + }, + { + "Type": 1, + "SubTag": "crn", + "Description": [ + "El Nayar Cora" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "crn" + }, + { + "Type": 1, + "SubTag": "cro", + "Description": [ + "Crow" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cro" + }, + { + "Type": 1, + "SubTag": "crp", + "Description": [ + "Creoles and pidgins" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "crp" + }, + { + "Type": 1, + "SubTag": "crq", + "Description": [ + "Iyo\u0027wujwa Chorote" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "crq" + }, + { + "Type": 1, + "SubTag": "crr", + "Description": [ + "Carolina Algonquian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "crr" + }, + { + "Type": 1, + "SubTag": "crs", + "Description": [ + "Seselwa Creole French" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "crs" + }, + { + "Type": 1, + "SubTag": "crt", + "Description": [ + "Iyojwa\u0027ja Chorote" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "crt" + }, + { + "Type": 1, + "SubTag": "crv", + "Description": [ + "Chaura" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "crv" + }, + { + "Type": 1, + "SubTag": "crw", + "Description": [ + "Chrau" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "crw" + }, + { + "Type": 1, + "SubTag": "crx", + "Description": [ + "Carrier" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "crx" + }, + { + "Type": 1, + "SubTag": "cry", + "Description": [ + "Cori" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cry" + }, + { + "Type": 1, + "SubTag": "crz", + "Description": [ + "Cruze\u00F1o" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "crz" + }, + { + "Type": 1, + "SubTag": "csa", + "Description": [ + "Chiltepec Chinantec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "csa" + }, + { + "Type": 1, + "SubTag": "csb", + "Description": [ + "Kashubian" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "csb" + }, + { + "Type": 1, + "SubTag": "csc", + "Description": [ + "Catalan Sign Language", + "Lengua de se\u00F1as catalana", + "Llengua de Signes Catalana" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "csc" + }, + { + "Type": 1, + "SubTag": "csd", + "Description": [ + "Chiangmai Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "csd" + }, + { + "Type": 1, + "SubTag": "cse", + "Description": [ + "Czech Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cse" + }, + { + "Type": 1, + "SubTag": "csf", + "Description": [ + "Cuba Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "csf" + }, + { + "Type": 1, + "SubTag": "csg", + "Description": [ + "Chilean Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "csg" + }, + { + "Type": 1, + "SubTag": "csh", + "Description": [ + "Asho Chin" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "csh" + }, + { + "Type": 1, + "SubTag": "csi", + "Description": [ + "Coast Miwok" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "csi" + }, + { + "Type": 1, + "SubTag": "csj", + "Description": [ + "Songlai Chin" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "csj" + }, + { + "Type": 1, + "SubTag": "csk", + "Description": [ + "Jola-Kasa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "csk" + }, + { + "Type": 1, + "SubTag": "csl", + "Description": [ + "Chinese Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "csl" + }, + { + "Type": 1, + "SubTag": "csm", + "Description": [ + "Central Sierra Miwok" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "csm" + }, + { + "Type": 1, + "SubTag": "csn", + "Description": [ + "Colombian Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "csn" + }, + { + "Type": 1, + "SubTag": "cso", + "Description": [ + "Sochiapam Chinantec", + "Sochiapan Chinantec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cso" + }, + { + "Type": 1, + "SubTag": "csp", + "Description": [ + "Southern Ping Chinese", + "Southern Pinghua" + ], + "Added": "2020-03-28", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zh", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "csp" + }, + { + "Type": 1, + "SubTag": "csq", + "Description": [ + "Croatia Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "csq" + }, + { + "Type": 1, + "SubTag": "csr", + "Description": [ + "Costa Rican Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "csr" + }, + { + "Type": 1, + "SubTag": "css", + "Description": [ + "Southern Ohlone" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "css" + }, + { + "Type": 1, + "SubTag": "cst", + "Description": [ + "Northern Ohlone" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cst" + }, + { + "Type": 1, + "SubTag": "csu", + "Description": [ + "Central Sudanic languages" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "csu" + }, + { + "Type": 1, + "SubTag": "csv", + "Description": [ + "Sumtu Chin" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "csv" + }, + { + "Type": 1, + "SubTag": "csw", + "Description": [ + "Swampy Cree" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "cr", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "csw" + }, + { + "Type": 1, + "SubTag": "csx", + "Description": [ + "Cambodian Sign Language" + ], + "Added": "2021-02-20", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "csx" + }, + { + "Type": 1, + "SubTag": "csy", + "Description": [ + "Siyin Chin" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "csy" + }, + { + "Type": 1, + "SubTag": "csz", + "Description": [ + "Coos" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "csz" + }, + { + "Type": 1, + "SubTag": "cta", + "Description": [ + "Tataltepec Chatino" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cta" + }, + { + "Type": 1, + "SubTag": "ctc", + "Description": [ + "Chetco" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ctc" + }, + { + "Type": 1, + "SubTag": "ctd", + "Description": [ + "Tedim Chin" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ctd" + }, + { + "Type": 1, + "SubTag": "cte", + "Description": [ + "Tepinapa Chinantec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cte" + }, + { + "Type": 1, + "SubTag": "ctg", + "Description": [ + "Chittagonian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ctg" + }, + { + "Type": 1, + "SubTag": "cth", + "Description": [ + "Thaiphum Chin" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cth" + }, + { + "Type": 1, + "SubTag": "ctl", + "Description": [ + "Tlacoatzintepec Chinantec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ctl" + }, + { + "Type": 1, + "SubTag": "ctm", + "Description": [ + "Chitimacha" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ctm" + }, + { + "Type": 1, + "SubTag": "ctn", + "Description": [ + "Chhintange" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ctn" + }, + { + "Type": 1, + "SubTag": "cto", + "Description": [ + "Ember\u00E1-Cat\u00EDo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cto" + }, + { + "Type": 1, + "SubTag": "ctp", + "Description": [ + "Western Highland Chatino" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ctp" + }, + { + "Type": 1, + "SubTag": "cts", + "Description": [ + "Northern Catanduanes Bikol" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "bik", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cts" + }, + { + "Type": 1, + "SubTag": "ctt", + "Description": [ + "Wayanad Chetti" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ctt" + }, + { + "Type": 1, + "SubTag": "ctu", + "Description": [ + "Chol" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ctu" + }, + { + "Type": 1, + "SubTag": "cty", + "Description": [ + "Moundadan Chetty" + ], + "Added": "2021-02-20", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cty" + }, + { + "Type": 1, + "SubTag": "ctz", + "Description": [ + "Zacatepec Chatino" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ctz" + }, + { + "Type": 1, + "SubTag": "cua", + "Description": [ + "Cua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cua" + }, + { + "Type": 1, + "SubTag": "cub", + "Description": [ + "Cubeo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cub" + }, + { + "Type": 1, + "SubTag": "cuc", + "Description": [ + "Usila Chinantec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cuc" + }, + { + "Type": 1, + "SubTag": "cug", + "Description": [ + "Chungmboko", + "Cung" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2022-02-25", + "Comments": [ + "see bpc, cnq" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cug" + }, + { + "Type": 1, + "SubTag": "cuh", + "Description": [ + "Chuka", + "Gichuka" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cuh" + }, + { + "Type": 1, + "SubTag": "cui", + "Description": [ + "Cuiba" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cui" + }, + { + "Type": 1, + "SubTag": "cuj", + "Description": [ + "Mashco Piro" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cuj" + }, + { + "Type": 1, + "SubTag": "cuk", + "Description": [ + "San Blas Kuna" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cuk" + }, + { + "Type": 1, + "SubTag": "cul", + "Description": [ + "Culina", + "Kulina" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cul" + }, + { + "Type": 1, + "SubTag": "cum", + "Description": [ + "Cumeral" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2016-05-30", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cum" + }, + { + "Type": 1, + "SubTag": "cuo", + "Description": [ + "Cumanagoto" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cuo" + }, + { + "Type": 1, + "SubTag": "cup", + "Description": [ + "Cupe\u00F1o" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cup" + }, + { + "Type": 1, + "SubTag": "cuq", + "Description": [ + "Cun" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cuq" + }, + { + "Type": 1, + "SubTag": "cur", + "Description": [ + "Chhulung" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cur" + }, + { + "Type": 1, + "SubTag": "cus", + "Description": [ + "Cushitic languages" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cus" + }, + { + "Type": 1, + "SubTag": "cut", + "Description": [ + "Teutila Cuicatec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cut" + }, + { + "Type": 1, + "SubTag": "cuu", + "Description": [ + "Tai Ya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cuu" + }, + { + "Type": 1, + "SubTag": "cuv", + "Description": [ + "Cuvok" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cuv" + }, + { + "Type": 1, + "SubTag": "cuw", + "Description": [ + "Chukwa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cuw" + }, + { + "Type": 1, + "SubTag": "cux", + "Description": [ + "Tepeuxila Cuicatec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cux" + }, + { + "Type": 1, + "SubTag": "cuy", + "Description": [ + "Cuitlatec" + ], + "Added": "2018-03-08", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cuy" + }, + { + "Type": 1, + "SubTag": "cvg", + "Description": [ + "Chug" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cvg" + }, + { + "Type": 1, + "SubTag": "cvn", + "Description": [ + "Valle Nacional Chinantec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cvn" + }, + { + "Type": 1, + "SubTag": "cwa", + "Description": [ + "Kabwa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cwa" + }, + { + "Type": 1, + "SubTag": "cwb", + "Description": [ + "Maindo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cwb" + }, + { + "Type": 1, + "SubTag": "cwd", + "Description": [ + "Woods Cree" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "cr", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cwd" + }, + { + "Type": 1, + "SubTag": "cwe", + "Description": [ + "Kwere" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cwe" + }, + { + "Type": 1, + "SubTag": "cwg", + "Description": [ + "Chewong", + "Cheq Wong" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cwg" + }, + { + "Type": 1, + "SubTag": "cwt", + "Description": [ + "Kuwaataay" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cwt" + }, + { + "Type": 1, + "SubTag": "cxh", + "Description": [ + "Cha\u0027ari" + ], + "Added": "2023-03-17", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cxh" + }, + { + "Type": 1, + "SubTag": "cya", + "Description": [ + "Nopala Chatino" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cya" + }, + { + "Type": 1, + "SubTag": "cyb", + "Description": [ + "Cayubaba" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cyb" + }, + { + "Type": 1, + "SubTag": "cyo", + "Description": [ + "Cuyonon" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "cyo" + }, + { + "Type": 1, + "SubTag": "czh", + "Description": [ + "Huizhou Chinese" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zh", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "czh" + }, + { + "Type": 1, + "SubTag": "czk", + "Description": [ + "Knaanic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "czk" + }, + { + "Type": 1, + "SubTag": "czn", + "Description": [ + "Zenzontepec Chatino" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "czn" + }, + { + "Type": 1, + "SubTag": "czo", + "Description": [ + "Min Zhong Chinese" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zh", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "czo" + }, + { + "Type": 1, + "SubTag": "czt", + "Description": [ + "Zotung Chin" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "czt" + }, + { + "Type": 1, + "SubTag": "daa", + "Description": [ + "Dangal\u00E9at" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "daa" + }, + { + "Type": 1, + "SubTag": "dac", + "Description": [ + "Dambi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dac" + }, + { + "Type": 1, + "SubTag": "dad", + "Description": [ + "Marik" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dad" + }, + { + "Type": 1, + "SubTag": "dae", + "Description": [ + "Duupa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dae" + }, + { + "Type": 1, + "SubTag": "daf", + "Description": [ + "Dan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2013-09-10", + "Comments": [ + "see dnj, lda" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "daf" + }, + { + "Type": 1, + "SubTag": "dag", + "Description": [ + "Dagbani" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dag" + }, + { + "Type": 1, + "SubTag": "dah", + "Description": [ + "Gwahatike" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dah" + }, + { + "Type": 1, + "SubTag": "dai", + "Description": [ + "Day" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dai" + }, + { + "Type": 1, + "SubTag": "daj", + "Description": [ + "Dar Fur Daju" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "daj" + }, + { + "Type": 1, + "SubTag": "dak", + "Description": [ + "Dakota" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dak" + }, + { + "Type": 1, + "SubTag": "dal", + "Description": [ + "Dahalo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dal" + }, + { + "Type": 1, + "SubTag": "dam", + "Description": [ + "Damakawa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dam" + }, + { + "Type": 1, + "SubTag": "dao", + "Description": [ + "Daai Chin" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dao" + }, + { + "Type": 1, + "SubTag": "dap", + "Description": [ + "Nisi (India)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2012-08-12", + "Comments": [ + "see njz, tgj" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dap" + }, + { + "Type": 1, + "SubTag": "daq", + "Description": [ + "Dandami Maria" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "daq" + }, + { + "Type": 1, + "SubTag": "dar", + "Description": [ + "Dargwa" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dar" + }, + { + "Type": 1, + "SubTag": "das", + "Description": [ + "Daho-Doo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "das" + }, + { + "Type": 1, + "SubTag": "dau", + "Description": [ + "Dar Sila Daju" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dau" + }, + { + "Type": 1, + "SubTag": "dav", + "Description": [ + "Taita", + "Dawida" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dav" + }, + { + "Type": 1, + "SubTag": "daw", + "Description": [ + "Davawenyo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "daw" + }, + { + "Type": 1, + "SubTag": "dax", + "Description": [ + "Dayi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dax" + }, + { + "Type": 1, + "SubTag": "day", + "Description": [ + "Land Dayak languages" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "day" + }, + { + "Type": 1, + "SubTag": "daz", + "Description": [ + "Moi-Wadea", + "Dao" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "daz" + }, + { + "Type": 1, + "SubTag": "dba", + "Description": [ + "Bangime" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dba" + }, + { + "Type": 1, + "SubTag": "dbb", + "Description": [ + "Deno" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dbb" + }, + { + "Type": 1, + "SubTag": "dbd", + "Description": [ + "Dadiya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dbd" + }, + { + "Type": 1, + "SubTag": "dbe", + "Description": [ + "Dabe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dbe" + }, + { + "Type": 1, + "SubTag": "dbf", + "Description": [ + "Edopi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dbf" + }, + { + "Type": 1, + "SubTag": "dbg", + "Description": [ + "Dogul Dom Dogon" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dbg" + }, + { + "Type": 1, + "SubTag": "dbi", + "Description": [ + "Doka" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dbi" + }, + { + "Type": 1, + "SubTag": "dbj", + "Description": [ + "Ida\u0027an" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dbj" + }, + { + "Type": 1, + "SubTag": "dbl", + "Description": [ + "Dyirbal" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dbl" + }, + { + "Type": 1, + "SubTag": "dbm", + "Description": [ + "Duguri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dbm" + }, + { + "Type": 1, + "SubTag": "dbn", + "Description": [ + "Duriankere" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dbn" + }, + { + "Type": 1, + "SubTag": "dbo", + "Description": [ + "Dulbu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dbo" + }, + { + "Type": 1, + "SubTag": "dbp", + "Description": [ + "Duwai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dbp" + }, + { + "Type": 1, + "SubTag": "dbq", + "Description": [ + "Daba" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dbq" + }, + { + "Type": 1, + "SubTag": "dbr", + "Description": [ + "Dabarre" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dbr" + }, + { + "Type": 1, + "SubTag": "dbt", + "Description": [ + "Ben Tey Dogon" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dbt" + }, + { + "Type": 1, + "SubTag": "dbu", + "Description": [ + "Bondum Dom Dogon" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dbu" + }, + { + "Type": 1, + "SubTag": "dbv", + "Description": [ + "Dungu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dbv" + }, + { + "Type": 1, + "SubTag": "dbw", + "Description": [ + "Bankan Tey Dogon" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dbw" + }, + { + "Type": 1, + "SubTag": "dby", + "Description": [ + "Dibiyaso" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dby" + }, + { + "Type": 1, + "SubTag": "dcc", + "Description": [ + "Deccan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dcc" + }, + { + "Type": 1, + "SubTag": "dcr", + "Description": [ + "Negerhollands" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dcr" + }, + { + "Type": 1, + "SubTag": "dda", + "Description": [ + "Dadi Dadi" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dda" + }, + { + "Type": 1, + "SubTag": "ddd", + "Description": [ + "Dongotono" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ddd" + }, + { + "Type": 1, + "SubTag": "dde", + "Description": [ + "Doondo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dde" + }, + { + "Type": 1, + "SubTag": "ddg", + "Description": [ + "Fataluku" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ddg" + }, + { + "Type": 1, + "SubTag": "ddi", + "Description": [ + "West Goodenough" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ddi" + }, + { + "Type": 1, + "SubTag": "ddj", + "Description": [ + "Jaru" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ddj" + }, + { + "Type": 1, + "SubTag": "ddn", + "Description": [ + "Dendi (Benin)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ddn" + }, + { + "Type": 1, + "SubTag": "ddo", + "Description": [ + "Dido" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ddo" + }, + { + "Type": 1, + "SubTag": "ddr", + "Description": [ + "Dhudhuroa" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ddr" + }, + { + "Type": 1, + "SubTag": "dds", + "Description": [ + "Donno So Dogon" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dds" + }, + { + "Type": 1, + "SubTag": "ddw", + "Description": [ + "Dawera-Daweloor" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ddw" + }, + { + "Type": 1, + "SubTag": "dec", + "Description": [ + "Dagik" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dec" + }, + { + "Type": 1, + "SubTag": "ded", + "Description": [ + "Dedua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ded" + }, + { + "Type": 1, + "SubTag": "dee", + "Description": [ + "Dewoin" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dee" + }, + { + "Type": 1, + "SubTag": "def", + "Description": [ + "Dezfuli" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "def" + }, + { + "Type": 1, + "SubTag": "deg", + "Description": [ + "Degema" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "deg" + }, + { + "Type": 1, + "SubTag": "deh", + "Description": [ + "Dehwari" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "deh" + }, + { + "Type": 1, + "SubTag": "dei", + "Description": [ + "Demisa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dei" + }, + { + "Type": 1, + "SubTag": "dek", + "Description": [ + "Dek" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2024-12-12", + "Comments": [], + "Prefix": [], + "PreferredValue": "sqm", + "Tag": "", + "TagAny": "dek" + }, + { + "Type": 1, + "SubTag": "del", + "Description": [ + "Delaware" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "macrolanguage", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "del" + }, + { + "Type": 1, + "SubTag": "dem", + "Description": [ + "Dem" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dem" + }, + { + "Type": 1, + "SubTag": "den", + "Description": [ + "Slave (Athapascan)" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "macrolanguage", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "den" + }, + { + "Type": 1, + "SubTag": "dep", + "Description": [ + "Pidgin Delaware" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dep" + }, + { + "Type": 1, + "SubTag": "deq", + "Description": [ + "Dendi (Central African Republic)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "deq" + }, + { + "Type": 1, + "SubTag": "der", + "Description": [ + "Deori" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "der" + }, + { + "Type": 1, + "SubTag": "des", + "Description": [ + "Desano" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "des" + }, + { + "Type": 1, + "SubTag": "dev", + "Description": [ + "Domung" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dev" + }, + { + "Type": 1, + "SubTag": "dez", + "Description": [ + "Dengese" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dez" + }, + { + "Type": 1, + "SubTag": "dga", + "Description": [ + "Southern Dagaare" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dga" + }, + { + "Type": 1, + "SubTag": "dgb", + "Description": [ + "Bunoge Dogon" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dgb" + }, + { + "Type": 1, + "SubTag": "dgc", + "Description": [ + "Casiguran Dumagat Agta" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dgc" + }, + { + "Type": 1, + "SubTag": "dgd", + "Description": [ + "Dagaari Dioula" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dgd" + }, + { + "Type": 1, + "SubTag": "dge", + "Description": [ + "Degenan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dge" + }, + { + "Type": 1, + "SubTag": "dgg", + "Description": [ + "Doga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dgg" + }, + { + "Type": 1, + "SubTag": "dgh", + "Description": [ + "Dghwede" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dgh" + }, + { + "Type": 1, + "SubTag": "dgi", + "Description": [ + "Northern Dagara" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dgi" + }, + { + "Type": 1, + "SubTag": "dgk", + "Description": [ + "Dagba" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dgk" + }, + { + "Type": 1, + "SubTag": "dgl", + "Description": [ + "Andaandi", + "Dongolawi" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dgl" + }, + { + "Type": 1, + "SubTag": "dgn", + "Description": [ + "Dagoman" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dgn" + }, + { + "Type": 1, + "SubTag": "dgo", + "Description": [ + "Dogri (individual language)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "doi", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dgo" + }, + { + "Type": 1, + "SubTag": "dgr", + "Description": [ + "Tlicho", + "Dogrib", + "T\u0142\u0131\u0328ch\u01EB" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dgr" + }, + { + "Type": 1, + "SubTag": "dgs", + "Description": [ + "Dogoso" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dgs" + }, + { + "Type": 1, + "SubTag": "dgt", + "Description": [ + "Ndra\u0027ngith" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dgt" + }, + { + "Type": 1, + "SubTag": "dgu", + "Description": [ + "Degaru" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2020-03-28", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dgu" + }, + { + "Type": 1, + "SubTag": "dgw", + "Description": [ + "Daungwurrung" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dgw" + }, + { + "Type": 1, + "SubTag": "dgx", + "Description": [ + "Doghoro" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dgx" + }, + { + "Type": 1, + "SubTag": "dgz", + "Description": [ + "Daga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dgz" + }, + { + "Type": 1, + "SubTag": "dha", + "Description": [ + "Dhanwar (India)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2011-08-16", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dha" + }, + { + "Type": 1, + "SubTag": "dhd", + "Description": [ + "Dhundari" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "mwr", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dhd" + }, + { + "Type": 1, + "SubTag": "dhg", + "Description": [ + "Dhangu-Djangu", + "Dhangu", + "Djangu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dhg" + }, + { + "Type": 1, + "SubTag": "dhi", + "Description": [ + "Dhimal" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dhi" + }, + { + "Type": 1, + "SubTag": "dhl", + "Description": [ + "Dhalandji" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dhl" + }, + { + "Type": 1, + "SubTag": "dhm", + "Description": [ + "Zemba" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dhm" + }, + { + "Type": 1, + "SubTag": "dhn", + "Description": [ + "Dhanki" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dhn" + }, + { + "Type": 1, + "SubTag": "dho", + "Description": [ + "Dhodia" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dho" + }, + { + "Type": 1, + "SubTag": "dhr", + "Description": [ + "Dhargari" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dhr" + }, + { + "Type": 1, + "SubTag": "dhs", + "Description": [ + "Dhaiso" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dhs" + }, + { + "Type": 1, + "SubTag": "dhu", + "Description": [ + "Dhurga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dhu" + }, + { + "Type": 1, + "SubTag": "dhv", + "Description": [ + "Dehu", + "Drehu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dhv" + }, + { + "Type": 1, + "SubTag": "dhw", + "Description": [ + "Dhanwar (Nepal)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dhw" + }, + { + "Type": 1, + "SubTag": "dhx", + "Description": [ + "Dhungaloo" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dhx" + }, + { + "Type": 1, + "SubTag": "dia", + "Description": [ + "Dia" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dia" + }, + { + "Type": 1, + "SubTag": "dib", + "Description": [ + "South Central Dinka" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "din", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dib" + }, + { + "Type": 1, + "SubTag": "dic", + "Description": [ + "Lakota Dida" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dic" + }, + { + "Type": 1, + "SubTag": "did", + "Description": [ + "Didinga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "did" + }, + { + "Type": 1, + "SubTag": "dif", + "Description": [ + "Dieri", + "Diyari" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dif" + }, + { + "Type": 1, + "SubTag": "dig", + "Description": [ + "Digo", + "Chidigo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dig" + }, + { + "Type": 1, + "SubTag": "dih", + "Description": [ + "Kumiai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dih" + }, + { + "Type": 1, + "SubTag": "dii", + "Description": [ + "Dimbong" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dii" + }, + { + "Type": 1, + "SubTag": "dij", + "Description": [ + "Dai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dij" + }, + { + "Type": 1, + "SubTag": "dik", + "Description": [ + "Southwestern Dinka" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "din", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dik" + }, + { + "Type": 1, + "SubTag": "dil", + "Description": [ + "Dilling" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dil" + }, + { + "Type": 1, + "SubTag": "dim", + "Description": [ + "Dime" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dim" + }, + { + "Type": 1, + "SubTag": "din", + "Description": [ + "Dinka" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "macrolanguage", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "din" + }, + { + "Type": 1, + "SubTag": "dio", + "Description": [ + "Dibo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dio" + }, + { + "Type": 1, + "SubTag": "dip", + "Description": [ + "Northeastern Dinka" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "din", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dip" + }, + { + "Type": 1, + "SubTag": "diq", + "Description": [ + "Dimli (individual language)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zza", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "diq" + }, + { + "Type": 1, + "SubTag": "dir", + "Description": [ + "Dirim" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dir" + }, + { + "Type": 1, + "SubTag": "dis", + "Description": [ + "Dimasa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dis" + }, + { + "Type": 1, + "SubTag": "dit", + "Description": [ + "Dirari" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2019-04-29", + "Comments": [], + "Prefix": [], + "PreferredValue": "dif", + "Tag": "", + "TagAny": "dit" + }, + { + "Type": 1, + "SubTag": "diu", + "Description": [ + "Diriku" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "diu" + }, + { + "Type": 1, + "SubTag": "diw", + "Description": [ + "Northwestern Dinka" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "din", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "diw" + }, + { + "Type": 1, + "SubTag": "dix", + "Description": [ + "Dixon Reef" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dix" + }, + { + "Type": 1, + "SubTag": "diy", + "Description": [ + "Diuwe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "diy" + }, + { + "Type": 1, + "SubTag": "diz", + "Description": [ + "Ding" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "diz" + }, + { + "Type": 1, + "SubTag": "dja", + "Description": [ + "Djadjawurrung" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dja" + }, + { + "Type": 1, + "SubTag": "djb", + "Description": [ + "Djinba" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "djb" + }, + { + "Type": 1, + "SubTag": "djc", + "Description": [ + "Dar Daju Daju" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "djc" + }, + { + "Type": 1, + "SubTag": "djd", + "Description": [ + "Djamindjung", + "Ngaliwurru" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "djd" + }, + { + "Type": 1, + "SubTag": "dje", + "Description": [ + "Zarma" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dje" + }, + { + "Type": 1, + "SubTag": "djf", + "Description": [ + "Djangun" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "djf" + }, + { + "Type": 1, + "SubTag": "dji", + "Description": [ + "Djinang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dji" + }, + { + "Type": 1, + "SubTag": "djj", + "Description": [ + "Djeebbana" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "djj" + }, + { + "Type": 1, + "SubTag": "djk", + "Description": [ + "Eastern Maroon Creole", + "Businenge Tongo", + "Nenge" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "djk" + }, + { + "Type": 1, + "SubTag": "djl", + "Description": [ + "Djiwarli" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2013-09-10", + "Comments": [ + "see dze, iin" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "djl" + }, + { + "Type": 1, + "SubTag": "djm", + "Description": [ + "Jamsay Dogon" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "djm" + }, + { + "Type": 1, + "SubTag": "djn", + "Description": [ + "Jawoyn", + "Djauan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "djn" + }, + { + "Type": 1, + "SubTag": "djo", + "Description": [ + "Jangkang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "djo" + }, + { + "Type": 1, + "SubTag": "djr", + "Description": [ + "Djambarrpuyngu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "djr" + }, + { + "Type": 1, + "SubTag": "dju", + "Description": [ + "Kapriman" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dju" + }, + { + "Type": 1, + "SubTag": "djw", + "Description": [ + "Djawi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "djw" + }, + { + "Type": 1, + "SubTag": "dka", + "Description": [ + "Dakpakha" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dka" + }, + { + "Type": 1, + "SubTag": "dkg", + "Description": [ + "Kadung" + ], + "Added": "2021-02-20", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dkg" + }, + { + "Type": 1, + "SubTag": "dkk", + "Description": [ + "Dakka" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dkk" + }, + { + "Type": 1, + "SubTag": "dkl", + "Description": [ + "Kolum So Dogon" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2011-08-16", + "Comments": [ + "see aqd, dmb" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dkl" + }, + { + "Type": 1, + "SubTag": "dkr", + "Description": [ + "Kuijau" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dkr" + }, + { + "Type": 1, + "SubTag": "dks", + "Description": [ + "Southeastern Dinka" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "din", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dks" + }, + { + "Type": 1, + "SubTag": "dkx", + "Description": [ + "Mazagway" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dkx" + }, + { + "Type": 1, + "SubTag": "dlg", + "Description": [ + "Dolgan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dlg" + }, + { + "Type": 1, + "SubTag": "dlk", + "Description": [ + "Dahalik" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dlk" + }, + { + "Type": 1, + "SubTag": "dlm", + "Description": [ + "Dalmatian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dlm" + }, + { + "Type": 1, + "SubTag": "dln", + "Description": [ + "Darlong" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dln" + }, + { + "Type": 1, + "SubTag": "dma", + "Description": [ + "Duma" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dma" + }, + { + "Type": 1, + "SubTag": "dmb", + "Description": [ + "Mombo Dogon" + ], + "Added": "2011-08-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dmb" + }, + { + "Type": 1, + "SubTag": "dmc", + "Description": [ + "Gavak" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dmc" + }, + { + "Type": 1, + "SubTag": "dmd", + "Description": [ + "Madhi Madhi" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dmd" + }, + { + "Type": 1, + "SubTag": "dme", + "Description": [ + "Dugwor" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dme" + }, + { + "Type": 1, + "SubTag": "dmf", + "Description": [ + "Medefaidrin" + ], + "Added": "2020-03-28", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dmf" + }, + { + "Type": 1, + "SubTag": "dmg", + "Description": [ + "Upper Kinabatangan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dmg" + }, + { + "Type": 1, + "SubTag": "dmk", + "Description": [ + "Domaaki" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dmk" + }, + { + "Type": 1, + "SubTag": "dml", + "Description": [ + "Dameli" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dml" + }, + { + "Type": 1, + "SubTag": "dmm", + "Description": [ + "Dama" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dmm" + }, + { + "Type": 1, + "SubTag": "dmn", + "Description": [ + "Mande languages" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dmn" + }, + { + "Type": 1, + "SubTag": "dmo", + "Description": [ + "Kemedzung" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dmo" + }, + { + "Type": 1, + "SubTag": "dmr", + "Description": [ + "East Damar" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dmr" + }, + { + "Type": 1, + "SubTag": "dms", + "Description": [ + "Dampelas" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dms" + }, + { + "Type": 1, + "SubTag": "dmu", + "Description": [ + "Dubu", + "Tebi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dmu" + }, + { + "Type": 1, + "SubTag": "dmv", + "Description": [ + "Dumpas" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dmv" + }, + { + "Type": 1, + "SubTag": "dmw", + "Description": [ + "Mudburra" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dmw" + }, + { + "Type": 1, + "SubTag": "dmx", + "Description": [ + "Dema" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dmx" + }, + { + "Type": 1, + "SubTag": "dmy", + "Description": [ + "Demta", + "Sowari" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dmy" + }, + { + "Type": 1, + "SubTag": "dna", + "Description": [ + "Upper Grand Valley Dani" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dna" + }, + { + "Type": 1, + "SubTag": "dnd", + "Description": [ + "Daonda" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dnd" + }, + { + "Type": 1, + "SubTag": "dne", + "Description": [ + "Ndendeule" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dne" + }, + { + "Type": 1, + "SubTag": "dng", + "Description": [ + "Dungan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dng" + }, + { + "Type": 1, + "SubTag": "dni", + "Description": [ + "Lower Grand Valley Dani" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dni" + }, + { + "Type": 1, + "SubTag": "dnj", + "Description": [ + "Dan" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dnj" + }, + { + "Type": 1, + "SubTag": "dnk", + "Description": [ + "Dengka" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dnk" + }, + { + "Type": 1, + "SubTag": "dnn", + "Description": [ + "Dz\u00F9\u00F9ngoo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dnn" + }, + { + "Type": 1, + "SubTag": "dno", + "Description": [ + "Ndrulo", + "Northern Lendu" + ], + "Added": "2018-10-28", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dno" + }, + { + "Type": 1, + "SubTag": "dnr", + "Description": [ + "Danaru" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dnr" + }, + { + "Type": 1, + "SubTag": "dnt", + "Description": [ + "Mid Grand Valley Dani" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dnt" + }, + { + "Type": 1, + "SubTag": "dnu", + "Description": [ + "Danau" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dnu" + }, + { + "Type": 1, + "SubTag": "dnv", + "Description": [ + "Danu" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dnv" + }, + { + "Type": 1, + "SubTag": "dnw", + "Description": [ + "Western Dani" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dnw" + }, + { + "Type": 1, + "SubTag": "dny", + "Description": [ + "Den\u00ED" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dny" + }, + { + "Type": 1, + "SubTag": "doa", + "Description": [ + "Dom" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "doa" + }, + { + "Type": 1, + "SubTag": "dob", + "Description": [ + "Dobu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dob" + }, + { + "Type": 1, + "SubTag": "doc", + "Description": [ + "Northern Dong" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "doc" + }, + { + "Type": 1, + "SubTag": "doe", + "Description": [ + "Doe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "doe" + }, + { + "Type": 1, + "SubTag": "dof", + "Description": [ + "Domu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dof" + }, + { + "Type": 1, + "SubTag": "doh", + "Description": [ + "Dong" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "doh" + }, + { + "Type": 1, + "SubTag": "doi", + "Description": [ + "Dogri (macrolanguage)" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "macrolanguage", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "doi" + }, + { + "Type": 1, + "SubTag": "dok", + "Description": [ + "Dondo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dok" + }, + { + "Type": 1, + "SubTag": "dol", + "Description": [ + "Doso" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dol" + }, + { + "Type": 1, + "SubTag": "don", + "Description": [ + "Toura (Papua New Guinea)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "don" + }, + { + "Type": 1, + "SubTag": "doo", + "Description": [ + "Dongo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "doo" + }, + { + "Type": 1, + "SubTag": "dop", + "Description": [ + "Lukpa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dop" + }, + { + "Type": 1, + "SubTag": "doq", + "Description": [ + "Dominican Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "doq" + }, + { + "Type": 1, + "SubTag": "dor", + "Description": [ + "Dori\u0027o" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dor" + }, + { + "Type": 1, + "SubTag": "dos", + "Description": [ + "Dogos\u00E9" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dos" + }, + { + "Type": 1, + "SubTag": "dot", + "Description": [ + "Dass" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dot" + }, + { + "Type": 1, + "SubTag": "dov", + "Description": [ + "Dombe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dov" + }, + { + "Type": 1, + "SubTag": "dow", + "Description": [ + "Doyayo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dow" + }, + { + "Type": 1, + "SubTag": "dox", + "Description": [ + "Bussa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dox" + }, + { + "Type": 1, + "SubTag": "doy", + "Description": [ + "Dompo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "doy" + }, + { + "Type": 1, + "SubTag": "doz", + "Description": [ + "Dorze" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "doz" + }, + { + "Type": 1, + "SubTag": "dpp", + "Description": [ + "Papar" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dpp" + }, + { + "Type": 1, + "SubTag": "dra", + "Description": [ + "Dravidian languages" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dra" + }, + { + "Type": 1, + "SubTag": "drb", + "Description": [ + "Dair" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "drb" + }, + { + "Type": 1, + "SubTag": "drc", + "Description": [ + "Minderico" + ], + "Added": "2011-08-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "drc" + }, + { + "Type": 1, + "SubTag": "drd", + "Description": [ + "Darmiya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "drd" + }, + { + "Type": 1, + "SubTag": "dre", + "Description": [ + "Dolpo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dre" + }, + { + "Type": 1, + "SubTag": "drg", + "Description": [ + "Rungus" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "drg" + }, + { + "Type": 1, + "SubTag": "drh", + "Description": [ + "Darkhat" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2010-03-11", + "Comments": [], + "Prefix": [], + "PreferredValue": "khk", + "Tag": "", + "TagAny": "drh" + }, + { + "Type": 1, + "SubTag": "dri", + "Description": [ + "C\u0027Lela" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dri" + }, + { + "Type": 1, + "SubTag": "drl", + "Description": [ + "Paakantyi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "drl" + }, + { + "Type": 1, + "SubTag": "drn", + "Description": [ + "West Damar" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "drn" + }, + { + "Type": 1, + "SubTag": "dro", + "Description": [ + "Daro-Matu Melanau" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dro" + }, + { + "Type": 1, + "SubTag": "drq", + "Description": [ + "Dura" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "drq" + }, + { + "Type": 1, + "SubTag": "drr", + "Description": [ + "Dororo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2020-03-28", + "Comments": [], + "Prefix": [], + "PreferredValue": "kzk", + "Tag": "", + "TagAny": "drr" + }, + { + "Type": 1, + "SubTag": "drs", + "Description": [ + "Gedeo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "drs" + }, + { + "Type": 1, + "SubTag": "drt", + "Description": [ + "Drents" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "drt" + }, + { + "Type": 1, + "SubTag": "dru", + "Description": [ + "Rukai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dru" + }, + { + "Type": 1, + "SubTag": "drw", + "Description": [ + "Darwazi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2010-03-11", + "Comments": [], + "Prefix": [], + "PreferredValue": "prs", + "Tag": "", + "TagAny": "drw" + }, + { + "Type": 1, + "SubTag": "dry", + "Description": [ + "Darai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dry" + }, + { + "Type": 1, + "SubTag": "dsb", + "Description": [ + "Lower Sorbian" + ], + "Added": "2005-10-16", + "SuppressScript": "Latn", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dsb" + }, + { + "Type": 1, + "SubTag": "dse", + "Description": [ + "Dutch Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dse" + }, + { + "Type": 1, + "SubTag": "dsh", + "Description": [ + "Daasanach" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dsh" + }, + { + "Type": 1, + "SubTag": "dsi", + "Description": [ + "Disa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dsi" + }, + { + "Type": 1, + "SubTag": "dsk", + "Description": [ + "Dokshi" + ], + "Added": "2023-03-17", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dsk" + }, + { + "Type": 1, + "SubTag": "dsl", + "Description": [ + "Danish Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dsl" + }, + { + "Type": 1, + "SubTag": "dsn", + "Description": [ + "Dusner" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dsn" + }, + { + "Type": 1, + "SubTag": "dso", + "Description": [ + "Desiya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dso" + }, + { + "Type": 1, + "SubTag": "dsq", + "Description": [ + "Tadaksahak" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dsq" + }, + { + "Type": 1, + "SubTag": "dsz", + "Description": [ + "Mardin Sign Language" + ], + "Added": "2022-02-25", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dsz" + }, + { + "Type": 1, + "SubTag": "dta", + "Description": [ + "Daur" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dta" + }, + { + "Type": 1, + "SubTag": "dtb", + "Description": [ + "Labuk-Kinabatangan Kadazan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dtb" + }, + { + "Type": 1, + "SubTag": "dtd", + "Description": [ + "Ditidaht" + ], + "Added": "2011-08-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dtd" + }, + { + "Type": 1, + "SubTag": "dth", + "Description": [ + "Adithinngithigh" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dth" + }, + { + "Type": 1, + "SubTag": "dti", + "Description": [ + "Ana Tinga Dogon" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dti" + }, + { + "Type": 1, + "SubTag": "dtk", + "Description": [ + "Tene Kan Dogon" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dtk" + }, + { + "Type": 1, + "SubTag": "dtm", + "Description": [ + "Tomo Kan Dogon" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dtm" + }, + { + "Type": 1, + "SubTag": "dtn", + "Description": [ + "Daats\u02BC\u00EDin" + ], + "Added": "2016-05-30", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dtn" + }, + { + "Type": 1, + "SubTag": "dto", + "Description": [ + "Tommo So Dogon" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dto" + }, + { + "Type": 1, + "SubTag": "dtp", + "Description": [ + "Kadazan Dusun", + "Central Dusun" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dtp" + }, + { + "Type": 1, + "SubTag": "dtr", + "Description": [ + "Lotud" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dtr" + }, + { + "Type": 1, + "SubTag": "dts", + "Description": [ + "Toro So Dogon" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dts" + }, + { + "Type": 1, + "SubTag": "dtt", + "Description": [ + "Toro Tegu Dogon" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dtt" + }, + { + "Type": 1, + "SubTag": "dtu", + "Description": [ + "Tebul Ure Dogon" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dtu" + }, + { + "Type": 1, + "SubTag": "dty", + "Description": [ + "Dotyali" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ne", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dty" + }, + { + "Type": 1, + "SubTag": "dua", + "Description": [ + "Duala" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dua" + }, + { + "Type": 1, + "SubTag": "dub", + "Description": [ + "Dubli" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dub" + }, + { + "Type": 1, + "SubTag": "duc", + "Description": [ + "Duna" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "duc" + }, + { + "Type": 1, + "SubTag": "dud", + "Description": [ + "Hun-Saare" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2019-04-16", + "Comments": [ + "see uth, uss" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dud" + }, + { + "Type": 1, + "SubTag": "due", + "Description": [ + "Umiray Dumaget Agta" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "due" + }, + { + "Type": 1, + "SubTag": "duf", + "Description": [ + "Dumbea", + "Drubea" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "duf" + }, + { + "Type": 1, + "SubTag": "dug", + "Description": [ + "Duruma", + "Chiduruma" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dug" + }, + { + "Type": 1, + "SubTag": "duh", + "Description": [ + "Dungra Bhil" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "duh" + }, + { + "Type": 1, + "SubTag": "dui", + "Description": [ + "Dumun" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dui" + }, + { + "Type": 1, + "SubTag": "duj", + "Description": [ + "Dhuwal" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2016-05-30", + "Comments": [ + "see dwu, dwy" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "duj" + }, + { + "Type": 1, + "SubTag": "duk", + "Description": [ + "Uyajitaya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "duk" + }, + { + "Type": 1, + "SubTag": "dul", + "Description": [ + "Alabat Island Agta" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dul" + }, + { + "Type": 1, + "SubTag": "dum", + "Description": [ + "Middle Dutch (ca. 1050-1350)" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dum" + }, + { + "Type": 1, + "SubTag": "dun", + "Description": [ + "Dusun Deyah" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dun" + }, + { + "Type": 1, + "SubTag": "duo", + "Description": [ + "Dupaninan Agta" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "duo" + }, + { + "Type": 1, + "SubTag": "dup", + "Description": [ + "Duano" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ms", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dup" + }, + { + "Type": 1, + "SubTag": "duq", + "Description": [ + "Dusun Malang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "duq" + }, + { + "Type": 1, + "SubTag": "dur", + "Description": [ + "Dii" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dur" + }, + { + "Type": 1, + "SubTag": "dus", + "Description": [ + "Dumi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dus" + }, + { + "Type": 1, + "SubTag": "duu", + "Description": [ + "Drung" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "duu" + }, + { + "Type": 1, + "SubTag": "duv", + "Description": [ + "Duvle" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "duv" + }, + { + "Type": 1, + "SubTag": "duw", + "Description": [ + "Dusun Witu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "duw" + }, + { + "Type": 1, + "SubTag": "dux", + "Description": [ + "Duungooma" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dux" + }, + { + "Type": 1, + "SubTag": "duy", + "Description": [ + "Dicamay Agta" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "duy" + }, + { + "Type": 1, + "SubTag": "duz", + "Description": [ + "Duli-Gey" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "duz" + }, + { + "Type": 1, + "SubTag": "dva", + "Description": [ + "Duau" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dva" + }, + { + "Type": 1, + "SubTag": "dwa", + "Description": [ + "Diri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dwa" + }, + { + "Type": 1, + "SubTag": "dwk", + "Description": [ + "Dawik Kui" + ], + "Added": "2020-03-28", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dwk" + }, + { + "Type": 1, + "SubTag": "dwl", + "Description": [ + "Walo Kumbe Dogon" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2012-08-12", + "Comments": [ + "see dbt, dbw" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dwl" + }, + { + "Type": 1, + "SubTag": "dwr", + "Description": [ + "Dawro" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dwr" + }, + { + "Type": 1, + "SubTag": "dws", + "Description": [ + "Dutton World Speedwords" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dws" + }, + { + "Type": 1, + "SubTag": "dwu", + "Description": [ + "Dhuwal" + ], + "Added": "2016-05-30", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dwu" + }, + { + "Type": 1, + "SubTag": "dww", + "Description": [ + "Dawawa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dww" + }, + { + "Type": 1, + "SubTag": "dwy", + "Description": [ + "Dhuwaya" + ], + "Added": "2016-05-30", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dwy" + }, + { + "Type": 1, + "SubTag": "dwz", + "Description": [ + "Dewas Rai" + ], + "Added": "2018-10-28", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dwz" + }, + { + "Type": 1, + "SubTag": "dya", + "Description": [ + "Dyan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dya" + }, + { + "Type": 1, + "SubTag": "dyb", + "Description": [ + "Dyaberdyaber" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dyb" + }, + { + "Type": 1, + "SubTag": "dyd", + "Description": [ + "Dyugun" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dyd" + }, + { + "Type": 1, + "SubTag": "dyg", + "Description": [ + "Villa Viciosa Agta" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dyg" + }, + { + "Type": 1, + "SubTag": "dyi", + "Description": [ + "Djimini Senoufo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dyi" + }, + { + "Type": 1, + "SubTag": "dym", + "Description": [ + "Yanda Dom Dogon" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dym" + }, + { + "Type": 1, + "SubTag": "dyn", + "Description": [ + "Dyangadi", + "Dhanggatti" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dyn" + }, + { + "Type": 1, + "SubTag": "dyo", + "Description": [ + "Jola-Fonyi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dyo" + }, + { + "Type": 1, + "SubTag": "dyr", + "Description": [ + "Dyarim" + ], + "Added": "2023-03-17", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dyr" + }, + { + "Type": 1, + "SubTag": "dyu", + "Description": [ + "Dyula" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dyu" + }, + { + "Type": 1, + "SubTag": "dyy", + "Description": [ + "Djabugay", + "Dyaabugay" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dyy" + }, + { + "Type": 1, + "SubTag": "dza", + "Description": [ + "Tunzu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dza" + }, + { + "Type": 1, + "SubTag": "dzd", + "Description": [ + "Daza" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dzd" + }, + { + "Type": 1, + "SubTag": "dze", + "Description": [ + "Djiwarli" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dze" + }, + { + "Type": 1, + "SubTag": "dzg", + "Description": [ + "Dazaga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dzg" + }, + { + "Type": 1, + "SubTag": "dzl", + "Description": [ + "Dzalakha" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dzl" + }, + { + "Type": 1, + "SubTag": "dzn", + "Description": [ + "Dzando" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "dzn" + }, + { + "Type": 1, + "SubTag": "eaa", + "Description": [ + "Karenggapa" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "eaa" + }, + { + "Type": 1, + "SubTag": "ebc", + "Description": [ + "Beginci" + ], + "Added": "2020-03-28", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ebc" + }, + { + "Type": 1, + "SubTag": "ebg", + "Description": [ + "Ebughu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ebg" + }, + { + "Type": 1, + "SubTag": "ebk", + "Description": [ + "Eastern Bontok" + ], + "Added": "2010-03-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "bnc", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ebk" + }, + { + "Type": 1, + "SubTag": "ebo", + "Description": [ + "Teke-Ebo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ebo" + }, + { + "Type": 1, + "SubTag": "ebr", + "Description": [ + "Ebri\u00E9" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ebr" + }, + { + "Type": 1, + "SubTag": "ebu", + "Description": [ + "Embu", + "Kiembu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ebu" + }, + { + "Type": 1, + "SubTag": "ecr", + "Description": [ + "Eteocretan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ecr" + }, + { + "Type": 1, + "SubTag": "ecs", + "Description": [ + "Ecuadorian Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ecs" + }, + { + "Type": 1, + "SubTag": "ecy", + "Description": [ + "Eteocypriot" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ecy" + }, + { + "Type": 1, + "SubTag": "eee", + "Description": [ + "E" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "eee" + }, + { + "Type": 1, + "SubTag": "efa", + "Description": [ + "Efai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "efa" + }, + { + "Type": 1, + "SubTag": "efe", + "Description": [ + "Efe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "efe" + }, + { + "Type": 1, + "SubTag": "efi", + "Description": [ + "Efik" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "efi" + }, + { + "Type": 1, + "SubTag": "ega", + "Description": [ + "Ega" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ega" + }, + { + "Type": 1, + "SubTag": "egl", + "Description": [ + "Emilian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "egl" + }, + { + "Type": 1, + "SubTag": "egm", + "Description": [ + "Benamanga" + ], + "Added": "2022-02-25", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "egm" + }, + { + "Type": 1, + "SubTag": "ego", + "Description": [ + "Eggon" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ego" + }, + { + "Type": 1, + "SubTag": "egx", + "Description": [ + "Egyptian languages" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "egx" + }, + { + "Type": 1, + "SubTag": "egy", + "Description": [ + "Egyptian (Ancient)" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "egy" + }, + { + "Type": 1, + "SubTag": "ehs", + "Description": [ + "Miyakubo Sign Language" + ], + "Added": "2021-02-20", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ehs" + }, + { + "Type": 1, + "SubTag": "ehu", + "Description": [ + "Ehueun" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ehu" + }, + { + "Type": 1, + "SubTag": "eip", + "Description": [ + "Eipomek" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "eip" + }, + { + "Type": 1, + "SubTag": "eit", + "Description": [ + "Eitiep" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "eit" + }, + { + "Type": 1, + "SubTag": "eiv", + "Description": [ + "Askopan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "eiv" + }, + { + "Type": 1, + "SubTag": "eja", + "Description": [ + "Ejamat" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "eja" + }, + { + "Type": 1, + "SubTag": "eka", + "Description": [ + "Ekajuk" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "eka" + }, + { + "Type": 1, + "SubTag": "ekc", + "Description": [ + "Eastern Karnic" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2020-03-28", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ekc" + }, + { + "Type": 1, + "SubTag": "eke", + "Description": [ + "Ekit" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "eke" + }, + { + "Type": 1, + "SubTag": "ekg", + "Description": [ + "Ekari" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ekg" + }, + { + "Type": 1, + "SubTag": "eki", + "Description": [ + "Eki" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "eki" + }, + { + "Type": 1, + "SubTag": "ekk", + "Description": [ + "Standard Estonian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "et", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ekk" + }, + { + "Type": 1, + "SubTag": "ekl", + "Description": [ + "Kol (Bangladesh)", + "Kol" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ekl" + }, + { + "Type": 1, + "SubTag": "ekm", + "Description": [ + "Elip" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ekm" + }, + { + "Type": 1, + "SubTag": "eko", + "Description": [ + "Koti" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "eko" + }, + { + "Type": 1, + "SubTag": "ekp", + "Description": [ + "Ekpeye" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ekp" + }, + { + "Type": 1, + "SubTag": "ekr", + "Description": [ + "Yace" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ekr" + }, + { + "Type": 1, + "SubTag": "eky", + "Description": [ + "Eastern Kayah" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "eky" + }, + { + "Type": 1, + "SubTag": "ele", + "Description": [ + "Elepi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ele" + }, + { + "Type": 1, + "SubTag": "elh", + "Description": [ + "El Hugeirat" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "elh" + }, + { + "Type": 1, + "SubTag": "eli", + "Description": [ + "Nding" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "eli" + }, + { + "Type": 1, + "SubTag": "elk", + "Description": [ + "Elkei" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "elk" + }, + { + "Type": 1, + "SubTag": "elm", + "Description": [ + "Eleme" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "elm" + }, + { + "Type": 1, + "SubTag": "elo", + "Description": [ + "El Molo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "elo" + }, + { + "Type": 1, + "SubTag": "elp", + "Description": [ + "Elpaputih" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2012-08-12", + "Comments": [ + "see amq, plh" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "elp" + }, + { + "Type": 1, + "SubTag": "elu", + "Description": [ + "Elu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "elu" + }, + { + "Type": 1, + "SubTag": "elx", + "Description": [ + "Elamite" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "elx" + }, + { + "Type": 1, + "SubTag": "ema", + "Description": [ + "Emai-Iuleha-Ora" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ema" + }, + { + "Type": 1, + "SubTag": "emb", + "Description": [ + "Embaloh" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "emb" + }, + { + "Type": 1, + "SubTag": "eme", + "Description": [ + "Emerillon" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "eme" + }, + { + "Type": 1, + "SubTag": "emg", + "Description": [ + "Eastern Meohang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "emg" + }, + { + "Type": 1, + "SubTag": "emi", + "Description": [ + "Mussau-Emira" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "emi" + }, + { + "Type": 1, + "SubTag": "emk", + "Description": [ + "Eastern Maninkakan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "man", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "emk" + }, + { + "Type": 1, + "SubTag": "emm", + "Description": [ + "Mamulique" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "emm" + }, + { + "Type": 1, + "SubTag": "emn", + "Description": [ + "Eman" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "emn" + }, + { + "Type": 1, + "SubTag": "emo", + "Description": [ + "Emok" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2014-02-28", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "emo" + }, + { + "Type": 1, + "SubTag": "emp", + "Description": [ + "Northern Ember\u00E1" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "emp" + }, + { + "Type": 1, + "SubTag": "emq", + "Description": [ + "Eastern Minyag" + ], + "Added": "2021-02-20", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "emq" + }, + { + "Type": 1, + "SubTag": "ems", + "Description": [ + "Pacific Gulf Yupik" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ems" + }, + { + "Type": 1, + "SubTag": "emu", + "Description": [ + "Eastern Muria" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "emu" + }, + { + "Type": 1, + "SubTag": "emw", + "Description": [ + "Emplawas" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "emw" + }, + { + "Type": 1, + "SubTag": "emx", + "Description": [ + "Erromintxela" + ], + "Added": "2010-03-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "emx" + }, + { + "Type": 1, + "SubTag": "emy", + "Description": [ + "Epigraphic Mayan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "emy" + }, + { + "Type": 1, + "SubTag": "emz", + "Description": [ + "Mbessa" + ], + "Added": "2021-02-20", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "emz" + }, + { + "Type": 1, + "SubTag": "ena", + "Description": [ + "Apali" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ena" + }, + { + "Type": 1, + "SubTag": "enb", + "Description": [ + "Markweeta" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "kln", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "enb" + }, + { + "Type": 1, + "SubTag": "enc", + "Description": [ + "En" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "enc" + }, + { + "Type": 1, + "SubTag": "end", + "Description": [ + "Ende" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "end" + }, + { + "Type": 1, + "SubTag": "enf", + "Description": [ + "Forest Enets" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "enf" + }, + { + "Type": 1, + "SubTag": "enh", + "Description": [ + "Tundra Enets" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "enh" + }, + { + "Type": 1, + "SubTag": "enl", + "Description": [ + "Enlhet" + ], + "Added": "2014-02-28", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "enl" + }, + { + "Type": 1, + "SubTag": "enm", + "Description": [ + "Middle English (1100-1500)" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "enm" + }, + { + "Type": 1, + "SubTag": "enn", + "Description": [ + "Engenni" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "enn" + }, + { + "Type": 1, + "SubTag": "eno", + "Description": [ + "Enggano" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "eno" + }, + { + "Type": 1, + "SubTag": "enq", + "Description": [ + "Enga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "enq" + }, + { + "Type": 1, + "SubTag": "enr", + "Description": [ + "Emumu", + "Emem" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "enr" + }, + { + "Type": 1, + "SubTag": "enu", + "Description": [ + "Enu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "enu" + }, + { + "Type": 1, + "SubTag": "env", + "Description": [ + "Enwan (Edo State)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "env" + }, + { + "Type": 1, + "SubTag": "enw", + "Description": [ + "Enwan (Akwa Ibom State)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "enw" + }, + { + "Type": 1, + "SubTag": "enx", + "Description": [ + "Enxet" + ], + "Added": "2014-02-28", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "enx" + }, + { + "Type": 1, + "SubTag": "eot", + "Description": [ + "Beti (C\u00F4te d\u0027Ivoire)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "eot" + }, + { + "Type": 1, + "SubTag": "epi", + "Description": [ + "Epie" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "epi" + }, + { + "Type": 1, + "SubTag": "era", + "Description": [ + "Eravallan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "era" + }, + { + "Type": 1, + "SubTag": "erg", + "Description": [ + "Sie" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "erg" + }, + { + "Type": 1, + "SubTag": "erh", + "Description": [ + "Eruwa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "erh" + }, + { + "Type": 1, + "SubTag": "eri", + "Description": [ + "Ogea" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "eri" + }, + { + "Type": 1, + "SubTag": "erk", + "Description": [ + "South Efate" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "erk" + }, + { + "Type": 1, + "SubTag": "ero", + "Description": [ + "Horpa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ero" + }, + { + "Type": 1, + "SubTag": "err", + "Description": [ + "Erre" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "err" + }, + { + "Type": 1, + "SubTag": "ers", + "Description": [ + "Ersu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ers" + }, + { + "Type": 1, + "SubTag": "ert", + "Description": [ + "Eritai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ert" + }, + { + "Type": 1, + "SubTag": "erw", + "Description": [ + "Erokwanas" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "erw" + }, + { + "Type": 1, + "SubTag": "ese", + "Description": [ + "Ese Ejja" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ese" + }, + { + "Type": 1, + "SubTag": "esg", + "Description": [ + "Aheri Gondi" + ], + "Added": "2016-05-30", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "gon", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "esg" + }, + { + "Type": 1, + "SubTag": "esh", + "Description": [ + "Eshtehardi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "esh" + }, + { + "Type": 1, + "SubTag": "esi", + "Description": [ + "North Alaskan Inupiatun" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ik", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "esi" + }, + { + "Type": 1, + "SubTag": "esk", + "Description": [ + "Northwest Alaska Inupiatun" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ik", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "esk" + }, + { + "Type": 1, + "SubTag": "esl", + "Description": [ + "Egypt Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "esl" + }, + { + "Type": 1, + "SubTag": "esm", + "Description": [ + "Esuma" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "esm" + }, + { + "Type": 1, + "SubTag": "esn", + "Description": [ + "Salvadoran Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "esn" + }, + { + "Type": 1, + "SubTag": "eso", + "Description": [ + "Estonian Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "eso" + }, + { + "Type": 1, + "SubTag": "esq", + "Description": [ + "Esselen" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "esq" + }, + { + "Type": 1, + "SubTag": "ess", + "Description": [ + "Central Siberian Yupik" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ess" + }, + { + "Type": 1, + "SubTag": "esu", + "Description": [ + "Central Yupik" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "esu" + }, + { + "Type": 1, + "SubTag": "esx", + "Description": [ + "Eskimo-Aleut languages" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "esx" + }, + { + "Type": 1, + "SubTag": "esy", + "Description": [ + "Eskayan" + ], + "Added": "2014-04-06", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "esy" + }, + { + "Type": 1, + "SubTag": "etb", + "Description": [ + "Etebi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "etb" + }, + { + "Type": 1, + "SubTag": "etc", + "Description": [ + "Etchemin" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "etc" + }, + { + "Type": 1, + "SubTag": "eth", + "Description": [ + "Ethiopian Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "eth" + }, + { + "Type": 1, + "SubTag": "etn", + "Description": [ + "Eton (Vanuatu)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "etn" + }, + { + "Type": 1, + "SubTag": "eto", + "Description": [ + "Eton (Cameroon)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "eto" + }, + { + "Type": 1, + "SubTag": "etr", + "Description": [ + "Edolo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "etr" + }, + { + "Type": 1, + "SubTag": "ets", + "Description": [ + "Yekhee" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ets" + }, + { + "Type": 1, + "SubTag": "ett", + "Description": [ + "Etruscan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ett" + }, + { + "Type": 1, + "SubTag": "etu", + "Description": [ + "Ejagham" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "etu" + }, + { + "Type": 1, + "SubTag": "etx", + "Description": [ + "Eten" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "etx" + }, + { + "Type": 1, + "SubTag": "etz", + "Description": [ + "Semimi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "etz" + }, + { + "Type": 1, + "SubTag": "eud", + "Description": [ + "Eudeve" + ], + "Added": "2023-03-17", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "eud" + }, + { + "Type": 1, + "SubTag": "euq", + "Description": [ + "Basque (family)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "euq" + }, + { + "Type": 1, + "SubTag": "eve", + "Description": [ + "Even" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "eve" + }, + { + "Type": 1, + "SubTag": "evh", + "Description": [ + "Uvbie" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "evh" + }, + { + "Type": 1, + "SubTag": "evn", + "Description": [ + "Evenki" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "evn" + }, + { + "Type": 1, + "SubTag": "ewo", + "Description": [ + "Ewondo" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ewo" + }, + { + "Type": 1, + "SubTag": "ext", + "Description": [ + "Extremaduran" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ext" + }, + { + "Type": 1, + "SubTag": "eya", + "Description": [ + "Eyak" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "eya" + }, + { + "Type": 1, + "SubTag": "eyo", + "Description": [ + "Keiyo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "kln", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "eyo" + }, + { + "Type": 1, + "SubTag": "eza", + "Description": [ + "Ezaa" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "eza" + }, + { + "Type": 1, + "SubTag": "eze", + "Description": [ + "Uzekwe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "eze" + }, + { + "Type": 1, + "SubTag": "faa", + "Description": [ + "Fasu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "faa" + }, + { + "Type": 1, + "SubTag": "fab", + "Description": [ + "Fa d\u0027Ambu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "fab" + }, + { + "Type": 1, + "SubTag": "fad", + "Description": [ + "Wagi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "fad" + }, + { + "Type": 1, + "SubTag": "faf", + "Description": [ + "Fagani" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "faf" + }, + { + "Type": 1, + "SubTag": "fag", + "Description": [ + "Finongan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "fag" + }, + { + "Type": 1, + "SubTag": "fah", + "Description": [ + "Baissa Fali" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "fah" + }, + { + "Type": 1, + "SubTag": "fai", + "Description": [ + "Faiwol" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "fai" + }, + { + "Type": 1, + "SubTag": "faj", + "Description": [ + "Faita" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "faj" + }, + { + "Type": 1, + "SubTag": "fak", + "Description": [ + "Fang (Cameroon)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "fak" + }, + { + "Type": 1, + "SubTag": "fal", + "Description": [ + "South Fali" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "fal" + }, + { + "Type": 1, + "SubTag": "fam", + "Description": [ + "Fam" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "fam" + }, + { + "Type": 1, + "SubTag": "fan", + "Description": [ + "Fang (Equatorial Guinea)" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "fan" + }, + { + "Type": 1, + "SubTag": "fap", + "Description": [ + "Paloor" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "fap" + }, + { + "Type": 1, + "SubTag": "far", + "Description": [ + "Fataleka" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "far" + }, + { + "Type": 1, + "SubTag": "fat", + "Description": [ + "Fanti" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ak", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "fat" + }, + { + "Type": 1, + "SubTag": "fau", + "Description": [ + "Fayu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "fau" + }, + { + "Type": 1, + "SubTag": "fax", + "Description": [ + "Fala" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "fax" + }, + { + "Type": 1, + "SubTag": "fay", + "Description": [ + "Southwestern Fars" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "fay" + }, + { + "Type": 1, + "SubTag": "faz", + "Description": [ + "Northwestern Fars" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "faz" + }, + { + "Type": 1, + "SubTag": "fbl", + "Description": [ + "West Albay Bikol" + ], + "Added": "2010-03-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "bik", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "fbl" + }, + { + "Type": 1, + "SubTag": "fcs", + "Description": [ + "Quebec Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "fcs" + }, + { + "Type": 1, + "SubTag": "fer", + "Description": [ + "Feroge" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "fer" + }, + { + "Type": 1, + "SubTag": "ffi", + "Description": [ + "Foia Foia" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ffi" + }, + { + "Type": 1, + "SubTag": "ffm", + "Description": [ + "Maasina Fulfulde" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ff", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ffm" + }, + { + "Type": 1, + "SubTag": "fgr", + "Description": [ + "Fongoro" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "fgr" + }, + { + "Type": 1, + "SubTag": "fia", + "Description": [ + "Nobiin" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "fia" + }, + { + "Type": 1, + "SubTag": "fie", + "Description": [ + "Fyer" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "fie" + }, + { + "Type": 1, + "SubTag": "fif", + "Description": [ + "Faifi" + ], + "Added": "2020-06-08", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "fif" + }, + { + "Type": 1, + "SubTag": "fil", + "Description": [ + "Filipino", + "Pilipino" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "fil" + }, + { + "Type": 1, + "SubTag": "fip", + "Description": [ + "Fipa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "fip" + }, + { + "Type": 1, + "SubTag": "fir", + "Description": [ + "Firan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "fir" + }, + { + "Type": 1, + "SubTag": "fit", + "Description": [ + "Tornedalen Finnish", + "Me\u00E4nkieli" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "fit" + }, + { + "Type": 1, + "SubTag": "fiu", + "Description": [ + "Finno-Ugrian languages" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "fiu" + }, + { + "Type": 1, + "SubTag": "fiw", + "Description": [ + "Fiwaga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "fiw" + }, + { + "Type": 1, + "SubTag": "fkk", + "Description": [ + "Kirya-Konz\u0259l" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "fkk" + }, + { + "Type": 1, + "SubTag": "fkv", + "Description": [ + "Kven Finnish" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "fkv" + }, + { + "Type": 1, + "SubTag": "fla", + "Description": [ + "Kalispel-Pend d\u0027Oreille" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "fla" + }, + { + "Type": 1, + "SubTag": "flh", + "Description": [ + "Foau" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "flh" + }, + { + "Type": 1, + "SubTag": "fli", + "Description": [ + "Fali" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "fli" + }, + { + "Type": 1, + "SubTag": "fll", + "Description": [ + "North Fali" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "fll" + }, + { + "Type": 1, + "SubTag": "fln", + "Description": [ + "Flinders Island" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "fln" + }, + { + "Type": 1, + "SubTag": "flr", + "Description": [ + "Fuliiru" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "flr" + }, + { + "Type": 1, + "SubTag": "fly", + "Description": [ + "Flaaitaal", + "Tsotsitaal" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "fly" + }, + { + "Type": 1, + "SubTag": "fmp", + "Description": [ + "Fe\u0027fe\u0027" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "fmp" + }, + { + "Type": 1, + "SubTag": "fmu", + "Description": [ + "Far Western Muria" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "fmu" + }, + { + "Type": 1, + "SubTag": "fnb", + "Description": [ + "Fanbak" + ], + "Added": "2016-05-30", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "fnb" + }, + { + "Type": 1, + "SubTag": "fng", + "Description": [ + "Fanagalo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "fng" + }, + { + "Type": 1, + "SubTag": "fni", + "Description": [ + "Fania" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "fni" + }, + { + "Type": 1, + "SubTag": "fod", + "Description": [ + "Foodo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "fod" + }, + { + "Type": 1, + "SubTag": "foi", + "Description": [ + "Foi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "foi" + }, + { + "Type": 1, + "SubTag": "fom", + "Description": [ + "Foma" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "fom" + }, + { + "Type": 1, + "SubTag": "fon", + "Description": [ + "Fon" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "fon" + }, + { + "Type": 1, + "SubTag": "for", + "Description": [ + "Fore" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "for" + }, + { + "Type": 1, + "SubTag": "fos", + "Description": [ + "Siraya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "fos" + }, + { + "Type": 1, + "SubTag": "fox", + "Description": [ + "Formosan languages" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "fox" + }, + { + "Type": 1, + "SubTag": "fpe", + "Description": [ + "Fernando Po Creole English" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "fpe" + }, + { + "Type": 1, + "SubTag": "fqs", + "Description": [ + "Fas" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "fqs" + }, + { + "Type": 1, + "SubTag": "frc", + "Description": [ + "Cajun French" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "frc" + }, + { + "Type": 1, + "SubTag": "frd", + "Description": [ + "Fordata" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "frd" + }, + { + "Type": 1, + "SubTag": "frk", + "Description": [ + "Frankish" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "frk" + }, + { + "Type": 1, + "SubTag": "frm", + "Description": [ + "Middle French (ca. 1400-1600)" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "frm" + }, + { + "Type": 1, + "SubTag": "fro", + "Description": [ + "Old French (842-ca. 1400)" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "fro" + }, + { + "Type": 1, + "SubTag": "frp", + "Description": [ + "Arpitan", + "Francoproven\u00E7al" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "frp" + }, + { + "Type": 1, + "SubTag": "frq", + "Description": [ + "Forak" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "frq" + }, + { + "Type": 1, + "SubTag": "frr", + "Description": [ + "Northern Frisian" + ], + "Added": "2006-03-08", + "SuppressScript": "Latn", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "frr" + }, + { + "Type": 1, + "SubTag": "frs", + "Description": [ + "Eastern Frisian" + ], + "Added": "2006-03-08", + "SuppressScript": "Latn", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "frs" + }, + { + "Type": 1, + "SubTag": "frt", + "Description": [ + "Fortsenal" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "frt" + }, + { + "Type": 1, + "SubTag": "fse", + "Description": [ + "Finnish Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "fse" + }, + { + "Type": 1, + "SubTag": "fsl", + "Description": [ + "French Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "fsl" + }, + { + "Type": 1, + "SubTag": "fss", + "Description": [ + "Finland-Swedish Sign Language", + "finlandssvenskt teckenspr\u00E5k", + "suomenruotsalainen viittomakieli" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "fss" + }, + { + "Type": 1, + "SubTag": "fub", + "Description": [ + "Adamawa Fulfulde" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ff", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "fub" + }, + { + "Type": 1, + "SubTag": "fuc", + "Description": [ + "Pulaar" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ff", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "fuc" + }, + { + "Type": 1, + "SubTag": "fud", + "Description": [ + "East Futuna" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "fud" + }, + { + "Type": 1, + "SubTag": "fue", + "Description": [ + "Borgu Fulfulde" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ff", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "fue" + }, + { + "Type": 1, + "SubTag": "fuf", + "Description": [ + "Pular" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ff", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "fuf" + }, + { + "Type": 1, + "SubTag": "fuh", + "Description": [ + "Western Niger Fulfulde" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ff", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "fuh" + }, + { + "Type": 1, + "SubTag": "fui", + "Description": [ + "Bagirmi Fulfulde" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ff", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "fui" + }, + { + "Type": 1, + "SubTag": "fuj", + "Description": [ + "Ko" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "fuj" + }, + { + "Type": 1, + "SubTag": "fum", + "Description": [ + "Fum" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "fum" + }, + { + "Type": 1, + "SubTag": "fun", + "Description": [ + "Fulni\u00F4" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "fun" + }, + { + "Type": 1, + "SubTag": "fuq", + "Description": [ + "Central-Eastern Niger Fulfulde" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ff", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "fuq" + }, + { + "Type": 1, + "SubTag": "fur", + "Description": [ + "Friulian" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "fur" + }, + { + "Type": 1, + "SubTag": "fut", + "Description": [ + "Futuna-Aniwa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "fut" + }, + { + "Type": 1, + "SubTag": "fuu", + "Description": [ + "Furu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "fuu" + }, + { + "Type": 1, + "SubTag": "fuv", + "Description": [ + "Nigerian Fulfulde" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ff", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "fuv" + }, + { + "Type": 1, + "SubTag": "fuy", + "Description": [ + "Fuyug" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "fuy" + }, + { + "Type": 1, + "SubTag": "fvr", + "Description": [ + "Fur" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "fvr" + }, + { + "Type": 1, + "SubTag": "fwa", + "Description": [ + "Fw\u00E2i" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "fwa" + }, + { + "Type": 1, + "SubTag": "fwe", + "Description": [ + "Fwe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "fwe" + }, + { + "Type": 1, + "SubTag": "gaa", + "Description": [ + "Ga" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gaa" + }, + { + "Type": 1, + "SubTag": "gab", + "Description": [ + "Gabri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gab" + }, + { + "Type": 1, + "SubTag": "gac", + "Description": [ + "Mixed Great Andamanese" + ], + "Added": "2010-03-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gac" + }, + { + "Type": 1, + "SubTag": "gad", + "Description": [ + "Gaddang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gad" + }, + { + "Type": 1, + "SubTag": "gae", + "Description": [ + "Guarequena" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gae" + }, + { + "Type": 1, + "SubTag": "gaf", + "Description": [ + "Gende" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gaf" + }, + { + "Type": 1, + "SubTag": "gag", + "Description": [ + "Gagauz" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gag" + }, + { + "Type": 1, + "SubTag": "gah", + "Description": [ + "Alekano" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gah" + }, + { + "Type": 1, + "SubTag": "gai", + "Description": [ + "Borei" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gai" + }, + { + "Type": 1, + "SubTag": "gaj", + "Description": [ + "Gadsup" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gaj" + }, + { + "Type": 1, + "SubTag": "gak", + "Description": [ + "Gamkonora" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gak" + }, + { + "Type": 1, + "SubTag": "gal", + "Description": [ + "Galolen" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gal" + }, + { + "Type": 1, + "SubTag": "gam", + "Description": [ + "Kandawo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gam" + }, + { + "Type": 1, + "SubTag": "gan", + "Description": [ + "Gan Chinese" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zh", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gan" + }, + { + "Type": 1, + "SubTag": "gao", + "Description": [ + "Gants" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gao" + }, + { + "Type": 1, + "SubTag": "gap", + "Description": [ + "Gal" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gap" + }, + { + "Type": 1, + "SubTag": "gaq", + "Description": [ + "Gata\u0027" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gaq" + }, + { + "Type": 1, + "SubTag": "gar", + "Description": [ + "Galeya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gar" + }, + { + "Type": 1, + "SubTag": "gas", + "Description": [ + "Adiwasi Garasia" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gas" + }, + { + "Type": 1, + "SubTag": "gat", + "Description": [ + "Kenati" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gat" + }, + { + "Type": 1, + "SubTag": "gau", + "Description": [ + "Mudhili Gadaba" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gau" + }, + { + "Type": 1, + "SubTag": "gav", + "Description": [ + "Gabutamon" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2010-03-11", + "Comments": [], + "Prefix": [], + "PreferredValue": "dev", + "Tag": "", + "TagAny": "gav" + }, + { + "Type": 1, + "SubTag": "gaw", + "Description": [ + "Nobonob" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gaw" + }, + { + "Type": 1, + "SubTag": "gax", + "Description": [ + "Borana-Arsi-Guji Oromo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "om", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gax" + }, + { + "Type": 1, + "SubTag": "gay", + "Description": [ + "Gayo" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gay" + }, + { + "Type": 1, + "SubTag": "gaz", + "Description": [ + "West Central Oromo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "om", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gaz" + }, + { + "Type": 1, + "SubTag": "gba", + "Description": [ + "Gbaya (Central African Republic)" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "macrolanguage", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gba" + }, + { + "Type": 1, + "SubTag": "gbb", + "Description": [ + "Kaytetye" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gbb" + }, + { + "Type": 1, + "SubTag": "gbc", + "Description": [ + "Garawa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2012-08-12", + "Comments": [ + "see wny, wrk" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gbc" + }, + { + "Type": 1, + "SubTag": "gbd", + "Description": [ + "Karajarri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gbd" + }, + { + "Type": 1, + "SubTag": "gbe", + "Description": [ + "Niksek" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gbe" + }, + { + "Type": 1, + "SubTag": "gbf", + "Description": [ + "Gaikundi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gbf" + }, + { + "Type": 1, + "SubTag": "gbg", + "Description": [ + "Gbanziri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gbg" + }, + { + "Type": 1, + "SubTag": "gbh", + "Description": [ + "Defi Gbe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gbh" + }, + { + "Type": 1, + "SubTag": "gbi", + "Description": [ + "Galela" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gbi" + }, + { + "Type": 1, + "SubTag": "gbj", + "Description": [ + "Bodo Gadaba" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gbj" + }, + { + "Type": 1, + "SubTag": "gbk", + "Description": [ + "Gaddi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gbk" + }, + { + "Type": 1, + "SubTag": "gbl", + "Description": [ + "Gamit" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gbl" + }, + { + "Type": 1, + "SubTag": "gbm", + "Description": [ + "Garhwali" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gbm" + }, + { + "Type": 1, + "SubTag": "gbn", + "Description": [ + "Mo\u0027da" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gbn" + }, + { + "Type": 1, + "SubTag": "gbo", + "Description": [ + "Northern Grebo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "grb", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gbo" + }, + { + "Type": 1, + "SubTag": "gbp", + "Description": [ + "Gbaya-Bossangoa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "gba", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gbp" + }, + { + "Type": 1, + "SubTag": "gbq", + "Description": [ + "Gbaya-Bozoum" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "gba", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gbq" + }, + { + "Type": 1, + "SubTag": "gbr", + "Description": [ + "Gbagyi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gbr" + }, + { + "Type": 1, + "SubTag": "gbs", + "Description": [ + "Gbesi Gbe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gbs" + }, + { + "Type": 1, + "SubTag": "gbu", + "Description": [ + "Gagadu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gbu" + }, + { + "Type": 1, + "SubTag": "gbv", + "Description": [ + "Gbanu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gbv" + }, + { + "Type": 1, + "SubTag": "gbw", + "Description": [ + "Gabi-Gabi" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gbw" + }, + { + "Type": 1, + "SubTag": "gbx", + "Description": [ + "Eastern Xwla Gbe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gbx" + }, + { + "Type": 1, + "SubTag": "gby", + "Description": [ + "Gbari" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gby" + }, + { + "Type": 1, + "SubTag": "gbz", + "Description": [ + "Zoroastrian Dari" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gbz" + }, + { + "Type": 1, + "SubTag": "gcc", + "Description": [ + "Mali" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gcc" + }, + { + "Type": 1, + "SubTag": "gcd", + "Description": [ + "Ganggalida" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gcd" + }, + { + "Type": 1, + "SubTag": "gce", + "Description": [ + "Galice" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gce" + }, + { + "Type": 1, + "SubTag": "gcf", + "Description": [ + "Guadeloupean Creole French" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gcf" + }, + { + "Type": 1, + "SubTag": "gcl", + "Description": [ + "Grenadian Creole English" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gcl" + }, + { + "Type": 1, + "SubTag": "gcn", + "Description": [ + "Gaina" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gcn" + }, + { + "Type": 1, + "SubTag": "gcr", + "Description": [ + "Guianese Creole French" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gcr" + }, + { + "Type": 1, + "SubTag": "gct", + "Description": [ + "Colonia Tovar German" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gct" + }, + { + "Type": 1, + "SubTag": "gda", + "Description": [ + "Gade Lohar" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "raj", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gda" + }, + { + "Type": 1, + "SubTag": "gdb", + "Description": [ + "Pottangi Ollar Gadaba" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gdb" + }, + { + "Type": 1, + "SubTag": "gdc", + "Description": [ + "Gugu Badhun" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gdc" + }, + { + "Type": 1, + "SubTag": "gdd", + "Description": [ + "Gedaged" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gdd" + }, + { + "Type": 1, + "SubTag": "gde", + "Description": [ + "Gude" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gde" + }, + { + "Type": 1, + "SubTag": "gdf", + "Description": [ + "Guduf-Gava" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gdf" + }, + { + "Type": 1, + "SubTag": "gdg", + "Description": [ + "Ga\u0027dang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gdg" + }, + { + "Type": 1, + "SubTag": "gdh", + "Description": [ + "Gadjerawang", + "Gajirrabeng" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gdh" + }, + { + "Type": 1, + "SubTag": "gdi", + "Description": [ + "Gundi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gdi" + }, + { + "Type": 1, + "SubTag": "gdj", + "Description": [ + "Gurdjar" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gdj" + }, + { + "Type": 1, + "SubTag": "gdk", + "Description": [ + "Gadang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gdk" + }, + { + "Type": 1, + "SubTag": "gdl", + "Description": [ + "Dirasha" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gdl" + }, + { + "Type": 1, + "SubTag": "gdm", + "Description": [ + "Laal" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gdm" + }, + { + "Type": 1, + "SubTag": "gdn", + "Description": [ + "Umanakaina" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gdn" + }, + { + "Type": 1, + "SubTag": "gdo", + "Description": [ + "Ghodoberi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gdo" + }, + { + "Type": 1, + "SubTag": "gdq", + "Description": [ + "Mehri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gdq" + }, + { + "Type": 1, + "SubTag": "gdr", + "Description": [ + "Wipi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gdr" + }, + { + "Type": 1, + "SubTag": "gds", + "Description": [ + "Ghandruk Sign Language" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gds" + }, + { + "Type": 1, + "SubTag": "gdt", + "Description": [ + "Kungardutyi" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gdt" + }, + { + "Type": 1, + "SubTag": "gdu", + "Description": [ + "Gudu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gdu" + }, + { + "Type": 1, + "SubTag": "gdx", + "Description": [ + "Godwari" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gdx" + }, + { + "Type": 1, + "SubTag": "gea", + "Description": [ + "Geruma" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gea" + }, + { + "Type": 1, + "SubTag": "geb", + "Description": [ + "Kire" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "geb" + }, + { + "Type": 1, + "SubTag": "gec", + "Description": [ + "Gboloo Grebo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "grb", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gec" + }, + { + "Type": 1, + "SubTag": "ged", + "Description": [ + "Gade" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ged" + }, + { + "Type": 1, + "SubTag": "gef", + "Description": [ + "Gerai" + ], + "Added": "2020-03-28", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gef" + }, + { + "Type": 1, + "SubTag": "geg", + "Description": [ + "Gengle" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "geg" + }, + { + "Type": 1, + "SubTag": "geh", + "Description": [ + "Hutterite German", + "Hutterisch" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "geh" + }, + { + "Type": 1, + "SubTag": "gei", + "Description": [ + "Gebe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gei" + }, + { + "Type": 1, + "SubTag": "gej", + "Description": [ + "Gen" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gej" + }, + { + "Type": 1, + "SubTag": "gek", + "Description": [ + "Ywom" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gek" + }, + { + "Type": 1, + "SubTag": "gel", + "Description": [ + "ut-Ma\u0027in" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gel" + }, + { + "Type": 1, + "SubTag": "gem", + "Description": [ + "Germanic languages" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gem" + }, + { + "Type": 1, + "SubTag": "geq", + "Description": [ + "Geme" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "geq" + }, + { + "Type": 1, + "SubTag": "ges", + "Description": [ + "Geser-Gorom" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ges" + }, + { + "Type": 1, + "SubTag": "gev", + "Description": [ + "Eviya" + ], + "Added": "2014-02-28", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gev" + }, + { + "Type": 1, + "SubTag": "gew", + "Description": [ + "Gera" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gew" + }, + { + "Type": 1, + "SubTag": "gex", + "Description": [ + "Garre" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gex" + }, + { + "Type": 1, + "SubTag": "gey", + "Description": [ + "Enya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gey" + }, + { + "Type": 1, + "SubTag": "gez", + "Description": [ + "Geez" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gez" + }, + { + "Type": 1, + "SubTag": "gfk", + "Description": [ + "Patpatar" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gfk" + }, + { + "Type": 1, + "SubTag": "gft", + "Description": [ + "Gafat" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gft" + }, + { + "Type": 1, + "SubTag": "gfx", + "Description": [ + "Mangetti Dune \u01C3Xung" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2015-02-12", + "Comments": [], + "Prefix": [], + "PreferredValue": "vaj", + "Tag": "", + "TagAny": "gfx" + }, + { + "Type": 1, + "SubTag": "gga", + "Description": [ + "Gao" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gga" + }, + { + "Type": 1, + "SubTag": "ggb", + "Description": [ + "Gbii" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ggb" + }, + { + "Type": 1, + "SubTag": "ggd", + "Description": [ + "Gugadj" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ggd" + }, + { + "Type": 1, + "SubTag": "gge", + "Description": [ + "Gurr-goni" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gge" + }, + { + "Type": 1, + "SubTag": "ggg", + "Description": [ + "Gurgula" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ggg" + }, + { + "Type": 1, + "SubTag": "ggk", + "Description": [ + "Kungarakany" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ggk" + }, + { + "Type": 1, + "SubTag": "ggl", + "Description": [ + "Ganglau" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ggl" + }, + { + "Type": 1, + "SubTag": "ggn", + "Description": [ + "Eastern Gurung" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2016-05-30", + "Comments": [], + "Prefix": [], + "PreferredValue": "gvr", + "Tag": "", + "TagAny": "ggn" + }, + { + "Type": 1, + "SubTag": "ggo", + "Description": [ + "Southern Gondi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2016-05-30", + "Comments": [ + "see esg, wsg" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ggo" + }, + { + "Type": 1, + "SubTag": "ggr", + "Description": [ + "Aghu Tharnggalu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2013-09-10", + "Comments": [ + "see gtu, ikr" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ggr" + }, + { + "Type": 1, + "SubTag": "ggt", + "Description": [ + "Gitua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ggt" + }, + { + "Type": 1, + "SubTag": "ggu", + "Description": [ + "Gagu", + "Gban" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ggu" + }, + { + "Type": 1, + "SubTag": "ggw", + "Description": [ + "Gogodala" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ggw" + }, + { + "Type": 1, + "SubTag": "gha", + "Description": [ + "Ghadam\u00E8s" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gha" + }, + { + "Type": 1, + "SubTag": "ghc", + "Description": [ + "Hiberno-Scottish Gaelic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ghc" + }, + { + "Type": 1, + "SubTag": "ghe", + "Description": [ + "Southern Ghale" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ghe" + }, + { + "Type": 1, + "SubTag": "ghh", + "Description": [ + "Northern Ghale" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ghh" + }, + { + "Type": 1, + "SubTag": "ghk", + "Description": [ + "Geko Karen" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ghk" + }, + { + "Type": 1, + "SubTag": "ghl", + "Description": [ + "Ghulfan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ghl" + }, + { + "Type": 1, + "SubTag": "ghn", + "Description": [ + "Ghanongga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ghn" + }, + { + "Type": 1, + "SubTag": "gho", + "Description": [ + "Ghomara" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gho" + }, + { + "Type": 1, + "SubTag": "ghr", + "Description": [ + "Ghera" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ghr" + }, + { + "Type": 1, + "SubTag": "ghs", + "Description": [ + "Guhu-Samane" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ghs" + }, + { + "Type": 1, + "SubTag": "ght", + "Description": [ + "Kuke", + "Kutang Ghale" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ght" + }, + { + "Type": 1, + "SubTag": "gia", + "Description": [ + "Kija" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gia" + }, + { + "Type": 1, + "SubTag": "gib", + "Description": [ + "Gibanawa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gib" + }, + { + "Type": 1, + "SubTag": "gic", + "Description": [ + "Gail" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gic" + }, + { + "Type": 1, + "SubTag": "gid", + "Description": [ + "Gidar" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gid" + }, + { + "Type": 1, + "SubTag": "gie", + "Description": [ + "Ga\u0253ogbo", + "Gu\u00E9bie" + ], + "Added": "2017-02-23", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gie" + }, + { + "Type": 1, + "SubTag": "gig", + "Description": [ + "Goaria" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gig" + }, + { + "Type": 1, + "SubTag": "gih", + "Description": [ + "Githabul" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gih" + }, + { + "Type": 1, + "SubTag": "gii", + "Description": [ + "Girirra" + ], + "Added": "2021-02-20", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gii" + }, + { + "Type": 1, + "SubTag": "gil", + "Description": [ + "Gilbertese" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gil" + }, + { + "Type": 1, + "SubTag": "gim", + "Description": [ + "Gimi (Eastern Highlands)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gim" + }, + { + "Type": 1, + "SubTag": "gin", + "Description": [ + "Hinukh" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gin" + }, + { + "Type": 1, + "SubTag": "gio", + "Description": [ + "Gelao" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2012-08-12", + "Comments": [ + "see aou, gqu" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gio" + }, + { + "Type": 1, + "SubTag": "gip", + "Description": [ + "Gimi (West New Britain)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gip" + }, + { + "Type": 1, + "SubTag": "giq", + "Description": [ + "Green Gelao" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "giq" + }, + { + "Type": 1, + "SubTag": "gir", + "Description": [ + "Red Gelao" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gir" + }, + { + "Type": 1, + "SubTag": "gis", + "Description": [ + "North Giziga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gis" + }, + { + "Type": 1, + "SubTag": "git", + "Description": [ + "Gitxsan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "git" + }, + { + "Type": 1, + "SubTag": "giu", + "Description": [ + "Mulao" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "giu" + }, + { + "Type": 1, + "SubTag": "giw", + "Description": [ + "White Gelao" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "giw" + }, + { + "Type": 1, + "SubTag": "gix", + "Description": [ + "Gilima" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gix" + }, + { + "Type": 1, + "SubTag": "giy", + "Description": [ + "Giyug" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "giy" + }, + { + "Type": 1, + "SubTag": "giz", + "Description": [ + "South Giziga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "giz" + }, + { + "Type": 1, + "SubTag": "gji", + "Description": [ + "Geji" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2021-02-20", + "Comments": [ + "see gyz, zbu" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gji" + }, + { + "Type": 1, + "SubTag": "gjk", + "Description": [ + "Kachi Koli" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gjk" + }, + { + "Type": 1, + "SubTag": "gjm", + "Description": [ + "Gunditjmara" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gjm" + }, + { + "Type": 1, + "SubTag": "gjn", + "Description": [ + "Gonja" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gjn" + }, + { + "Type": 1, + "SubTag": "gjr", + "Description": [ + "Gurindji Kriol" + ], + "Added": "2016-05-30", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gjr" + }, + { + "Type": 1, + "SubTag": "gju", + "Description": [ + "Gujari" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "raj", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gju" + }, + { + "Type": 1, + "SubTag": "gka", + "Description": [ + "Guya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gka" + }, + { + "Type": 1, + "SubTag": "gkd", + "Description": [ + "Mag\u0268 (Madang Province)" + ], + "Added": "2018-03-08", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gkd" + }, + { + "Type": 1, + "SubTag": "gke", + "Description": [ + "Ndai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gke" + }, + { + "Type": 1, + "SubTag": "gkn", + "Description": [ + "Gokana" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gkn" + }, + { + "Type": 1, + "SubTag": "gko", + "Description": [ + "Kok-Nar" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gko" + }, + { + "Type": 1, + "SubTag": "gkp", + "Description": [ + "Guinea Kpelle" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "kpe", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gkp" + }, + { + "Type": 1, + "SubTag": "gku", + "Description": [ + "\u01C2Ungkue" + ], + "Added": "2015-02-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gku" + }, + { + "Type": 1, + "SubTag": "glb", + "Description": [ + "Belning" + ], + "Added": "2021-02-20", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "glb" + }, + { + "Type": 1, + "SubTag": "glc", + "Description": [ + "Bon Gula" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "glc" + }, + { + "Type": 1, + "SubTag": "gld", + "Description": [ + "Nanai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gld" + }, + { + "Type": 1, + "SubTag": "glh", + "Description": [ + "Northwest Pashai", + "Northwest Pashayi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "glh" + }, + { + "Type": 1, + "SubTag": "gli", + "Description": [ + "Guliguli" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2020-03-28", + "Comments": [], + "Prefix": [], + "PreferredValue": "kzk", + "Tag": "", + "TagAny": "gli" + }, + { + "Type": 1, + "SubTag": "glj", + "Description": [ + "Gula Iro" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "glj" + }, + { + "Type": 1, + "SubTag": "glk", + "Description": [ + "Gilaki" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "glk" + }, + { + "Type": 1, + "SubTag": "gll", + "Description": [ + "Garlali" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gll" + }, + { + "Type": 1, + "SubTag": "glo", + "Description": [ + "Galambu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "glo" + }, + { + "Type": 1, + "SubTag": "glr", + "Description": [ + "Glaro-Twabo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "glr" + }, + { + "Type": 1, + "SubTag": "glu", + "Description": [ + "Gula (Chad)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "glu" + }, + { + "Type": 1, + "SubTag": "glw", + "Description": [ + "Glavda" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "glw" + }, + { + "Type": 1, + "SubTag": "gly", + "Description": [ + "Gule" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gly" + }, + { + "Type": 1, + "SubTag": "gma", + "Description": [ + "Gambera" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gma" + }, + { + "Type": 1, + "SubTag": "gmb", + "Description": [ + "Gula\u0027alaa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gmb" + }, + { + "Type": 1, + "SubTag": "gmd", + "Description": [ + "M\u00E1ghd\u00EC" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gmd" + }, + { + "Type": 1, + "SubTag": "gme", + "Description": [ + "East Germanic languages" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gme" + }, + { + "Type": 1, + "SubTag": "gmg", + "Description": [ + "Mag\u0268yi" + ], + "Added": "2014-02-28", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gmg" + }, + { + "Type": 1, + "SubTag": "gmh", + "Description": [ + "Middle High German (ca. 1050-1500)" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gmh" + }, + { + "Type": 1, + "SubTag": "gml", + "Description": [ + "Middle Low German" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gml" + }, + { + "Type": 1, + "SubTag": "gmm", + "Description": [ + "Gbaya-Mbodomo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "gba", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gmm" + }, + { + "Type": 1, + "SubTag": "gmn", + "Description": [ + "Gimnime" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gmn" + }, + { + "Type": 1, + "SubTag": "gmq", + "Description": [ + "North Germanic languages" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gmq" + }, + { + "Type": 1, + "SubTag": "gmr", + "Description": [ + "Mirning", + "Mirniny" + ], + "Added": "2020-03-28", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gmr" + }, + { + "Type": 1, + "SubTag": "gmu", + "Description": [ + "Gumalu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gmu" + }, + { + "Type": 1, + "SubTag": "gmv", + "Description": [ + "Gamo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gmv" + }, + { + "Type": 1, + "SubTag": "gmw", + "Description": [ + "West Germanic languages" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gmw" + }, + { + "Type": 1, + "SubTag": "gmx", + "Description": [ + "Magoma" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gmx" + }, + { + "Type": 1, + "SubTag": "gmy", + "Description": [ + "Mycenaean Greek" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gmy" + }, + { + "Type": 1, + "SubTag": "gmz", + "Description": [ + "Mgbolizhia" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gmz" + }, + { + "Type": 1, + "SubTag": "gna", + "Description": [ + "Kaansa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gna" + }, + { + "Type": 1, + "SubTag": "gnb", + "Description": [ + "Gangte" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gnb" + }, + { + "Type": 1, + "SubTag": "gnc", + "Description": [ + "Guanche" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gnc" + }, + { + "Type": 1, + "SubTag": "gnd", + "Description": [ + "Zulgo-Gemzek" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gnd" + }, + { + "Type": 1, + "SubTag": "gne", + "Description": [ + "Ganang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gne" + }, + { + "Type": 1, + "SubTag": "gng", + "Description": [ + "Ngangam" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gng" + }, + { + "Type": 1, + "SubTag": "gnh", + "Description": [ + "Lere" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gnh" + }, + { + "Type": 1, + "SubTag": "gni", + "Description": [ + "Gooniyandi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gni" + }, + { + "Type": 1, + "SubTag": "gnj", + "Description": [ + "Ngen" + ], + "Added": "2018-03-08", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gnj" + }, + { + "Type": 1, + "SubTag": "gnk", + "Description": [ + "\u01C1Gana" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gnk" + }, + { + "Type": 1, + "SubTag": "gnl", + "Description": [ + "Gangulu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gnl" + }, + { + "Type": 1, + "SubTag": "gnm", + "Description": [ + "Ginuman" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gnm" + }, + { + "Type": 1, + "SubTag": "gnn", + "Description": [ + "Gumatj" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gnn" + }, + { + "Type": 1, + "SubTag": "gno", + "Description": [ + "Northern Gondi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "gon", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gno" + }, + { + "Type": 1, + "SubTag": "gnq", + "Description": [ + "Gana" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gnq" + }, + { + "Type": 1, + "SubTag": "gnr", + "Description": [ + "Gureng Gureng" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gnr" + }, + { + "Type": 1, + "SubTag": "gnt", + "Description": [ + "Guntai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gnt" + }, + { + "Type": 1, + "SubTag": "gnu", + "Description": [ + "Gnau" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gnu" + }, + { + "Type": 1, + "SubTag": "gnw", + "Description": [ + "Western Bolivian Guaran\u00ED" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "gn", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gnw" + }, + { + "Type": 1, + "SubTag": "gnz", + "Description": [ + "Ganzi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gnz" + }, + { + "Type": 1, + "SubTag": "goa", + "Description": [ + "Guro" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "goa" + }, + { + "Type": 1, + "SubTag": "gob", + "Description": [ + "Playero" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gob" + }, + { + "Type": 1, + "SubTag": "goc", + "Description": [ + "Gorakor" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "goc" + }, + { + "Type": 1, + "SubTag": "god", + "Description": [ + "Godi\u00E9" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "god" + }, + { + "Type": 1, + "SubTag": "goe", + "Description": [ + "Gongduk" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "goe" + }, + { + "Type": 1, + "SubTag": "gof", + "Description": [ + "Gofa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gof" + }, + { + "Type": 1, + "SubTag": "gog", + "Description": [ + "Gogo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gog" + }, + { + "Type": 1, + "SubTag": "goh", + "Description": [ + "Old High German (ca. 750-1050)" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "goh" + }, + { + "Type": 1, + "SubTag": "goi", + "Description": [ + "Gobasi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "goi" + }, + { + "Type": 1, + "SubTag": "goj", + "Description": [ + "Gowlan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "goj" + }, + { + "Type": 1, + "SubTag": "gok", + "Description": [ + "Gowli" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gok" + }, + { + "Type": 1, + "SubTag": "gol", + "Description": [ + "Gola" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gol" + }, + { + "Type": 1, + "SubTag": "gom", + "Description": [ + "Goan Konkani" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "kok", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gom" + }, + { + "Type": 1, + "SubTag": "gon", + "Description": [ + "Gondi" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "macrolanguage", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gon" + }, + { + "Type": 1, + "SubTag": "goo", + "Description": [ + "Gone Dau" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "goo" + }, + { + "Type": 1, + "SubTag": "gop", + "Description": [ + "Yeretuar" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gop" + }, + { + "Type": 1, + "SubTag": "goq", + "Description": [ + "Gorap" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "goq" + }, + { + "Type": 1, + "SubTag": "gor", + "Description": [ + "Gorontalo" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gor" + }, + { + "Type": 1, + "SubTag": "gos", + "Description": [ + "Gronings" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gos" + }, + { + "Type": 1, + "SubTag": "got", + "Description": [ + "Gothic" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "got" + }, + { + "Type": 1, + "SubTag": "gou", + "Description": [ + "Gavar" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gou" + }, + { + "Type": 1, + "SubTag": "gov", + "Description": [ + "Goo" + ], + "Added": "2022-02-25", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gov" + }, + { + "Type": 1, + "SubTag": "gow", + "Description": [ + "Gorowa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gow" + }, + { + "Type": 1, + "SubTag": "gox", + "Description": [ + "Gobu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gox" + }, + { + "Type": 1, + "SubTag": "goy", + "Description": [ + "Goundo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "goy" + }, + { + "Type": 1, + "SubTag": "goz", + "Description": [ + "Gozarkhani" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "goz" + }, + { + "Type": 1, + "SubTag": "gpa", + "Description": [ + "Gupa-Abawa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gpa" + }, + { + "Type": 1, + "SubTag": "gpe", + "Description": [ + "Ghanaian Pidgin English" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gpe" + }, + { + "Type": 1, + "SubTag": "gpn", + "Description": [ + "Taiap" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gpn" + }, + { + "Type": 1, + "SubTag": "gqa", + "Description": [ + "Ga\u0027anda" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gqa" + }, + { + "Type": 1, + "SubTag": "gqi", + "Description": [ + "Guiqiong" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gqi" + }, + { + "Type": 1, + "SubTag": "gqn", + "Description": [ + "Guana (Brazil)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gqn" + }, + { + "Type": 1, + "SubTag": "gqr", + "Description": [ + "Gor" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gqr" + }, + { + "Type": 1, + "SubTag": "gqu", + "Description": [ + "Qau" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gqu" + }, + { + "Type": 1, + "SubTag": "gra", + "Description": [ + "Rajput Garasia" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gra" + }, + { + "Type": 1, + "SubTag": "grb", + "Description": [ + "Grebo" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "macrolanguage", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "grb" + }, + { + "Type": 1, + "SubTag": "grc", + "Description": [ + "Ancient Greek (to 1453)" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "grc" + }, + { + "Type": 1, + "SubTag": "grd", + "Description": [ + "Guruntum-Mbaaru" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "grd" + }, + { + "Type": 1, + "SubTag": "grg", + "Description": [ + "Madi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "grg" + }, + { + "Type": 1, + "SubTag": "grh", + "Description": [ + "Gbiri-Niragu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "grh" + }, + { + "Type": 1, + "SubTag": "gri", + "Description": [ + "Ghari" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gri" + }, + { + "Type": 1, + "SubTag": "grj", + "Description": [ + "Southern Grebo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "grb", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "grj" + }, + { + "Type": 1, + "SubTag": "grk", + "Description": [ + "Greek languages" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "grk" + }, + { + "Type": 1, + "SubTag": "grm", + "Description": [ + "Kota Marudu Talantang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "grm" + }, + { + "Type": 1, + "SubTag": "gro", + "Description": [ + "Groma" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gro" + }, + { + "Type": 1, + "SubTag": "grq", + "Description": [ + "Gorovu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "grq" + }, + { + "Type": 1, + "SubTag": "grr", + "Description": [ + "Taznatit" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "grr" + }, + { + "Type": 1, + "SubTag": "grs", + "Description": [ + "Gresi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "grs" + }, + { + "Type": 1, + "SubTag": "grt", + "Description": [ + "Garo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "grt" + }, + { + "Type": 1, + "SubTag": "gru", + "Description": [ + "Kistane" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gru" + }, + { + "Type": 1, + "SubTag": "grv", + "Description": [ + "Central Grebo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "grb", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "grv" + }, + { + "Type": 1, + "SubTag": "grw", + "Description": [ + "Gweda" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "grw" + }, + { + "Type": 1, + "SubTag": "grx", + "Description": [ + "Guriaso" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "grx" + }, + { + "Type": 1, + "SubTag": "gry", + "Description": [ + "Barclayville Grebo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "grb", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gry" + }, + { + "Type": 1, + "SubTag": "grz", + "Description": [ + "Guramalum" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "grz" + }, + { + "Type": 1, + "SubTag": "gse", + "Description": [ + "Ghanaian Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gse" + }, + { + "Type": 1, + "SubTag": "gsg", + "Description": [ + "German Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gsg" + }, + { + "Type": 1, + "SubTag": "gsl", + "Description": [ + "Gusilay" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gsl" + }, + { + "Type": 1, + "SubTag": "gsm", + "Description": [ + "Guatemalan Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gsm" + }, + { + "Type": 1, + "SubTag": "gsn", + "Description": [ + "Nema", + "Gusan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gsn" + }, + { + "Type": 1, + "SubTag": "gso", + "Description": [ + "Southwest Gbaya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "gba", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gso" + }, + { + "Type": 1, + "SubTag": "gsp", + "Description": [ + "Wasembo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gsp" + }, + { + "Type": 1, + "SubTag": "gss", + "Description": [ + "Greek Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gss" + }, + { + "Type": 1, + "SubTag": "gsw", + "Description": [ + "Swiss German", + "Alemannic", + "Alsatian" + ], + "Added": "2006-03-08", + "SuppressScript": "Latn", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gsw" + }, + { + "Type": 1, + "SubTag": "gta", + "Description": [ + "Guat\u00F3" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gta" + }, + { + "Type": 1, + "SubTag": "gti", + "Description": [ + "Gbati-ri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2015-02-12", + "Comments": [], + "Prefix": [], + "PreferredValue": "nyc", + "Tag": "", + "TagAny": "gti" + }, + { + "Type": 1, + "SubTag": "gtu", + "Description": [ + "Aghu-Tharnggala" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gtu" + }, + { + "Type": 1, + "SubTag": "gua", + "Description": [ + "Shiki" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gua" + }, + { + "Type": 1, + "SubTag": "gub", + "Description": [ + "Guajaj\u00E1ra" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gub" + }, + { + "Type": 1, + "SubTag": "guc", + "Description": [ + "Wayuu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "guc" + }, + { + "Type": 1, + "SubTag": "gud", + "Description": [ + "Yocobou\u00E9 Dida" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gud" + }, + { + "Type": 1, + "SubTag": "gue", + "Description": [ + "Gurindji" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gue" + }, + { + "Type": 1, + "SubTag": "guf", + "Description": [ + "Gupapuyngu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "guf" + }, + { + "Type": 1, + "SubTag": "gug", + "Description": [ + "Paraguayan Guaran\u00ED" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "gn", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gug" + }, + { + "Type": 1, + "SubTag": "guh", + "Description": [ + "Guahibo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "guh" + }, + { + "Type": 1, + "SubTag": "gui", + "Description": [ + "Eastern Bolivian Guaran\u00ED" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "gn", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gui" + }, + { + "Type": 1, + "SubTag": "guk", + "Description": [ + "Gumuz" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "guk" + }, + { + "Type": 1, + "SubTag": "gul", + "Description": [ + "Sea Island Creole English" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gul" + }, + { + "Type": 1, + "SubTag": "gum", + "Description": [ + "Guambiano" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gum" + }, + { + "Type": 1, + "SubTag": "gun", + "Description": [ + "Mby\u00E1 Guaran\u00ED" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "gn", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gun" + }, + { + "Type": 1, + "SubTag": "guo", + "Description": [ + "Guayabero" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "guo" + }, + { + "Type": 1, + "SubTag": "gup", + "Description": [ + "Gunwinggu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gup" + }, + { + "Type": 1, + "SubTag": "guq", + "Description": [ + "Ach\u00E9" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "guq" + }, + { + "Type": 1, + "SubTag": "gur", + "Description": [ + "Farefare" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gur" + }, + { + "Type": 1, + "SubTag": "gus", + "Description": [ + "Guinean Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gus" + }, + { + "Type": 1, + "SubTag": "gut", + "Description": [ + "Mal\u00E9ku Ja\u00EDka" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gut" + }, + { + "Type": 1, + "SubTag": "guu", + "Description": [ + "Yanomam\u00F6" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "guu" + }, + { + "Type": 1, + "SubTag": "guv", + "Description": [ + "Gey" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2016-05-30", + "Comments": [], + "Prefix": [], + "PreferredValue": "duz", + "Tag": "", + "TagAny": "guv" + }, + { + "Type": 1, + "SubTag": "guw", + "Description": [ + "Gun" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "guw" + }, + { + "Type": 1, + "SubTag": "gux", + "Description": [ + "Gourmanch\u00E9ma" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gux" + }, + { + "Type": 1, + "SubTag": "guz", + "Description": [ + "Gusii", + "Ekegusii" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "guz" + }, + { + "Type": 1, + "SubTag": "gva", + "Description": [ + "Guana (Paraguay)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gva" + }, + { + "Type": 1, + "SubTag": "gvc", + "Description": [ + "Guanano" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gvc" + }, + { + "Type": 1, + "SubTag": "gve", + "Description": [ + "Duwet" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gve" + }, + { + "Type": 1, + "SubTag": "gvf", + "Description": [ + "Golin" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gvf" + }, + { + "Type": 1, + "SubTag": "gvj", + "Description": [ + "Guaj\u00E1" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gvj" + }, + { + "Type": 1, + "SubTag": "gvl", + "Description": [ + "Gulay" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gvl" + }, + { + "Type": 1, + "SubTag": "gvm", + "Description": [ + "Gurmana" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gvm" + }, + { + "Type": 1, + "SubTag": "gvn", + "Description": [ + "Kuku-Yalanji" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gvn" + }, + { + "Type": 1, + "SubTag": "gvo", + "Description": [ + "Gavi\u00E3o Do Jiparan\u00E1" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gvo" + }, + { + "Type": 1, + "SubTag": "gvp", + "Description": [ + "Par\u00E1 Gavi\u00E3o" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gvp" + }, + { + "Type": 1, + "SubTag": "gvr", + "Description": [ + "Gurung" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gvr" + }, + { + "Type": 1, + "SubTag": "gvs", + "Description": [ + "Gumawana" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gvs" + }, + { + "Type": 1, + "SubTag": "gvy", + "Description": [ + "Guyani" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gvy" + }, + { + "Type": 1, + "SubTag": "gwa", + "Description": [ + "Mbato" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gwa" + }, + { + "Type": 1, + "SubTag": "gwb", + "Description": [ + "Gwa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gwb" + }, + { + "Type": 1, + "SubTag": "gwc", + "Description": [ + "Gawri", + "Kalami" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gwc" + }, + { + "Type": 1, + "SubTag": "gwd", + "Description": [ + "Gawwada" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gwd" + }, + { + "Type": 1, + "SubTag": "gwe", + "Description": [ + "Gweno" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gwe" + }, + { + "Type": 1, + "SubTag": "gwf", + "Description": [ + "Gowro" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gwf" + }, + { + "Type": 1, + "SubTag": "gwg", + "Description": [ + "Moo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gwg" + }, + { + "Type": 1, + "SubTag": "gwi", + "Description": [ + "Gwich\u02BCin" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gwi" + }, + { + "Type": 1, + "SubTag": "gwj", + "Description": [ + "\u01C0Gwi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gwj" + }, + { + "Type": 1, + "SubTag": "gwm", + "Description": [ + "Awngthim" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gwm" + }, + { + "Type": 1, + "SubTag": "gwn", + "Description": [ + "Gwandara" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gwn" + }, + { + "Type": 1, + "SubTag": "gwr", + "Description": [ + "Gwere" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gwr" + }, + { + "Type": 1, + "SubTag": "gwt", + "Description": [ + "Gawar-Bati" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gwt" + }, + { + "Type": 1, + "SubTag": "gwu", + "Description": [ + "Guwamu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gwu" + }, + { + "Type": 1, + "SubTag": "gww", + "Description": [ + "Kwini" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gww" + }, + { + "Type": 1, + "SubTag": "gwx", + "Description": [ + "Gua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gwx" + }, + { + "Type": 1, + "SubTag": "gxx", + "Description": [ + "W\u00E8 Southern" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gxx" + }, + { + "Type": 1, + "SubTag": "gya", + "Description": [ + "Northwest Gbaya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "gba", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gya" + }, + { + "Type": 1, + "SubTag": "gyb", + "Description": [ + "Garus" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gyb" + }, + { + "Type": 1, + "SubTag": "gyd", + "Description": [ + "Kayardild" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gyd" + }, + { + "Type": 1, + "SubTag": "gye", + "Description": [ + "Gyem" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gye" + }, + { + "Type": 1, + "SubTag": "gyf", + "Description": [ + "Gungabula" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gyf" + }, + { + "Type": 1, + "SubTag": "gyg", + "Description": [ + "Gbayi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gyg" + }, + { + "Type": 1, + "SubTag": "gyi", + "Description": [ + "Gyele" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gyi" + }, + { + "Type": 1, + "SubTag": "gyl", + "Description": [ + "Gayil" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gyl" + }, + { + "Type": 1, + "SubTag": "gym", + "Description": [ + "Ng\u00E4bere" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gym" + }, + { + "Type": 1, + "SubTag": "gyn", + "Description": [ + "Guyanese Creole English" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gyn" + }, + { + "Type": 1, + "SubTag": "gyo", + "Description": [ + "Gyalsumdo" + ], + "Added": "2018-03-08", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gyo" + }, + { + "Type": 1, + "SubTag": "gyr", + "Description": [ + "Guarayu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gyr" + }, + { + "Type": 1, + "SubTag": "gyy", + "Description": [ + "Gunya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gyy" + }, + { + "Type": 1, + "SubTag": "gyz", + "Description": [ + "Geji", + "Gyaazi" + ], + "Added": "2021-02-20", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gyz" + }, + { + "Type": 1, + "SubTag": "gza", + "Description": [ + "Ganza" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gza" + }, + { + "Type": 1, + "SubTag": "gzi", + "Description": [ + "Gazi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gzi" + }, + { + "Type": 1, + "SubTag": "gzn", + "Description": [ + "Gane" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "gzn" + }, + { + "Type": 1, + "SubTag": "haa", + "Description": [ + "Han" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "haa" + }, + { + "Type": 1, + "SubTag": "hab", + "Description": [ + "Hanoi Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hab" + }, + { + "Type": 1, + "SubTag": "hac", + "Description": [ + "Gurani" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hac" + }, + { + "Type": 1, + "SubTag": "had", + "Description": [ + "Hatam" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "had" + }, + { + "Type": 1, + "SubTag": "hae", + "Description": [ + "Eastern Oromo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "om", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hae" + }, + { + "Type": 1, + "SubTag": "haf", + "Description": [ + "Haiphong Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "haf" + }, + { + "Type": 1, + "SubTag": "hag", + "Description": [ + "Hanga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hag" + }, + { + "Type": 1, + "SubTag": "hah", + "Description": [ + "Hahon" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hah" + }, + { + "Type": 1, + "SubTag": "hai", + "Description": [ + "Haida" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "macrolanguage", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hai" + }, + { + "Type": 1, + "SubTag": "haj", + "Description": [ + "Hajong" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "haj" + }, + { + "Type": 1, + "SubTag": "hak", + "Description": [ + "Hakka Chinese" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zh", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hak" + }, + { + "Type": 1, + "SubTag": "hal", + "Description": [ + "Halang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hal" + }, + { + "Type": 1, + "SubTag": "ham", + "Description": [ + "Hewa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ham" + }, + { + "Type": 1, + "SubTag": "han", + "Description": [ + "Hangaza" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "han" + }, + { + "Type": 1, + "SubTag": "hao", + "Description": [ + "Hak\u00F6" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hao" + }, + { + "Type": 1, + "SubTag": "hap", + "Description": [ + "Hupla" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hap" + }, + { + "Type": 1, + "SubTag": "haq", + "Description": [ + "Ha" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "haq" + }, + { + "Type": 1, + "SubTag": "har", + "Description": [ + "Harari" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "har" + }, + { + "Type": 1, + "SubTag": "has", + "Description": [ + "Haisla" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "has" + }, + { + "Type": 1, + "SubTag": "hav", + "Description": [ + "Havu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hav" + }, + { + "Type": 1, + "SubTag": "haw", + "Description": [ + "Hawaiian" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "haw" + }, + { + "Type": 1, + "SubTag": "hax", + "Description": [ + "Southern Haida" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "hai", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hax" + }, + { + "Type": 1, + "SubTag": "hay", + "Description": [ + "Haya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hay" + }, + { + "Type": 1, + "SubTag": "haz", + "Description": [ + "Hazaragi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "haz" + }, + { + "Type": 1, + "SubTag": "hba", + "Description": [ + "Hamba" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hba" + }, + { + "Type": 1, + "SubTag": "hbb", + "Description": [ + "Huba" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hbb" + }, + { + "Type": 1, + "SubTag": "hbn", + "Description": [ + "Heiban" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hbn" + }, + { + "Type": 1, + "SubTag": "hbo", + "Description": [ + "Ancient Hebrew" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hbo" + }, + { + "Type": 1, + "SubTag": "hbu", + "Description": [ + "Habu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hbu" + }, + { + "Type": 1, + "SubTag": "hca", + "Description": [ + "Andaman Creole Hindi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hca" + }, + { + "Type": 1, + "SubTag": "hch", + "Description": [ + "Huichol" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hch" + }, + { + "Type": 1, + "SubTag": "hdn", + "Description": [ + "Northern Haida" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "hai", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hdn" + }, + { + "Type": 1, + "SubTag": "hds", + "Description": [ + "Honduras Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hds" + }, + { + "Type": 1, + "SubTag": "hdy", + "Description": [ + "Hadiyya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hdy" + }, + { + "Type": 1, + "SubTag": "hea", + "Description": [ + "Northern Qiandong Miao" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "hmn", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hea" + }, + { + "Type": 1, + "SubTag": "hed", + "Description": [ + "Herd\u00E9" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hed" + }, + { + "Type": 1, + "SubTag": "heg", + "Description": [ + "Helong" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "heg" + }, + { + "Type": 1, + "SubTag": "heh", + "Description": [ + "Hehe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "heh" + }, + { + "Type": 1, + "SubTag": "hei", + "Description": [ + "Heiltsuk" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hei" + }, + { + "Type": 1, + "SubTag": "hem", + "Description": [ + "Hemba" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hem" + }, + { + "Type": 1, + "SubTag": "hgm", + "Description": [ + "Hai\u01C1om" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hgm" + }, + { + "Type": 1, + "SubTag": "hgw", + "Description": [ + "Haigwai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hgw" + }, + { + "Type": 1, + "SubTag": "hhi", + "Description": [ + "Hoia Hoia" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hhi" + }, + { + "Type": 1, + "SubTag": "hhr", + "Description": [ + "Kerak" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hhr" + }, + { + "Type": 1, + "SubTag": "hhy", + "Description": [ + "Hoyahoya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hhy" + }, + { + "Type": 1, + "SubTag": "hia", + "Description": [ + "Lamang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hia" + }, + { + "Type": 1, + "SubTag": "hib", + "Description": [ + "Hibito" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hib" + }, + { + "Type": 1, + "SubTag": "hid", + "Description": [ + "Hidatsa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hid" + }, + { + "Type": 1, + "SubTag": "hif", + "Description": [ + "Fiji Hindi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hif" + }, + { + "Type": 1, + "SubTag": "hig", + "Description": [ + "Kamwe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hig" + }, + { + "Type": 1, + "SubTag": "hih", + "Description": [ + "Pamosu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hih" + }, + { + "Type": 1, + "SubTag": "hii", + "Description": [ + "Hinduri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hii" + }, + { + "Type": 1, + "SubTag": "hij", + "Description": [ + "Hijuk" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hij" + }, + { + "Type": 1, + "SubTag": "hik", + "Description": [ + "Seit-Kaitetu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hik" + }, + { + "Type": 1, + "SubTag": "hil", + "Description": [ + "Hiligaynon" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hil" + }, + { + "Type": 1, + "SubTag": "him", + "Description": [ + "Himachali languages", + "Western Pahari languages" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "him" + }, + { + "Type": 1, + "SubTag": "hio", + "Description": [ + "Tsoa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hio" + }, + { + "Type": 1, + "SubTag": "hir", + "Description": [ + "Himarim\u00E3" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hir" + }, + { + "Type": 1, + "SubTag": "hit", + "Description": [ + "Hittite" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hit" + }, + { + "Type": 1, + "SubTag": "hiw", + "Description": [ + "Hiw" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hiw" + }, + { + "Type": 1, + "SubTag": "hix", + "Description": [ + "Hixkary\u00E1na" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hix" + }, + { + "Type": 1, + "SubTag": "hji", + "Description": [ + "Haji" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ms", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hji" + }, + { + "Type": 1, + "SubTag": "hka", + "Description": [ + "Kahe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hka" + }, + { + "Type": 1, + "SubTag": "hke", + "Description": [ + "Hunde" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hke" + }, + { + "Type": 1, + "SubTag": "hkh", + "Description": [ + "Khah", + "Poguli" + ], + "Added": "2021-02-20", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hkh" + }, + { + "Type": 1, + "SubTag": "hkk", + "Description": [ + "Hunjara-Kaina Ke" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hkk" + }, + { + "Type": 1, + "SubTag": "hkn", + "Description": [ + "Mel-Khaonh" + ], + "Added": "2018-03-08", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hkn" + }, + { + "Type": 1, + "SubTag": "hks", + "Description": [ + "Hong Kong Sign Language", + "Heung Kong Sau Yue" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hks" + }, + { + "Type": 1, + "SubTag": "hla", + "Description": [ + "Halia" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hla" + }, + { + "Type": 1, + "SubTag": "hlb", + "Description": [ + "Halbi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hlb" + }, + { + "Type": 1, + "SubTag": "hld", + "Description": [ + "Halang Doan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hld" + }, + { + "Type": 1, + "SubTag": "hle", + "Description": [ + "Hlersu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hle" + }, + { + "Type": 1, + "SubTag": "hlt", + "Description": [ + "Matu Chin" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hlt" + }, + { + "Type": 1, + "SubTag": "hlu", + "Description": [ + "Hieroglyphic Luwian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hlu" + }, + { + "Type": 1, + "SubTag": "hma", + "Description": [ + "Southern Mashan Hmong", + "Southern Mashan Miao" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "hmn", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hma" + }, + { + "Type": 1, + "SubTag": "hmb", + "Description": [ + "Humburi Senni Songhay" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hmb" + }, + { + "Type": 1, + "SubTag": "hmc", + "Description": [ + "Central Huishui Hmong", + "Central Huishui Miao" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "hmn", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hmc" + }, + { + "Type": 1, + "SubTag": "hmd", + "Description": [ + "Large Flowery Miao", + "A-hmaos", + "Da-Hua Miao" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "hmn", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hmd" + }, + { + "Type": 1, + "SubTag": "hme", + "Description": [ + "Eastern Huishui Hmong", + "Eastern Huishui Miao" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "hmn", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hme" + }, + { + "Type": 1, + "SubTag": "hmf", + "Description": [ + "Hmong Don" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hmf" + }, + { + "Type": 1, + "SubTag": "hmg", + "Description": [ + "Southwestern Guiyang Hmong" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "hmn", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hmg" + }, + { + "Type": 1, + "SubTag": "hmh", + "Description": [ + "Southwestern Huishui Hmong", + "Southwestern Huishui Miao" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "hmn", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hmh" + }, + { + "Type": 1, + "SubTag": "hmi", + "Description": [ + "Northern Huishui Hmong", + "Northern Huishui Miao" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "hmn", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hmi" + }, + { + "Type": 1, + "SubTag": "hmj", + "Description": [ + "Ge", + "Gejia" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "hmn", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hmj" + }, + { + "Type": 1, + "SubTag": "hmk", + "Description": [ + "Maek" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hmk" + }, + { + "Type": 1, + "SubTag": "hml", + "Description": [ + "Luopohe Hmong", + "Luopohe Miao" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "hmn", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hml" + }, + { + "Type": 1, + "SubTag": "hmm", + "Description": [ + "Central Mashan Hmong", + "Central Mashan Miao" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "hmn", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hmm" + }, + { + "Type": 1, + "SubTag": "hmn", + "Description": [ + "Hmong", + "Mong" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "macrolanguage", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hmn" + }, + { + "Type": 1, + "SubTag": "hmp", + "Description": [ + "Northern Mashan Hmong", + "Northern Mashan Miao" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "hmn", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hmp" + }, + { + "Type": 1, + "SubTag": "hmq", + "Description": [ + "Eastern Qiandong Miao" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "hmn", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hmq" + }, + { + "Type": 1, + "SubTag": "hmr", + "Description": [ + "Hmar" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hmr" + }, + { + "Type": 1, + "SubTag": "hms", + "Description": [ + "Southern Qiandong Miao" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "hmn", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hms" + }, + { + "Type": 1, + "SubTag": "hmt", + "Description": [ + "Hamtai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hmt" + }, + { + "Type": 1, + "SubTag": "hmu", + "Description": [ + "Hamap" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hmu" + }, + { + "Type": 1, + "SubTag": "hmv", + "Description": [ + "Hmong D\u00F4" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hmv" + }, + { + "Type": 1, + "SubTag": "hmw", + "Description": [ + "Western Mashan Hmong", + "Western Mashan Miao" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "hmn", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hmw" + }, + { + "Type": 1, + "SubTag": "hmx", + "Description": [ + "Hmong-Mien languages" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hmx" + }, + { + "Type": 1, + "SubTag": "hmy", + "Description": [ + "Southern Guiyang Hmong", + "Southern Guiyang Miao" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "hmn", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hmy" + }, + { + "Type": 1, + "SubTag": "hmz", + "Description": [ + "Hmong Shua", + "Sinicized Miao" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "hmn", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hmz" + }, + { + "Type": 1, + "SubTag": "hna", + "Description": [ + "Mina (Cameroon)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hna" + }, + { + "Type": 1, + "SubTag": "hnd", + "Description": [ + "Southern Hindko" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "lah", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hnd" + }, + { + "Type": 1, + "SubTag": "hne", + "Description": [ + "Chhattisgarhi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hne" + }, + { + "Type": 1, + "SubTag": "hng", + "Description": [ + "Hungu" + ], + "Added": "2020-03-28", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hng" + }, + { + "Type": 1, + "SubTag": "hnh", + "Description": [ + "\u01C1Ani" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hnh" + }, + { + "Type": 1, + "SubTag": "hni", + "Description": [ + "Hani" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hni" + }, + { + "Type": 1, + "SubTag": "hnj", + "Description": [ + "Hmong Njua", + "Mong Leng", + "Mong Njua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "hmn", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hnj" + }, + { + "Type": 1, + "SubTag": "hnm", + "Description": [ + "Hainanese" + ], + "Added": "2024-12-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zh", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hnm" + }, + { + "Type": 1, + "SubTag": "hnn", + "Description": [ + "Hanunoo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hnn" + }, + { + "Type": 1, + "SubTag": "hno", + "Description": [ + "Northern Hindko" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "lah", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hno" + }, + { + "Type": 1, + "SubTag": "hns", + "Description": [ + "Caribbean Hindustani" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hns" + }, + { + "Type": 1, + "SubTag": "hnu", + "Description": [ + "Hung" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hnu" + }, + { + "Type": 1, + "SubTag": "hoa", + "Description": [ + "Hoava" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hoa" + }, + { + "Type": 1, + "SubTag": "hob", + "Description": [ + "Mari (Madang Province)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hob" + }, + { + "Type": 1, + "SubTag": "hoc", + "Description": [ + "Ho" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hoc" + }, + { + "Type": 1, + "SubTag": "hod", + "Description": [ + "Holma" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hod" + }, + { + "Type": 1, + "SubTag": "hoe", + "Description": [ + "Horom" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hoe" + }, + { + "Type": 1, + "SubTag": "hoh", + "Description": [ + "Hoby\u00F3t" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hoh" + }, + { + "Type": 1, + "SubTag": "hoi", + "Description": [ + "Holikachuk" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hoi" + }, + { + "Type": 1, + "SubTag": "hoj", + "Description": [ + "Hadothi", + "Haroti" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "raj", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hoj" + }, + { + "Type": 1, + "SubTag": "hok", + "Description": [ + "Hokan languages" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hok" + }, + { + "Type": 1, + "SubTag": "hol", + "Description": [ + "Holu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hol" + }, + { + "Type": 1, + "SubTag": "hom", + "Description": [ + "Homa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hom" + }, + { + "Type": 1, + "SubTag": "hoo", + "Description": [ + "Holoholo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hoo" + }, + { + "Type": 1, + "SubTag": "hop", + "Description": [ + "Hopi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hop" + }, + { + "Type": 1, + "SubTag": "hor", + "Description": [ + "Horo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hor" + }, + { + "Type": 1, + "SubTag": "hos", + "Description": [ + "Ho Chi Minh City Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hos" + }, + { + "Type": 1, + "SubTag": "hot", + "Description": [ + "Hote", + "Mal\u00EA" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hot" + }, + { + "Type": 1, + "SubTag": "hov", + "Description": [ + "Hovongan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hov" + }, + { + "Type": 1, + "SubTag": "how", + "Description": [ + "Honi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "how" + }, + { + "Type": 1, + "SubTag": "hoy", + "Description": [ + "Holiya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hoy" + }, + { + "Type": 1, + "SubTag": "hoz", + "Description": [ + "Hozo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hoz" + }, + { + "Type": 1, + "SubTag": "hpo", + "Description": [ + "Hpon" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hpo" + }, + { + "Type": 1, + "SubTag": "hps", + "Description": [ + "Hawai\u0027i Sign Language (HSL)", + "Hawai\u0027i Pidgin Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hps" + }, + { + "Type": 1, + "SubTag": "hra", + "Description": [ + "Hrangkhol" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hra" + }, + { + "Type": 1, + "SubTag": "hrc", + "Description": [ + "Niwer Mil" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hrc" + }, + { + "Type": 1, + "SubTag": "hre", + "Description": [ + "Hre" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hre" + }, + { + "Type": 1, + "SubTag": "hrk", + "Description": [ + "Haruku" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hrk" + }, + { + "Type": 1, + "SubTag": "hrm", + "Description": [ + "Horned Miao" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "hmn", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hrm" + }, + { + "Type": 1, + "SubTag": "hro", + "Description": [ + "Haroi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hro" + }, + { + "Type": 1, + "SubTag": "hrp", + "Description": [ + "Nhirrpi" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hrp" + }, + { + "Type": 1, + "SubTag": "hrr", + "Description": [ + "Horuru" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2012-08-12", + "Comments": [], + "Prefix": [], + "PreferredValue": "jal", + "Tag": "", + "TagAny": "hrr" + }, + { + "Type": 1, + "SubTag": "hrt", + "Description": [ + "H\u00E9rtevin" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hrt" + }, + { + "Type": 1, + "SubTag": "hru", + "Description": [ + "Hruso" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hru" + }, + { + "Type": 1, + "SubTag": "hrw", + "Description": [ + "Warwar Feni" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hrw" + }, + { + "Type": 1, + "SubTag": "hrx", + "Description": [ + "Hunsrik" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hrx" + }, + { + "Type": 1, + "SubTag": "hrz", + "Description": [ + "Harzani" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hrz" + }, + { + "Type": 1, + "SubTag": "hsb", + "Description": [ + "Upper Sorbian" + ], + "Added": "2005-10-16", + "SuppressScript": "Latn", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hsb" + }, + { + "Type": 1, + "SubTag": "hsh", + "Description": [ + "Hungarian Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hsh" + }, + { + "Type": 1, + "SubTag": "hsl", + "Description": [ + "Hausa Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hsl" + }, + { + "Type": 1, + "SubTag": "hsn", + "Description": [ + "Xiang Chinese" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zh", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hsn" + }, + { + "Type": 1, + "SubTag": "hss", + "Description": [ + "Harsusi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hss" + }, + { + "Type": 1, + "SubTag": "hti", + "Description": [ + "Hoti" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hti" + }, + { + "Type": 1, + "SubTag": "hto", + "Description": [ + "Minica Huitoto" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hto" + }, + { + "Type": 1, + "SubTag": "hts", + "Description": [ + "Hadza" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hts" + }, + { + "Type": 1, + "SubTag": "htu", + "Description": [ + "Hitu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "htu" + }, + { + "Type": 1, + "SubTag": "htx", + "Description": [ + "Middle Hittite" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "htx" + }, + { + "Type": 1, + "SubTag": "hub", + "Description": [ + "Huambisa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hub" + }, + { + "Type": 1, + "SubTag": "huc", + "Description": [ + "\u01C2Hua", + "\u01C2\u02BCAmkhoe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "huc" + }, + { + "Type": 1, + "SubTag": "hud", + "Description": [ + "Huaulu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hud" + }, + { + "Type": 1, + "SubTag": "hue", + "Description": [ + "San Francisco Del Mar Huave" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hue" + }, + { + "Type": 1, + "SubTag": "huf", + "Description": [ + "Humene" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "huf" + }, + { + "Type": 1, + "SubTag": "hug", + "Description": [ + "Huachipaeri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hug" + }, + { + "Type": 1, + "SubTag": "huh", + "Description": [ + "Huilliche" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "huh" + }, + { + "Type": 1, + "SubTag": "hui", + "Description": [ + "Huli" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hui" + }, + { + "Type": 1, + "SubTag": "huj", + "Description": [ + "Northern Guiyang Hmong", + "Northern Guiyang Miao" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "hmn", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "huj" + }, + { + "Type": 1, + "SubTag": "huk", + "Description": [ + "Hulung" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "huk" + }, + { + "Type": 1, + "SubTag": "hul", + "Description": [ + "Hula" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hul" + }, + { + "Type": 1, + "SubTag": "hum", + "Description": [ + "Hungana" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hum" + }, + { + "Type": 1, + "SubTag": "huo", + "Description": [ + "Hu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "huo" + }, + { + "Type": 1, + "SubTag": "hup", + "Description": [ + "Hupa" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hup" + }, + { + "Type": 1, + "SubTag": "huq", + "Description": [ + "Tsat" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "huq" + }, + { + "Type": 1, + "SubTag": "hur", + "Description": [ + "Halkomelem" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hur" + }, + { + "Type": 1, + "SubTag": "hus", + "Description": [ + "Huastec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hus" + }, + { + "Type": 1, + "SubTag": "hut", + "Description": [ + "Humla" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hut" + }, + { + "Type": 1, + "SubTag": "huu", + "Description": [ + "Murui Huitoto" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "huu" + }, + { + "Type": 1, + "SubTag": "huv", + "Description": [ + "San Mateo Del Mar Huave" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "huv" + }, + { + "Type": 1, + "SubTag": "huw", + "Description": [ + "Hukumina" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "huw" + }, + { + "Type": 1, + "SubTag": "hux", + "Description": [ + "N\u00FCpode Huitoto" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hux" + }, + { + "Type": 1, + "SubTag": "huy", + "Description": [ + "Hulaul\u00E1" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "huy" + }, + { + "Type": 1, + "SubTag": "huz", + "Description": [ + "Hunzib" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "huz" + }, + { + "Type": 1, + "SubTag": "hvc", + "Description": [ + "Haitian Vodoun Culture Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hvc" + }, + { + "Type": 1, + "SubTag": "hve", + "Description": [ + "San Dionisio Del Mar Huave" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hve" + }, + { + "Type": 1, + "SubTag": "hvk", + "Description": [ + "Haveke" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hvk" + }, + { + "Type": 1, + "SubTag": "hvn", + "Description": [ + "Sabu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hvn" + }, + { + "Type": 1, + "SubTag": "hvv", + "Description": [ + "Santa Mar\u00EDa Del Mar Huave" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hvv" + }, + { + "Type": 1, + "SubTag": "hwa", + "Description": [ + "Wan\u00E9" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hwa" + }, + { + "Type": 1, + "SubTag": "hwc", + "Description": [ + "Hawai\u0027i Creole English", + "Hawai\u0027i Pidgin" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hwc" + }, + { + "Type": 1, + "SubTag": "hwo", + "Description": [ + "Hwana" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hwo" + }, + { + "Type": 1, + "SubTag": "hya", + "Description": [ + "Hya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hya" + }, + { + "Type": 1, + "SubTag": "hyw", + "Description": [ + "Western Armenian" + ], + "Added": "2018-03-08", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [ + "see also hy" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hyw" + }, + { + "Type": 1, + "SubTag": "hyx", + "Description": [ + "Armenian (family)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "hyx" + }, + { + "Type": 1, + "SubTag": "iai", + "Description": [ + "Iaai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "iai" + }, + { + "Type": 1, + "SubTag": "ian", + "Description": [ + "Iatmul" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ian" + }, + { + "Type": 1, + "SubTag": "iap", + "Description": [ + "Iapama" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2016-05-30", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "iap" + }, + { + "Type": 1, + "SubTag": "iar", + "Description": [ + "Purari" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "iar" + }, + { + "Type": 1, + "SubTag": "iba", + "Description": [ + "Iban" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "iba" + }, + { + "Type": 1, + "SubTag": "ibb", + "Description": [ + "Ibibio" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ibb" + }, + { + "Type": 1, + "SubTag": "ibd", + "Description": [ + "Iwaidja" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ibd" + }, + { + "Type": 1, + "SubTag": "ibe", + "Description": [ + "Akpes" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ibe" + }, + { + "Type": 1, + "SubTag": "ibg", + "Description": [ + "Ibanag" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ibg" + }, + { + "Type": 1, + "SubTag": "ibh", + "Description": [ + "Bih" + ], + "Added": "2017-02-23", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ibh" + }, + { + "Type": 1, + "SubTag": "ibi", + "Description": [ + "Ibilo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2012-08-12", + "Comments": [], + "Prefix": [], + "PreferredValue": "opa", + "Tag": "", + "TagAny": "ibi" + }, + { + "Type": 1, + "SubTag": "ibl", + "Description": [ + "Ibaloi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ibl" + }, + { + "Type": 1, + "SubTag": "ibm", + "Description": [ + "Agoi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ibm" + }, + { + "Type": 1, + "SubTag": "ibn", + "Description": [ + "Ibino" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ibn" + }, + { + "Type": 1, + "SubTag": "ibr", + "Description": [ + "Ibuoro" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ibr" + }, + { + "Type": 1, + "SubTag": "ibu", + "Description": [ + "Ibu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ibu" + }, + { + "Type": 1, + "SubTag": "iby", + "Description": [ + "Ibani" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "iby" + }, + { + "Type": 1, + "SubTag": "ica", + "Description": [ + "Ede Ica" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ica" + }, + { + "Type": 1, + "SubTag": "ich", + "Description": [ + "Etkywan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ich" + }, + { + "Type": 1, + "SubTag": "icl", + "Description": [ + "Icelandic Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "icl" + }, + { + "Type": 1, + "SubTag": "icr", + "Description": [ + "Islander Creole English" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "icr" + }, + { + "Type": 1, + "SubTag": "ida", + "Description": [ + "Idakho-Isukha-Tiriki", + "Luidakho-Luisukha-Lutirichi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "luy", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ida" + }, + { + "Type": 1, + "SubTag": "idb", + "Description": [ + "Indo-Portuguese" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "idb" + }, + { + "Type": 1, + "SubTag": "idc", + "Description": [ + "Idon", + "Ajiya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "idc" + }, + { + "Type": 1, + "SubTag": "idd", + "Description": [ + "Ede Idaca" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "idd" + }, + { + "Type": 1, + "SubTag": "ide", + "Description": [ + "Idere" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ide" + }, + { + "Type": 1, + "SubTag": "idi", + "Description": [ + "Idi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "idi" + }, + { + "Type": 1, + "SubTag": "idr", + "Description": [ + "Indri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "idr" + }, + { + "Type": 1, + "SubTag": "ids", + "Description": [ + "Idesa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ids" + }, + { + "Type": 1, + "SubTag": "idt", + "Description": [ + "Idat\u00E9" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "idt" + }, + { + "Type": 1, + "SubTag": "idu", + "Description": [ + "Idoma" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "idu" + }, + { + "Type": 1, + "SubTag": "ifa", + "Description": [ + "Amganad Ifugao" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ifa" + }, + { + "Type": 1, + "SubTag": "ifb", + "Description": [ + "Batad Ifugao", + "Ayangan Ifugao" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ifb" + }, + { + "Type": 1, + "SubTag": "ife", + "Description": [ + "If\u00E8" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ife" + }, + { + "Type": 1, + "SubTag": "iff", + "Description": [ + "Ifo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "iff" + }, + { + "Type": 1, + "SubTag": "ifk", + "Description": [ + "Tuwali Ifugao" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ifk" + }, + { + "Type": 1, + "SubTag": "ifm", + "Description": [ + "Teke-Fuumu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ifm" + }, + { + "Type": 1, + "SubTag": "ifu", + "Description": [ + "Mayoyao Ifugao" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ifu" + }, + { + "Type": 1, + "SubTag": "ify", + "Description": [ + "Keley-I Kallahan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ify" + }, + { + "Type": 1, + "SubTag": "igb", + "Description": [ + "Ebira" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "igb" + }, + { + "Type": 1, + "SubTag": "ige", + "Description": [ + "Igede" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ige" + }, + { + "Type": 1, + "SubTag": "igg", + "Description": [ + "Igana" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "igg" + }, + { + "Type": 1, + "SubTag": "igl", + "Description": [ + "Igala" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "igl" + }, + { + "Type": 1, + "SubTag": "igm", + "Description": [ + "Kanggape" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "igm" + }, + { + "Type": 1, + "SubTag": "ign", + "Description": [ + "Ignaciano" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ign" + }, + { + "Type": 1, + "SubTag": "igo", + "Description": [ + "Isebe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "igo" + }, + { + "Type": 1, + "SubTag": "igs", + "Description": [ + "Interglossa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "igs" + }, + { + "Type": 1, + "SubTag": "igw", + "Description": [ + "Igwe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "igw" + }, + { + "Type": 1, + "SubTag": "ihb", + "Description": [ + "Iha Based Pidgin" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ihb" + }, + { + "Type": 1, + "SubTag": "ihi", + "Description": [ + "Ihievbe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ihi" + }, + { + "Type": 1, + "SubTag": "ihp", + "Description": [ + "Iha" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ihp" + }, + { + "Type": 1, + "SubTag": "ihw", + "Description": [ + "Bidhawal" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ihw" + }, + { + "Type": 1, + "SubTag": "iin", + "Description": [ + "Thiin" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "iin" + }, + { + "Type": 1, + "SubTag": "iir", + "Description": [ + "Indo-Iranian languages" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "iir" + }, + { + "Type": 1, + "SubTag": "ijc", + "Description": [ + "Izon" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ijc" + }, + { + "Type": 1, + "SubTag": "ije", + "Description": [ + "Biseni" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ije" + }, + { + "Type": 1, + "SubTag": "ijj", + "Description": [ + "Ede Ije" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ijj" + }, + { + "Type": 1, + "SubTag": "ijn", + "Description": [ + "Kalabari" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ijn" + }, + { + "Type": 1, + "SubTag": "ijo", + "Description": [ + "Ijo languages" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ijo" + }, + { + "Type": 1, + "SubTag": "ijs", + "Description": [ + "Southeast Ijo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ijs" + }, + { + "Type": 1, + "SubTag": "ike", + "Description": [ + "Eastern Canadian Inuktitut" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "iu", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ike" + }, + { + "Type": 1, + "SubTag": "ikh", + "Description": [ + "Ikhin-Arokho" + ], + "Added": "2023-03-17", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ikh" + }, + { + "Type": 1, + "SubTag": "iki", + "Description": [ + "Iko" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "iki" + }, + { + "Type": 1, + "SubTag": "ikk", + "Description": [ + "Ika" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ikk" + }, + { + "Type": 1, + "SubTag": "ikl", + "Description": [ + "Ikulu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ikl" + }, + { + "Type": 1, + "SubTag": "iko", + "Description": [ + "Olulumo-Ikom" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "iko" + }, + { + "Type": 1, + "SubTag": "ikp", + "Description": [ + "Ikpeshi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ikp" + }, + { + "Type": 1, + "SubTag": "ikr", + "Description": [ + "Ikaranggal" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ikr" + }, + { + "Type": 1, + "SubTag": "iks", + "Description": [ + "Inuit Sign Language" + ], + "Added": "2015-02-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "iks" + }, + { + "Type": 1, + "SubTag": "ikt", + "Description": [ + "Inuinnaqtun", + "Western Canadian Inuktitut" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "iu", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ikt" + }, + { + "Type": 1, + "SubTag": "ikv", + "Description": [ + "Iku-Gora-Ankwa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ikv" + }, + { + "Type": 1, + "SubTag": "ikw", + "Description": [ + "Ikwere" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ikw" + }, + { + "Type": 1, + "SubTag": "ikx", + "Description": [ + "Ik" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ikx" + }, + { + "Type": 1, + "SubTag": "ikz", + "Description": [ + "Ikizu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ikz" + }, + { + "Type": 1, + "SubTag": "ila", + "Description": [ + "Ile Ape" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ila" + }, + { + "Type": 1, + "SubTag": "ilb", + "Description": [ + "Ila" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ilb" + }, + { + "Type": 1, + "SubTag": "ilg", + "Description": [ + "Garig-Ilgar" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ilg" + }, + { + "Type": 1, + "SubTag": "ili", + "Description": [ + "Ili Turki" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ili" + }, + { + "Type": 1, + "SubTag": "ilk", + "Description": [ + "Ilongot" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ilk" + }, + { + "Type": 1, + "SubTag": "ill", + "Description": [ + "Iranun" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2016-05-30", + "Comments": [ + "see ilm, ilp" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ill" + }, + { + "Type": 1, + "SubTag": "ilm", + "Description": [ + "Iranun (Malaysia)" + ], + "Added": "2016-05-30", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ilm" + }, + { + "Type": 1, + "SubTag": "ilo", + "Description": [ + "Iloko" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ilo" + }, + { + "Type": 1, + "SubTag": "ilp", + "Description": [ + "Iranun (Philippines)" + ], + "Added": "2016-05-30", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ilp" + }, + { + "Type": 1, + "SubTag": "ils", + "Description": [ + "International Sign" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ils" + }, + { + "Type": 1, + "SubTag": "ilu", + "Description": [ + "Ili\u0027uun" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ilu" + }, + { + "Type": 1, + "SubTag": "ilv", + "Description": [ + "Ilue" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ilv" + }, + { + "Type": 1, + "SubTag": "ilw", + "Description": [ + "Talur" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2013-09-10", + "Comments": [], + "Prefix": [], + "PreferredValue": "gal", + "Tag": "", + "TagAny": "ilw" + }, + { + "Type": 1, + "SubTag": "ima", + "Description": [ + "Mala Malasar" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ima" + }, + { + "Type": 1, + "SubTag": "ime", + "Description": [ + "Imeraguen" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2015-02-12", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ime" + }, + { + "Type": 1, + "SubTag": "imi", + "Description": [ + "Anamgura" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "imi" + }, + { + "Type": 1, + "SubTag": "iml", + "Description": [ + "Miluk" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "iml" + }, + { + "Type": 1, + "SubTag": "imn", + "Description": [ + "Imonda" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "imn" + }, + { + "Type": 1, + "SubTag": "imo", + "Description": [ + "Imbongu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "imo" + }, + { + "Type": 1, + "SubTag": "imr", + "Description": [ + "Imroing" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "imr" + }, + { + "Type": 1, + "SubTag": "ims", + "Description": [ + "Marsian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ims" + }, + { + "Type": 1, + "SubTag": "imt", + "Description": [ + "Imotong" + ], + "Added": "2022-02-25", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "imt" + }, + { + "Type": 1, + "SubTag": "imy", + "Description": [ + "Milyan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "imy" + }, + { + "Type": 1, + "SubTag": "inb", + "Description": [ + "Inga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "inb" + }, + { + "Type": 1, + "SubTag": "inc", + "Description": [ + "Indic languages" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "inc" + }, + { + "Type": 1, + "SubTag": "ine", + "Description": [ + "Indo-European languages" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ine" + }, + { + "Type": 1, + "SubTag": "ing", + "Description": [ + "Degexit\u0027an" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ing" + }, + { + "Type": 1, + "SubTag": "inh", + "Description": [ + "Ingush" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "inh" + }, + { + "Type": 1, + "SubTag": "inj", + "Description": [ + "Jungle Inga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "inj" + }, + { + "Type": 1, + "SubTag": "inl", + "Description": [ + "Indonesian Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "inl" + }, + { + "Type": 1, + "SubTag": "inm", + "Description": [ + "Minaean" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "inm" + }, + { + "Type": 1, + "SubTag": "inn", + "Description": [ + "Isinai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "inn" + }, + { + "Type": 1, + "SubTag": "ino", + "Description": [ + "Inoke-Yate" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ino" + }, + { + "Type": 1, + "SubTag": "inp", + "Description": [ + "I\u00F1apari" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "inp" + }, + { + "Type": 1, + "SubTag": "ins", + "Description": [ + "Indian Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ins" + }, + { + "Type": 1, + "SubTag": "int", + "Description": [ + "Intha" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "int" + }, + { + "Type": 1, + "SubTag": "inz", + "Description": [ + "Inese\u00F1o" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "inz" + }, + { + "Type": 1, + "SubTag": "ior", + "Description": [ + "Inor" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ior" + }, + { + "Type": 1, + "SubTag": "iou", + "Description": [ + "Tuma-Irumu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "iou" + }, + { + "Type": 1, + "SubTag": "iow", + "Description": [ + "Iowa-Oto" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "iow" + }, + { + "Type": 1, + "SubTag": "ipi", + "Description": [ + "Ipili" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ipi" + }, + { + "Type": 1, + "SubTag": "ipo", + "Description": [ + "Ipiko" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ipo" + }, + { + "Type": 1, + "SubTag": "iqu", + "Description": [ + "Iquito" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "iqu" + }, + { + "Type": 1, + "SubTag": "iqw", + "Description": [ + "Ikwo" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "iqw" + }, + { + "Type": 1, + "SubTag": "ira", + "Description": [ + "Iranian languages" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ira" + }, + { + "Type": 1, + "SubTag": "ire", + "Description": [ + "Iresim" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ire" + }, + { + "Type": 1, + "SubTag": "irh", + "Description": [ + "Irarutu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "irh" + }, + { + "Type": 1, + "SubTag": "iri", + "Description": [ + "Rigwe", + "Irigwe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "iri" + }, + { + "Type": 1, + "SubTag": "irk", + "Description": [ + "Iraqw" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "irk" + }, + { + "Type": 1, + "SubTag": "irn", + "Description": [ + "Ir\u00E1ntxe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "irn" + }, + { + "Type": 1, + "SubTag": "iro", + "Description": [ + "Iroquoian languages" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "iro" + }, + { + "Type": 1, + "SubTag": "irr", + "Description": [ + "Ir" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "irr" + }, + { + "Type": 1, + "SubTag": "iru", + "Description": [ + "Irula" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "iru" + }, + { + "Type": 1, + "SubTag": "irx", + "Description": [ + "Kamberau" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "irx" + }, + { + "Type": 1, + "SubTag": "iry", + "Description": [ + "Iraya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "iry" + }, + { + "Type": 1, + "SubTag": "isa", + "Description": [ + "Isabi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "isa" + }, + { + "Type": 1, + "SubTag": "isc", + "Description": [ + "Isconahua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "isc" + }, + { + "Type": 1, + "SubTag": "isd", + "Description": [ + "Isnag" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "isd" + }, + { + "Type": 1, + "SubTag": "ise", + "Description": [ + "Italian Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ise" + }, + { + "Type": 1, + "SubTag": "isg", + "Description": [ + "Irish Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "isg" + }, + { + "Type": 1, + "SubTag": "ish", + "Description": [ + "Esan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ish" + }, + { + "Type": 1, + "SubTag": "isi", + "Description": [ + "Nkem-Nkum" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "isi" + }, + { + "Type": 1, + "SubTag": "isk", + "Description": [ + "Ishkashimi" + ], + "Added": "2010-03-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "isk" + }, + { + "Type": 1, + "SubTag": "ism", + "Description": [ + "Masimasi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ism" + }, + { + "Type": 1, + "SubTag": "isn", + "Description": [ + "Isanzu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "isn" + }, + { + "Type": 1, + "SubTag": "iso", + "Description": [ + "Isoko" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "iso" + }, + { + "Type": 1, + "SubTag": "isr", + "Description": [ + "Israeli Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "isr" + }, + { + "Type": 1, + "SubTag": "ist", + "Description": [ + "Istriot" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ist" + }, + { + "Type": 1, + "SubTag": "isu", + "Description": [ + "Isu (Menchum Division)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "isu" + }, + { + "Type": 1, + "SubTag": "isv", + "Description": [ + "Interslavic" + ], + "Added": "2024-05-15", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "isv" + }, + { + "Type": 1, + "SubTag": "itb", + "Description": [ + "Binongan Itneg" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "itb" + }, + { + "Type": 1, + "SubTag": "itc", + "Description": [ + "Italic languages" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "itc" + }, + { + "Type": 1, + "SubTag": "itd", + "Description": [ + "Southern Tidung" + ], + "Added": "2016-05-30", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "itd" + }, + { + "Type": 1, + "SubTag": "ite", + "Description": [ + "Itene" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ite" + }, + { + "Type": 1, + "SubTag": "iti", + "Description": [ + "Inlaod Itneg" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "iti" + }, + { + "Type": 1, + "SubTag": "itk", + "Description": [ + "Judeo-Italian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "itk" + }, + { + "Type": 1, + "SubTag": "itl", + "Description": [ + "Itelmen" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "itl" + }, + { + "Type": 1, + "SubTag": "itm", + "Description": [ + "Itu Mbon Uzo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "itm" + }, + { + "Type": 1, + "SubTag": "ito", + "Description": [ + "Itonama" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ito" + }, + { + "Type": 1, + "SubTag": "itr", + "Description": [ + "Iteri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "itr" + }, + { + "Type": 1, + "SubTag": "its", + "Description": [ + "Isekiri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "its" + }, + { + "Type": 1, + "SubTag": "itt", + "Description": [ + "Maeng Itneg" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "itt" + }, + { + "Type": 1, + "SubTag": "itv", + "Description": [ + "Itawit" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "itv" + }, + { + "Type": 1, + "SubTag": "itw", + "Description": [ + "Ito" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "itw" + }, + { + "Type": 1, + "SubTag": "itx", + "Description": [ + "Itik" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "itx" + }, + { + "Type": 1, + "SubTag": "ity", + "Description": [ + "Moyadan Itneg" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ity" + }, + { + "Type": 1, + "SubTag": "itz", + "Description": [ + "Itz\u00E1" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "itz" + }, + { + "Type": 1, + "SubTag": "ium", + "Description": [ + "Iu Mien" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ium" + }, + { + "Type": 1, + "SubTag": "ivb", + "Description": [ + "Ibatan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ivb" + }, + { + "Type": 1, + "SubTag": "ivv", + "Description": [ + "Ivatan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ivv" + }, + { + "Type": 1, + "SubTag": "iwk", + "Description": [ + "I-Wak" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "iwk" + }, + { + "Type": 1, + "SubTag": "iwm", + "Description": [ + "Iwam" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "iwm" + }, + { + "Type": 1, + "SubTag": "iwo", + "Description": [ + "Iwur" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "iwo" + }, + { + "Type": 1, + "SubTag": "iws", + "Description": [ + "Sepik Iwam" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "iws" + }, + { + "Type": 1, + "SubTag": "ixc", + "Description": [ + "Ixcatec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ixc" + }, + { + "Type": 1, + "SubTag": "ixl", + "Description": [ + "Ixil" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ixl" + }, + { + "Type": 1, + "SubTag": "iya", + "Description": [ + "Iyayu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "iya" + }, + { + "Type": 1, + "SubTag": "iyo", + "Description": [ + "Mesaka" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "iyo" + }, + { + "Type": 1, + "SubTag": "iyx", + "Description": [ + "Yaka (Congo)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "iyx" + }, + { + "Type": 1, + "SubTag": "izh", + "Description": [ + "Ingrian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "izh" + }, + { + "Type": 1, + "SubTag": "izi", + "Description": [ + "Izi-Ezaa-Ikwo-Mgbo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2013-09-10", + "Comments": [ + "see eza, gmz, iqw, izz" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "izi" + }, + { + "Type": 1, + "SubTag": "izm", + "Description": [ + "Kizamani" + ], + "Added": "2023-03-17", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "izm" + }, + { + "Type": 1, + "SubTag": "izr", + "Description": [ + "Izere" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "izr" + }, + { + "Type": 1, + "SubTag": "izz", + "Description": [ + "Izii" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "izz" + }, + { + "Type": 1, + "SubTag": "jaa", + "Description": [ + "Jamamad\u00ED" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jaa" + }, + { + "Type": 1, + "SubTag": "jab", + "Description": [ + "Hyam" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jab" + }, + { + "Type": 1, + "SubTag": "jac", + "Description": [ + "Popti\u0027", + "Jakalteko" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jac" + }, + { + "Type": 1, + "SubTag": "jad", + "Description": [ + "Jahanka" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jad" + }, + { + "Type": 1, + "SubTag": "jae", + "Description": [ + "Yabem" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jae" + }, + { + "Type": 1, + "SubTag": "jaf", + "Description": [ + "Jara" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jaf" + }, + { + "Type": 1, + "SubTag": "jah", + "Description": [ + "Jah Hut" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jah" + }, + { + "Type": 1, + "SubTag": "jaj", + "Description": [ + "Zazao" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jaj" + }, + { + "Type": 1, + "SubTag": "jak", + "Description": [ + "Jakun" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ms", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jak" + }, + { + "Type": 1, + "SubTag": "jal", + "Description": [ + "Yalahatan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jal" + }, + { + "Type": 1, + "SubTag": "jam", + "Description": [ + "Jamaican Creole English" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jam" + }, + { + "Type": 1, + "SubTag": "jan", + "Description": [ + "Jandai" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jan" + }, + { + "Type": 1, + "SubTag": "jao", + "Description": [ + "Yanyuwa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jao" + }, + { + "Type": 1, + "SubTag": "jaq", + "Description": [ + "Yaqay" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jaq" + }, + { + "Type": 1, + "SubTag": "jar", + "Description": [ + "Jarawa (Nigeria)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2012-08-12", + "Comments": [ + "see jgk, jjr" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jar" + }, + { + "Type": 1, + "SubTag": "jas", + "Description": [ + "New Caledonian Javanese" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jas" + }, + { + "Type": 1, + "SubTag": "jat", + "Description": [ + "Jakati" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "lah", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jat" + }, + { + "Type": 1, + "SubTag": "jau", + "Description": [ + "Yaur" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jau" + }, + { + "Type": 1, + "SubTag": "jax", + "Description": [ + "Jambi Malay" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ms", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jax" + }, + { + "Type": 1, + "SubTag": "jay", + "Description": [ + "Yan-nhangu", + "Nhangu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jay" + }, + { + "Type": 1, + "SubTag": "jaz", + "Description": [ + "Jawe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jaz" + }, + { + "Type": 1, + "SubTag": "jbe", + "Description": [ + "Judeo-Berber" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jbe" + }, + { + "Type": 1, + "SubTag": "jbi", + "Description": [ + "Badjiri" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jbi" + }, + { + "Type": 1, + "SubTag": "jbj", + "Description": [ + "Arandai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jbj" + }, + { + "Type": 1, + "SubTag": "jbk", + "Description": [ + "Barikewa" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jbk" + }, + { + "Type": 1, + "SubTag": "jbm", + "Description": [ + "Bijim" + ], + "Added": "2021-02-20", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jbm" + }, + { + "Type": 1, + "SubTag": "jbn", + "Description": [ + "Nafusi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jbn" + }, + { + "Type": 1, + "SubTag": "jbo", + "Description": [ + "Lojban" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jbo" + }, + { + "Type": 1, + "SubTag": "jbr", + "Description": [ + "Jofotek-Bromnya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jbr" + }, + { + "Type": 1, + "SubTag": "jbt", + "Description": [ + "Jabut\u00ED" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jbt" + }, + { + "Type": 1, + "SubTag": "jbu", + "Description": [ + "Jukun Takum" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jbu" + }, + { + "Type": 1, + "SubTag": "jbw", + "Description": [ + "Yawijibaya" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jbw" + }, + { + "Type": 1, + "SubTag": "jcs", + "Description": [ + "Jamaican Country Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jcs" + }, + { + "Type": 1, + "SubTag": "jct", + "Description": [ + "Krymchak" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jct" + }, + { + "Type": 1, + "SubTag": "jda", + "Description": [ + "Jad" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jda" + }, + { + "Type": 1, + "SubTag": "jdg", + "Description": [ + "Jadgali" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jdg" + }, + { + "Type": 1, + "SubTag": "jdt", + "Description": [ + "Judeo-Tat" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jdt" + }, + { + "Type": 1, + "SubTag": "jeb", + "Description": [ + "Jebero" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jeb" + }, + { + "Type": 1, + "SubTag": "jee", + "Description": [ + "Jerung" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jee" + }, + { + "Type": 1, + "SubTag": "jeg", + "Description": [ + "Jeng" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2017-02-23", + "Comments": [], + "Prefix": [], + "PreferredValue": "oyb", + "Tag": "", + "TagAny": "jeg" + }, + { + "Type": 1, + "SubTag": "jeh", + "Description": [ + "Jeh" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jeh" + }, + { + "Type": 1, + "SubTag": "jei", + "Description": [ + "Yei" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jei" + }, + { + "Type": 1, + "SubTag": "jek", + "Description": [ + "Jeri Kuo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jek" + }, + { + "Type": 1, + "SubTag": "jel", + "Description": [ + "Yelmek" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jel" + }, + { + "Type": 1, + "SubTag": "jen", + "Description": [ + "Dza" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jen" + }, + { + "Type": 1, + "SubTag": "jer", + "Description": [ + "Jere" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jer" + }, + { + "Type": 1, + "SubTag": "jet", + "Description": [ + "Manem" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jet" + }, + { + "Type": 1, + "SubTag": "jeu", + "Description": [ + "Jonkor Bourmataguil" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jeu" + }, + { + "Type": 1, + "SubTag": "jgb", + "Description": [ + "Ngbee" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jgb" + }, + { + "Type": 1, + "SubTag": "jge", + "Description": [ + "Judeo-Georgian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jge" + }, + { + "Type": 1, + "SubTag": "jgk", + "Description": [ + "Gwak" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jgk" + }, + { + "Type": 1, + "SubTag": "jgo", + "Description": [ + "Ngomba" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jgo" + }, + { + "Type": 1, + "SubTag": "jhi", + "Description": [ + "Jehai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jhi" + }, + { + "Type": 1, + "SubTag": "jhs", + "Description": [ + "Jhankot Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jhs" + }, + { + "Type": 1, + "SubTag": "jia", + "Description": [ + "Jina" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jia" + }, + { + "Type": 1, + "SubTag": "jib", + "Description": [ + "Jibu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jib" + }, + { + "Type": 1, + "SubTag": "jic", + "Description": [ + "Tol" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jic" + }, + { + "Type": 1, + "SubTag": "jid", + "Description": [ + "Bu (Kaduna State)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jid" + }, + { + "Type": 1, + "SubTag": "jie", + "Description": [ + "Jilbe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jie" + }, + { + "Type": 1, + "SubTag": "jig", + "Description": [ + "Jingulu", + "Djingili" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jig" + }, + { + "Type": 1, + "SubTag": "jih", + "Description": [ + "sTodsde", + "Shangzhai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jih" + }, + { + "Type": 1, + "SubTag": "jii", + "Description": [ + "Jiiddu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jii" + }, + { + "Type": 1, + "SubTag": "jil", + "Description": [ + "Jilim" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jil" + }, + { + "Type": 1, + "SubTag": "jim", + "Description": [ + "Jimi (Cameroon)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jim" + }, + { + "Type": 1, + "SubTag": "jio", + "Description": [ + "Jiamao" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jio" + }, + { + "Type": 1, + "SubTag": "jiq", + "Description": [ + "Guanyinqiao", + "Lavrung" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jiq" + }, + { + "Type": 1, + "SubTag": "jit", + "Description": [ + "Jita" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jit" + }, + { + "Type": 1, + "SubTag": "jiu", + "Description": [ + "Youle Jinuo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jiu" + }, + { + "Type": 1, + "SubTag": "jiv", + "Description": [ + "Shuar" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jiv" + }, + { + "Type": 1, + "SubTag": "jiy", + "Description": [ + "Buyuan Jinuo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jiy" + }, + { + "Type": 1, + "SubTag": "jje", + "Description": [ + "Jejueo" + ], + "Added": "2015-02-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jje" + }, + { + "Type": 1, + "SubTag": "jjr", + "Description": [ + "Bankal" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jjr" + }, + { + "Type": 1, + "SubTag": "jka", + "Description": [ + "Kaera" + ], + "Added": "2016-05-30", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jka" + }, + { + "Type": 1, + "SubTag": "jkm", + "Description": [ + "Mobwa Karen" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jkm" + }, + { + "Type": 1, + "SubTag": "jko", + "Description": [ + "Kubo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jko" + }, + { + "Type": 1, + "SubTag": "jkp", + "Description": [ + "Paku Karen" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jkp" + }, + { + "Type": 1, + "SubTag": "jkr", + "Description": [ + "Koro (India)" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jkr" + }, + { + "Type": 1, + "SubTag": "jks", + "Description": [ + "Amami Koniya Sign Language" + ], + "Added": "2021-02-20", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jks" + }, + { + "Type": 1, + "SubTag": "jku", + "Description": [ + "Labir" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jku" + }, + { + "Type": 1, + "SubTag": "jle", + "Description": [ + "Ngile" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jle" + }, + { + "Type": 1, + "SubTag": "jls", + "Description": [ + "Jamaican Sign Language" + ], + "Added": "2010-03-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jls" + }, + { + "Type": 1, + "SubTag": "jma", + "Description": [ + "Dima" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jma" + }, + { + "Type": 1, + "SubTag": "jmb", + "Description": [ + "Zumbun" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jmb" + }, + { + "Type": 1, + "SubTag": "jmc", + "Description": [ + "Machame" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jmc" + }, + { + "Type": 1, + "SubTag": "jmd", + "Description": [ + "Yamdena" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jmd" + }, + { + "Type": 1, + "SubTag": "jmi", + "Description": [ + "Jimi (Nigeria)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jmi" + }, + { + "Type": 1, + "SubTag": "jml", + "Description": [ + "Jumli" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jml" + }, + { + "Type": 1, + "SubTag": "jmn", + "Description": [ + "Makuri Naga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jmn" + }, + { + "Type": 1, + "SubTag": "jmr", + "Description": [ + "Kamara" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jmr" + }, + { + "Type": 1, + "SubTag": "jms", + "Description": [ + "Mashi (Nigeria)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jms" + }, + { + "Type": 1, + "SubTag": "jmw", + "Description": [ + "Mouwase" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jmw" + }, + { + "Type": 1, + "SubTag": "jmx", + "Description": [ + "Western Juxtlahuaca Mixtec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jmx" + }, + { + "Type": 1, + "SubTag": "jna", + "Description": [ + "Jangshung" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jna" + }, + { + "Type": 1, + "SubTag": "jnd", + "Description": [ + "Jandavra" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jnd" + }, + { + "Type": 1, + "SubTag": "jng", + "Description": [ + "Yangman" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jng" + }, + { + "Type": 1, + "SubTag": "jni", + "Description": [ + "Janji" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jni" + }, + { + "Type": 1, + "SubTag": "jnj", + "Description": [ + "Yemsa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jnj" + }, + { + "Type": 1, + "SubTag": "jnl", + "Description": [ + "Rawat" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jnl" + }, + { + "Type": 1, + "SubTag": "jns", + "Description": [ + "Jaunsari" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jns" + }, + { + "Type": 1, + "SubTag": "job", + "Description": [ + "Joba" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "job" + }, + { + "Type": 1, + "SubTag": "jod", + "Description": [ + "Wojenaka" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jod" + }, + { + "Type": 1, + "SubTag": "jog", + "Description": [ + "Jogi" + ], + "Added": "2015-05-27", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jog" + }, + { + "Type": 1, + "SubTag": "jor", + "Description": [ + "Jor\u00E1" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jor" + }, + { + "Type": 1, + "SubTag": "jos", + "Description": [ + "Jordanian Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jos" + }, + { + "Type": 1, + "SubTag": "jow", + "Description": [ + "Jowulu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jow" + }, + { + "Type": 1, + "SubTag": "jpa", + "Description": [ + "Jewish Palestinian Aramaic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jpa" + }, + { + "Type": 1, + "SubTag": "jpr", + "Description": [ + "Judeo-Persian" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jpr" + }, + { + "Type": 1, + "SubTag": "jpx", + "Description": [ + "Japanese (family)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jpx" + }, + { + "Type": 1, + "SubTag": "jqr", + "Description": [ + "Jaqaru" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jqr" + }, + { + "Type": 1, + "SubTag": "jra", + "Description": [ + "Jarai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jra" + }, + { + "Type": 1, + "SubTag": "jrb", + "Description": [ + "Judeo-Arabic" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "macrolanguage", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jrb" + }, + { + "Type": 1, + "SubTag": "jrr", + "Description": [ + "Jiru" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jrr" + }, + { + "Type": 1, + "SubTag": "jrt", + "Description": [ + "Jakattoe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jrt" + }, + { + "Type": 1, + "SubTag": "jru", + "Description": [ + "Japrer\u00EDa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jru" + }, + { + "Type": 1, + "SubTag": "jsl", + "Description": [ + "Japanese Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jsl" + }, + { + "Type": 1, + "SubTag": "jua", + "Description": [ + "J\u00FAma" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jua" + }, + { + "Type": 1, + "SubTag": "jub", + "Description": [ + "Wannu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jub" + }, + { + "Type": 1, + "SubTag": "juc", + "Description": [ + "Jurchen" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "juc" + }, + { + "Type": 1, + "SubTag": "jud", + "Description": [ + "Worodougou" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jud" + }, + { + "Type": 1, + "SubTag": "juh", + "Description": [ + "H\u00F5ne" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "juh" + }, + { + "Type": 1, + "SubTag": "jui", + "Description": [ + "Ngadjuri" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jui" + }, + { + "Type": 1, + "SubTag": "juk", + "Description": [ + "Wapan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "juk" + }, + { + "Type": 1, + "SubTag": "jul", + "Description": [ + "Jirel" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jul" + }, + { + "Type": 1, + "SubTag": "jum", + "Description": [ + "Jumjum" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jum" + }, + { + "Type": 1, + "SubTag": "jun", + "Description": [ + "Juang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jun" + }, + { + "Type": 1, + "SubTag": "juo", + "Description": [ + "Jiba" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "juo" + }, + { + "Type": 1, + "SubTag": "jup", + "Description": [ + "Hupd\u00EB" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jup" + }, + { + "Type": 1, + "SubTag": "jur", + "Description": [ + "Jur\u00FAna" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jur" + }, + { + "Type": 1, + "SubTag": "jus", + "Description": [ + "Jumla Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jus" + }, + { + "Type": 1, + "SubTag": "jut", + "Description": [ + "Jutish" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jut" + }, + { + "Type": 1, + "SubTag": "juu", + "Description": [ + "Ju" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "juu" + }, + { + "Type": 1, + "SubTag": "juw", + "Description": [ + "W\u00E3pha" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "juw" + }, + { + "Type": 1, + "SubTag": "juy", + "Description": [ + "Juray" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "juy" + }, + { + "Type": 1, + "SubTag": "jvd", + "Description": [ + "Javindo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jvd" + }, + { + "Type": 1, + "SubTag": "jvn", + "Description": [ + "Caribbean Javanese" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jvn" + }, + { + "Type": 1, + "SubTag": "jwi", + "Description": [ + "Jwira-Pepesa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jwi" + }, + { + "Type": 1, + "SubTag": "jya", + "Description": [ + "Jiarong" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jya" + }, + { + "Type": 1, + "SubTag": "jye", + "Description": [ + "Judeo-Yemeni Arabic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "jrb", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jye" + }, + { + "Type": 1, + "SubTag": "jyy", + "Description": [ + "Jaya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "jyy" + }, + { + "Type": 1, + "SubTag": "kaa", + "Description": [ + "Kara-Kalpak", + "Karakalpak" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kaa" + }, + { + "Type": 1, + "SubTag": "kab", + "Description": [ + "Kabyle" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kab" + }, + { + "Type": 1, + "SubTag": "kac", + "Description": [ + "Kachin", + "Jingpho" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kac" + }, + { + "Type": 1, + "SubTag": "kad", + "Description": [ + "Adara" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kad" + }, + { + "Type": 1, + "SubTag": "kae", + "Description": [ + "Ketangalan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kae" + }, + { + "Type": 1, + "SubTag": "kaf", + "Description": [ + "Katso" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kaf" + }, + { + "Type": 1, + "SubTag": "kag", + "Description": [ + "Kajaman" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kag" + }, + { + "Type": 1, + "SubTag": "kah", + "Description": [ + "Kara (Central African Republic)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kah" + }, + { + "Type": 1, + "SubTag": "kai", + "Description": [ + "Karekare" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kai" + }, + { + "Type": 1, + "SubTag": "kaj", + "Description": [ + "Jju" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kaj" + }, + { + "Type": 1, + "SubTag": "kak", + "Description": [ + "Kalanguya", + "Kayapa Kallahan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kak" + }, + { + "Type": 1, + "SubTag": "kam", + "Description": [ + "Kamba (Kenya)" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kam" + }, + { + "Type": 1, + "SubTag": "kao", + "Description": [ + "Xaasongaxango" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kao" + }, + { + "Type": 1, + "SubTag": "kap", + "Description": [ + "Bezhta" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kap" + }, + { + "Type": 1, + "SubTag": "kaq", + "Description": [ + "Capanahua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kaq" + }, + { + "Type": 1, + "SubTag": "kar", + "Description": [ + "Karen languages" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kar" + }, + { + "Type": 1, + "SubTag": "kav", + "Description": [ + "Katuk\u00EDna" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kav" + }, + { + "Type": 1, + "SubTag": "kaw", + "Description": [ + "Kawi" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kaw" + }, + { + "Type": 1, + "SubTag": "kax", + "Description": [ + "Kao" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kax" + }, + { + "Type": 1, + "SubTag": "kay", + "Description": [ + "Kamayur\u00E1" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kay" + }, + { + "Type": 1, + "SubTag": "kba", + "Description": [ + "Kalarko" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kba" + }, + { + "Type": 1, + "SubTag": "kbb", + "Description": [ + "Kaxui\u00E2na" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kbb" + }, + { + "Type": 1, + "SubTag": "kbc", + "Description": [ + "Kadiw\u00E9u" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kbc" + }, + { + "Type": 1, + "SubTag": "kbd", + "Description": [ + "Kabardian" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kbd" + }, + { + "Type": 1, + "SubTag": "kbe", + "Description": [ + "Kanju" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kbe" + }, + { + "Type": 1, + "SubTag": "kbf", + "Description": [ + "Kakauhua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2015-02-12", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kbf" + }, + { + "Type": 1, + "SubTag": "kbg", + "Description": [ + "Khamba" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kbg" + }, + { + "Type": 1, + "SubTag": "kbh", + "Description": [ + "Cams\u00E1" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kbh" + }, + { + "Type": 1, + "SubTag": "kbi", + "Description": [ + "Kaptiau" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kbi" + }, + { + "Type": 1, + "SubTag": "kbj", + "Description": [ + "Kari" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kbj" + }, + { + "Type": 1, + "SubTag": "kbk", + "Description": [ + "Grass Koiari" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kbk" + }, + { + "Type": 1, + "SubTag": "kbl", + "Description": [ + "Kanembu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kbl" + }, + { + "Type": 1, + "SubTag": "kbm", + "Description": [ + "Iwal" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kbm" + }, + { + "Type": 1, + "SubTag": "kbn", + "Description": [ + "Kare (Central African Republic)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kbn" + }, + { + "Type": 1, + "SubTag": "kbo", + "Description": [ + "Keliko" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kbo" + }, + { + "Type": 1, + "SubTag": "kbp", + "Description": [ + "Kabiy\u00E8" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kbp" + }, + { + "Type": 1, + "SubTag": "kbq", + "Description": [ + "Kamano" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kbq" + }, + { + "Type": 1, + "SubTag": "kbr", + "Description": [ + "Kafa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kbr" + }, + { + "Type": 1, + "SubTag": "kbs", + "Description": [ + "Kande" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kbs" + }, + { + "Type": 1, + "SubTag": "kbt", + "Description": [ + "Abadi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kbt" + }, + { + "Type": 1, + "SubTag": "kbu", + "Description": [ + "Kabutra" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kbu" + }, + { + "Type": 1, + "SubTag": "kbv", + "Description": [ + "Dera (Indonesia)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kbv" + }, + { + "Type": 1, + "SubTag": "kbw", + "Description": [ + "Kaiep" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kbw" + }, + { + "Type": 1, + "SubTag": "kbx", + "Description": [ + "Ap Ma" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kbx" + }, + { + "Type": 1, + "SubTag": "kby", + "Description": [ + "Manga Kanuri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "kr", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kby" + }, + { + "Type": 1, + "SubTag": "kbz", + "Description": [ + "Duhwa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kbz" + }, + { + "Type": 1, + "SubTag": "kca", + "Description": [ + "Khanty" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kca" + }, + { + "Type": 1, + "SubTag": "kcb", + "Description": [ + "Kawacha" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kcb" + }, + { + "Type": 1, + "SubTag": "kcc", + "Description": [ + "Lubila" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kcc" + }, + { + "Type": 1, + "SubTag": "kcd", + "Description": [ + "Ngk\u00E2lmpw Kanum" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kcd" + }, + { + "Type": 1, + "SubTag": "kce", + "Description": [ + "Kaivi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kce" + }, + { + "Type": 1, + "SubTag": "kcf", + "Description": [ + "Ukaan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kcf" + }, + { + "Type": 1, + "SubTag": "kcg", + "Description": [ + "Tyap" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kcg" + }, + { + "Type": 1, + "SubTag": "kch", + "Description": [ + "Vono" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kch" + }, + { + "Type": 1, + "SubTag": "kci", + "Description": [ + "Ngyian", + "Kamantan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kci" + }, + { + "Type": 1, + "SubTag": "kcj", + "Description": [ + "Kobiana" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kcj" + }, + { + "Type": 1, + "SubTag": "kck", + "Description": [ + "Kalanga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kck" + }, + { + "Type": 1, + "SubTag": "kcl", + "Description": [ + "Kela (Papua New Guinea)", + "Kala" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kcl" + }, + { + "Type": 1, + "SubTag": "kcm", + "Description": [ + "Gula (Central African Republic)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kcm" + }, + { + "Type": 1, + "SubTag": "kcn", + "Description": [ + "Nubi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kcn" + }, + { + "Type": 1, + "SubTag": "kco", + "Description": [ + "Kinalakna" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kco" + }, + { + "Type": 1, + "SubTag": "kcp", + "Description": [ + "Kanga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kcp" + }, + { + "Type": 1, + "SubTag": "kcq", + "Description": [ + "Kamo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kcq" + }, + { + "Type": 1, + "SubTag": "kcr", + "Description": [ + "Katla" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kcr" + }, + { + "Type": 1, + "SubTag": "kcs", + "Description": [ + "Koenoem" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kcs" + }, + { + "Type": 1, + "SubTag": "kct", + "Description": [ + "Kaian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kct" + }, + { + "Type": 1, + "SubTag": "kcu", + "Description": [ + "Kami (Tanzania)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kcu" + }, + { + "Type": 1, + "SubTag": "kcv", + "Description": [ + "Kete" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kcv" + }, + { + "Type": 1, + "SubTag": "kcw", + "Description": [ + "Kabwari" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kcw" + }, + { + "Type": 1, + "SubTag": "kcx", + "Description": [ + "Kachama-Ganjule" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kcx" + }, + { + "Type": 1, + "SubTag": "kcy", + "Description": [ + "Korandje" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kcy" + }, + { + "Type": 1, + "SubTag": "kcz", + "Description": [ + "Konongo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kcz" + }, + { + "Type": 1, + "SubTag": "kda", + "Description": [ + "Worimi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kda" + }, + { + "Type": 1, + "SubTag": "kdc", + "Description": [ + "Kutu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kdc" + }, + { + "Type": 1, + "SubTag": "kdd", + "Description": [ + "Yankunytjatjara" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kdd" + }, + { + "Type": 1, + "SubTag": "kde", + "Description": [ + "Makonde" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kde" + }, + { + "Type": 1, + "SubTag": "kdf", + "Description": [ + "Mamusi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kdf" + }, + { + "Type": 1, + "SubTag": "kdg", + "Description": [ + "Seba" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kdg" + }, + { + "Type": 1, + "SubTag": "kdh", + "Description": [ + "Tem" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kdh" + }, + { + "Type": 1, + "SubTag": "kdi", + "Description": [ + "Kumam" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kdi" + }, + { + "Type": 1, + "SubTag": "kdj", + "Description": [ + "Karamojong" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kdj" + }, + { + "Type": 1, + "SubTag": "kdk", + "Description": [ + "Num\u00E8\u00E8", + "Kw\u00E9nyi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kdk" + }, + { + "Type": 1, + "SubTag": "kdl", + "Description": [ + "Tsikimba" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kdl" + }, + { + "Type": 1, + "SubTag": "kdm", + "Description": [ + "Kagoma" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kdm" + }, + { + "Type": 1, + "SubTag": "kdn", + "Description": [ + "Kunda" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kdn" + }, + { + "Type": 1, + "SubTag": "kdo", + "Description": [ + "Kordofanian languages" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kdo" + }, + { + "Type": 1, + "SubTag": "kdp", + "Description": [ + "Kaningdon-Nindem" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kdp" + }, + { + "Type": 1, + "SubTag": "kdq", + "Description": [ + "Koch" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kdq" + }, + { + "Type": 1, + "SubTag": "kdr", + "Description": [ + "Karaim" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kdr" + }, + { + "Type": 1, + "SubTag": "kdt", + "Description": [ + "Kuy" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kdt" + }, + { + "Type": 1, + "SubTag": "kdu", + "Description": [ + "Kadaru" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kdu" + }, + { + "Type": 1, + "SubTag": "kdv", + "Description": [ + "Kado" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2012-08-12", + "Comments": [ + "see zkd, zkn" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kdv" + }, + { + "Type": 1, + "SubTag": "kdw", + "Description": [ + "Koneraw" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kdw" + }, + { + "Type": 1, + "SubTag": "kdx", + "Description": [ + "Kam" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kdx" + }, + { + "Type": 1, + "SubTag": "kdy", + "Description": [ + "Keder", + "Keijar" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kdy" + }, + { + "Type": 1, + "SubTag": "kdz", + "Description": [ + "Kwaja" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kdz" + }, + { + "Type": 1, + "SubTag": "kea", + "Description": [ + "Kabuverdianu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kea" + }, + { + "Type": 1, + "SubTag": "keb", + "Description": [ + "K\u00E9l\u00E9" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "keb" + }, + { + "Type": 1, + "SubTag": "kec", + "Description": [ + "Keiga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kec" + }, + { + "Type": 1, + "SubTag": "ked", + "Description": [ + "Kerewe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ked" + }, + { + "Type": 1, + "SubTag": "kee", + "Description": [ + "Eastern Keres" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kee" + }, + { + "Type": 1, + "SubTag": "kef", + "Description": [ + "Kpessi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kef" + }, + { + "Type": 1, + "SubTag": "keg", + "Description": [ + "Tese" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "keg" + }, + { + "Type": 1, + "SubTag": "keh", + "Description": [ + "Keak" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "keh" + }, + { + "Type": 1, + "SubTag": "kei", + "Description": [ + "Kei" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kei" + }, + { + "Type": 1, + "SubTag": "kej", + "Description": [ + "Kadar" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kej" + }, + { + "Type": 1, + "SubTag": "kek", + "Description": [ + "Kekch\u00ED" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kek" + }, + { + "Type": 1, + "SubTag": "kel", + "Description": [ + "Kela (Democratic Republic of Congo)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kel" + }, + { + "Type": 1, + "SubTag": "kem", + "Description": [ + "Kemak" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kem" + }, + { + "Type": 1, + "SubTag": "ken", + "Description": [ + "Kenyang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ken" + }, + { + "Type": 1, + "SubTag": "keo", + "Description": [ + "Kakwa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "keo" + }, + { + "Type": 1, + "SubTag": "kep", + "Description": [ + "Kaikadi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kep" + }, + { + "Type": 1, + "SubTag": "keq", + "Description": [ + "Kamar" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "keq" + }, + { + "Type": 1, + "SubTag": "ker", + "Description": [ + "Kera" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ker" + }, + { + "Type": 1, + "SubTag": "kes", + "Description": [ + "Kugbo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kes" + }, + { + "Type": 1, + "SubTag": "ket", + "Description": [ + "Ket" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ket" + }, + { + "Type": 1, + "SubTag": "keu", + "Description": [ + "Akebu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "keu" + }, + { + "Type": 1, + "SubTag": "kev", + "Description": [ + "Kanikkaran" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kev" + }, + { + "Type": 1, + "SubTag": "kew", + "Description": [ + "West Kewa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kew" + }, + { + "Type": 1, + "SubTag": "kex", + "Description": [ + "Kukna" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kex" + }, + { + "Type": 1, + "SubTag": "key", + "Description": [ + "Kupia" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "key" + }, + { + "Type": 1, + "SubTag": "kez", + "Description": [ + "Kukele" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kez" + }, + { + "Type": 1, + "SubTag": "kfa", + "Description": [ + "Kodava" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kfa" + }, + { + "Type": 1, + "SubTag": "kfb", + "Description": [ + "Northwestern Kolami" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kfb" + }, + { + "Type": 1, + "SubTag": "kfc", + "Description": [ + "Konda-Dora" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kfc" + }, + { + "Type": 1, + "SubTag": "kfd", + "Description": [ + "Korra Koraga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kfd" + }, + { + "Type": 1, + "SubTag": "kfe", + "Description": [ + "Kota (India)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kfe" + }, + { + "Type": 1, + "SubTag": "kff", + "Description": [ + "Koya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kff" + }, + { + "Type": 1, + "SubTag": "kfg", + "Description": [ + "Kudiya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kfg" + }, + { + "Type": 1, + "SubTag": "kfh", + "Description": [ + "Kurichiya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kfh" + }, + { + "Type": 1, + "SubTag": "kfi", + "Description": [ + "Kannada Kurumba" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kfi" + }, + { + "Type": 1, + "SubTag": "kfj", + "Description": [ + "Kemiehua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kfj" + }, + { + "Type": 1, + "SubTag": "kfk", + "Description": [ + "Kinnauri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kfk" + }, + { + "Type": 1, + "SubTag": "kfl", + "Description": [ + "Kung" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kfl" + }, + { + "Type": 1, + "SubTag": "kfm", + "Description": [ + "Khunsari" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kfm" + }, + { + "Type": 1, + "SubTag": "kfn", + "Description": [ + "Kuk" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kfn" + }, + { + "Type": 1, + "SubTag": "kfo", + "Description": [ + "Koro (C\u00F4te d\u0027Ivoire)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kfo" + }, + { + "Type": 1, + "SubTag": "kfp", + "Description": [ + "Korwa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kfp" + }, + { + "Type": 1, + "SubTag": "kfq", + "Description": [ + "Korku" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kfq" + }, + { + "Type": 1, + "SubTag": "kfr", + "Description": [ + "Kachhi", + "Kutchi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kfr" + }, + { + "Type": 1, + "SubTag": "kfs", + "Description": [ + "Bilaspuri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kfs" + }, + { + "Type": 1, + "SubTag": "kft", + "Description": [ + "Kanjari" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kft" + }, + { + "Type": 1, + "SubTag": "kfu", + "Description": [ + "Katkari" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kfu" + }, + { + "Type": 1, + "SubTag": "kfv", + "Description": [ + "Kurmukar" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kfv" + }, + { + "Type": 1, + "SubTag": "kfw", + "Description": [ + "Kharam Naga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kfw" + }, + { + "Type": 1, + "SubTag": "kfx", + "Description": [ + "Kullu Pahari" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kfx" + }, + { + "Type": 1, + "SubTag": "kfy", + "Description": [ + "Kumaoni" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kfy" + }, + { + "Type": 1, + "SubTag": "kfz", + "Description": [ + "Koromf\u00E9" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kfz" + }, + { + "Type": 1, + "SubTag": "kga", + "Description": [ + "Koyaga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kga" + }, + { + "Type": 1, + "SubTag": "kgb", + "Description": [ + "Kawe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kgb" + }, + { + "Type": 1, + "SubTag": "kgc", + "Description": [ + "Kasseng" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2016-05-30", + "Comments": [], + "Prefix": [], + "PreferredValue": "tdf", + "Tag": "", + "TagAny": "kgc" + }, + { + "Type": 1, + "SubTag": "kgd", + "Description": [ + "Kataang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2017-02-23", + "Comments": [ + "see ncq, sct" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kgd" + }, + { + "Type": 1, + "SubTag": "kge", + "Description": [ + "Komering" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kge" + }, + { + "Type": 1, + "SubTag": "kgf", + "Description": [ + "Kube" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kgf" + }, + { + "Type": 1, + "SubTag": "kgg", + "Description": [ + "Kusunda" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kgg" + }, + { + "Type": 1, + "SubTag": "kgh", + "Description": [ + "Upper Tanudan Kalinga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2012-08-12", + "Comments": [], + "Prefix": [], + "PreferredValue": "kml", + "Tag": "", + "TagAny": "kgh" + }, + { + "Type": 1, + "SubTag": "kgi", + "Description": [ + "Selangor Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kgi" + }, + { + "Type": 1, + "SubTag": "kgj", + "Description": [ + "Gamale Kham" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kgj" + }, + { + "Type": 1, + "SubTag": "kgk", + "Description": [ + "Kaiw\u00E1" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kgk" + }, + { + "Type": 1, + "SubTag": "kgl", + "Description": [ + "Kunggari" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kgl" + }, + { + "Type": 1, + "SubTag": "kgm", + "Description": [ + "Karip\u00FAna" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2023-03-17", + "Comments": [], + "Prefix": [], + "PreferredValue": "plu", + "Tag": "", + "TagAny": "kgm" + }, + { + "Type": 1, + "SubTag": "kgn", + "Description": [ + "Karingani" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kgn" + }, + { + "Type": 1, + "SubTag": "kgo", + "Description": [ + "Krongo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kgo" + }, + { + "Type": 1, + "SubTag": "kgp", + "Description": [ + "Kaingang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kgp" + }, + { + "Type": 1, + "SubTag": "kgq", + "Description": [ + "Kamoro" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kgq" + }, + { + "Type": 1, + "SubTag": "kgr", + "Description": [ + "Abun" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kgr" + }, + { + "Type": 1, + "SubTag": "kgs", + "Description": [ + "Kumbainggar" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kgs" + }, + { + "Type": 1, + "SubTag": "kgt", + "Description": [ + "Somyev" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kgt" + }, + { + "Type": 1, + "SubTag": "kgu", + "Description": [ + "Kobol" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kgu" + }, + { + "Type": 1, + "SubTag": "kgv", + "Description": [ + "Karas" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kgv" + }, + { + "Type": 1, + "SubTag": "kgw", + "Description": [ + "Karon Dori" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kgw" + }, + { + "Type": 1, + "SubTag": "kgx", + "Description": [ + "Kamaru" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kgx" + }, + { + "Type": 1, + "SubTag": "kgy", + "Description": [ + "Kyerung" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kgy" + }, + { + "Type": 1, + "SubTag": "kha", + "Description": [ + "Khasi" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [ + "as of 2008-04-21 this subtag does not include Lyngngam; see lyg" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kha" + }, + { + "Type": 1, + "SubTag": "khb", + "Description": [ + "L\u00FC" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "khb" + }, + { + "Type": 1, + "SubTag": "khc", + "Description": [ + "Tukang Besi North" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "khc" + }, + { + "Type": 1, + "SubTag": "khd", + "Description": [ + "B\u00E4di Kanum" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "khd" + }, + { + "Type": 1, + "SubTag": "khe", + "Description": [ + "Korowai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "khe" + }, + { + "Type": 1, + "SubTag": "khf", + "Description": [ + "Khuen" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "khf" + }, + { + "Type": 1, + "SubTag": "khg", + "Description": [ + "Khams Tibetan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "khg" + }, + { + "Type": 1, + "SubTag": "khh", + "Description": [ + "Kehu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "khh" + }, + { + "Type": 1, + "SubTag": "khi", + "Description": [ + "Khoisan languages" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "khi" + }, + { + "Type": 1, + "SubTag": "khj", + "Description": [ + "Kuturmi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "khj" + }, + { + "Type": 1, + "SubTag": "khk", + "Description": [ + "Halh Mongolian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "mn", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "khk" + }, + { + "Type": 1, + "SubTag": "khl", + "Description": [ + "Lusi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "khl" + }, + { + "Type": 1, + "SubTag": "khn", + "Description": [ + "Khandesi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "khn" + }, + { + "Type": 1, + "SubTag": "kho", + "Description": [ + "Khotanese", + "Sakan" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kho" + }, + { + "Type": 1, + "SubTag": "khp", + "Description": [ + "Kapori", + "Kapauri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "khp" + }, + { + "Type": 1, + "SubTag": "khq", + "Description": [ + "Koyra Chiini Songhay" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "khq" + }, + { + "Type": 1, + "SubTag": "khr", + "Description": [ + "Kharia" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "khr" + }, + { + "Type": 1, + "SubTag": "khs", + "Description": [ + "Kasua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "khs" + }, + { + "Type": 1, + "SubTag": "kht", + "Description": [ + "Khamti" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kht" + }, + { + "Type": 1, + "SubTag": "khu", + "Description": [ + "Nkhumbi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "khu" + }, + { + "Type": 1, + "SubTag": "khv", + "Description": [ + "Khvarshi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "khv" + }, + { + "Type": 1, + "SubTag": "khw", + "Description": [ + "Khowar" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "khw" + }, + { + "Type": 1, + "SubTag": "khx", + "Description": [ + "Kanu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "khx" + }, + { + "Type": 1, + "SubTag": "khy", + "Description": [ + "Kele (Democratic Republic of Congo)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "khy" + }, + { + "Type": 1, + "SubTag": "khz", + "Description": [ + "Keapara" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "khz" + }, + { + "Type": 1, + "SubTag": "kia", + "Description": [ + "Kim" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kia" + }, + { + "Type": 1, + "SubTag": "kib", + "Description": [ + "Koalib" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kib" + }, + { + "Type": 1, + "SubTag": "kic", + "Description": [ + "Kickapoo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kic" + }, + { + "Type": 1, + "SubTag": "kid", + "Description": [ + "Koshin" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kid" + }, + { + "Type": 1, + "SubTag": "kie", + "Description": [ + "Kibet" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kie" + }, + { + "Type": 1, + "SubTag": "kif", + "Description": [ + "Eastern Parbate Kham" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kif" + }, + { + "Type": 1, + "SubTag": "kig", + "Description": [ + "Kimaama", + "Kimaghima" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kig" + }, + { + "Type": 1, + "SubTag": "kih", + "Description": [ + "Kilmeri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kih" + }, + { + "Type": 1, + "SubTag": "kii", + "Description": [ + "Kitsai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kii" + }, + { + "Type": 1, + "SubTag": "kij", + "Description": [ + "Kilivila" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kij" + }, + { + "Type": 1, + "SubTag": "kil", + "Description": [ + "Kariya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kil" + }, + { + "Type": 1, + "SubTag": "kim", + "Description": [ + "Karagas" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kim" + }, + { + "Type": 1, + "SubTag": "kio", + "Description": [ + "Kiowa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kio" + }, + { + "Type": 1, + "SubTag": "kip", + "Description": [ + "Sheshi Kham" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kip" + }, + { + "Type": 1, + "SubTag": "kiq", + "Description": [ + "Kosadle", + "Kosare" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kiq" + }, + { + "Type": 1, + "SubTag": "kis", + "Description": [ + "Kis" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kis" + }, + { + "Type": 1, + "SubTag": "kit", + "Description": [ + "Agob" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kit" + }, + { + "Type": 1, + "SubTag": "kiu", + "Description": [ + "Kirmanjki (individual language)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zza", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kiu" + }, + { + "Type": 1, + "SubTag": "kiv", + "Description": [ + "Kimbu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kiv" + }, + { + "Type": 1, + "SubTag": "kiw", + "Description": [ + "Northeast Kiwai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kiw" + }, + { + "Type": 1, + "SubTag": "kix", + "Description": [ + "Khiamniungan Naga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kix" + }, + { + "Type": 1, + "SubTag": "kiy", + "Description": [ + "Kirikiri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kiy" + }, + { + "Type": 1, + "SubTag": "kiz", + "Description": [ + "Kisi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kiz" + }, + { + "Type": 1, + "SubTag": "kja", + "Description": [ + "Mlap" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kja" + }, + { + "Type": 1, + "SubTag": "kjb", + "Description": [ + "Q\u0027anjob\u0027al", + "Kanjobal" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kjb" + }, + { + "Type": 1, + "SubTag": "kjc", + "Description": [ + "Coastal Konjo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kjc" + }, + { + "Type": 1, + "SubTag": "kjd", + "Description": [ + "Southern Kiwai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kjd" + }, + { + "Type": 1, + "SubTag": "kje", + "Description": [ + "Kisar" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kje" + }, + { + "Type": 1, + "SubTag": "kjf", + "Description": [ + "Khalaj [Indo-Iranian]" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2020-03-28", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kjf" + }, + { + "Type": 1, + "SubTag": "kjg", + "Description": [ + "Khmu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kjg" + }, + { + "Type": 1, + "SubTag": "kjh", + "Description": [ + "Khakas" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kjh" + }, + { + "Type": 1, + "SubTag": "kji", + "Description": [ + "Zabana" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kji" + }, + { + "Type": 1, + "SubTag": "kjj", + "Description": [ + "Khinalugh" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kjj" + }, + { + "Type": 1, + "SubTag": "kjk", + "Description": [ + "Highland Konjo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kjk" + }, + { + "Type": 1, + "SubTag": "kjl", + "Description": [ + "Western Parbate Kham" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kjl" + }, + { + "Type": 1, + "SubTag": "kjm", + "Description": [ + "Kh\u00E1ng" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kjm" + }, + { + "Type": 1, + "SubTag": "kjn", + "Description": [ + "Kunjen" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kjn" + }, + { + "Type": 1, + "SubTag": "kjo", + "Description": [ + "Harijan Kinnauri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kjo" + }, + { + "Type": 1, + "SubTag": "kjp", + "Description": [ + "Pwo Eastern Karen" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kjp" + }, + { + "Type": 1, + "SubTag": "kjq", + "Description": [ + "Western Keres" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kjq" + }, + { + "Type": 1, + "SubTag": "kjr", + "Description": [ + "Kurudu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kjr" + }, + { + "Type": 1, + "SubTag": "kjs", + "Description": [ + "East Kewa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kjs" + }, + { + "Type": 1, + "SubTag": "kjt", + "Description": [ + "Phrae Pwo Karen" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kjt" + }, + { + "Type": 1, + "SubTag": "kju", + "Description": [ + "Kashaya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kju" + }, + { + "Type": 1, + "SubTag": "kjv", + "Description": [ + "Kaikavian Literary Language" + ], + "Added": "2015-02-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kjv" + }, + { + "Type": 1, + "SubTag": "kjx", + "Description": [ + "Ramopa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kjx" + }, + { + "Type": 1, + "SubTag": "kjy", + "Description": [ + "Erave" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kjy" + }, + { + "Type": 1, + "SubTag": "kjz", + "Description": [ + "Bumthangkha" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kjz" + }, + { + "Type": 1, + "SubTag": "kka", + "Description": [ + "Kakanda" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kka" + }, + { + "Type": 1, + "SubTag": "kkb", + "Description": [ + "Kwerisa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kkb" + }, + { + "Type": 1, + "SubTag": "kkc", + "Description": [ + "Odoodee" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kkc" + }, + { + "Type": 1, + "SubTag": "kkd", + "Description": [ + "Kinuku" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kkd" + }, + { + "Type": 1, + "SubTag": "kke", + "Description": [ + "Kakabe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kke" + }, + { + "Type": 1, + "SubTag": "kkf", + "Description": [ + "Kalaktang Monpa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kkf" + }, + { + "Type": 1, + "SubTag": "kkg", + "Description": [ + "Mabaka Valley Kalinga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kkg" + }, + { + "Type": 1, + "SubTag": "kkh", + "Description": [ + "Kh\u00FCn" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kkh" + }, + { + "Type": 1, + "SubTag": "kki", + "Description": [ + "Kagulu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kki" + }, + { + "Type": 1, + "SubTag": "kkj", + "Description": [ + "Kako" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kkj" + }, + { + "Type": 1, + "SubTag": "kkk", + "Description": [ + "Kokota" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kkk" + }, + { + "Type": 1, + "SubTag": "kkl", + "Description": [ + "Kosarek Yale" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kkl" + }, + { + "Type": 1, + "SubTag": "kkm", + "Description": [ + "Kiong" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kkm" + }, + { + "Type": 1, + "SubTag": "kkn", + "Description": [ + "Kon Keu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kkn" + }, + { + "Type": 1, + "SubTag": "kko", + "Description": [ + "Karko" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kko" + }, + { + "Type": 1, + "SubTag": "kkp", + "Description": [ + "Gugubera", + "Koko-Bera" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kkp" + }, + { + "Type": 1, + "SubTag": "kkq", + "Description": [ + "Kaeku" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kkq" + }, + { + "Type": 1, + "SubTag": "kkr", + "Description": [ + "Kir-Balar" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kkr" + }, + { + "Type": 1, + "SubTag": "kks", + "Description": [ + "Giiwo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kks" + }, + { + "Type": 1, + "SubTag": "kkt", + "Description": [ + "Koi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kkt" + }, + { + "Type": 1, + "SubTag": "kku", + "Description": [ + "Tumi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kku" + }, + { + "Type": 1, + "SubTag": "kkv", + "Description": [ + "Kangean" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kkv" + }, + { + "Type": 1, + "SubTag": "kkw", + "Description": [ + "Teke-Kukuya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kkw" + }, + { + "Type": 1, + "SubTag": "kkx", + "Description": [ + "Kohin" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kkx" + }, + { + "Type": 1, + "SubTag": "kky", + "Description": [ + "Guugu Yimidhirr", + "Guguyimidjir" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kky" + }, + { + "Type": 1, + "SubTag": "kkz", + "Description": [ + "Kaska" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kkz" + }, + { + "Type": 1, + "SubTag": "kla", + "Description": [ + "Klamath-Modoc" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kla" + }, + { + "Type": 1, + "SubTag": "klb", + "Description": [ + "Kiliwa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "klb" + }, + { + "Type": 1, + "SubTag": "klc", + "Description": [ + "Kolbila" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "klc" + }, + { + "Type": 1, + "SubTag": "kld", + "Description": [ + "Gamilaraay" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kld" + }, + { + "Type": 1, + "SubTag": "kle", + "Description": [ + "Kulung (Nepal)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kle" + }, + { + "Type": 1, + "SubTag": "klf", + "Description": [ + "Kendeje" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "klf" + }, + { + "Type": 1, + "SubTag": "klg", + "Description": [ + "Tagakaulo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "klg" + }, + { + "Type": 1, + "SubTag": "klh", + "Description": [ + "Weliki" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "klh" + }, + { + "Type": 1, + "SubTag": "kli", + "Description": [ + "Kalumpang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kli" + }, + { + "Type": 1, + "SubTag": "klj", + "Description": [ + "Khalaj" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "klj" + }, + { + "Type": 1, + "SubTag": "klk", + "Description": [ + "Kono (Nigeria)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "klk" + }, + { + "Type": 1, + "SubTag": "kll", + "Description": [ + "Kagan Kalagan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kll" + }, + { + "Type": 1, + "SubTag": "klm", + "Description": [ + "Migum" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "klm" + }, + { + "Type": 1, + "SubTag": "kln", + "Description": [ + "Kalenjin" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "macrolanguage", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kln" + }, + { + "Type": 1, + "SubTag": "klo", + "Description": [ + "Kapya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "klo" + }, + { + "Type": 1, + "SubTag": "klp", + "Description": [ + "Kamasa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "klp" + }, + { + "Type": 1, + "SubTag": "klq", + "Description": [ + "Rumu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "klq" + }, + { + "Type": 1, + "SubTag": "klr", + "Description": [ + "Khaling" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "klr" + }, + { + "Type": 1, + "SubTag": "kls", + "Description": [ + "Kalasha" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kls" + }, + { + "Type": 1, + "SubTag": "klt", + "Description": [ + "Nukna" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "klt" + }, + { + "Type": 1, + "SubTag": "klu", + "Description": [ + "Klao" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "klu" + }, + { + "Type": 1, + "SubTag": "klv", + "Description": [ + "Maskelynes" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "klv" + }, + { + "Type": 1, + "SubTag": "klw", + "Description": [ + "Tado", + "Lindu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "klw" + }, + { + "Type": 1, + "SubTag": "klx", + "Description": [ + "Koluwawa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "klx" + }, + { + "Type": 1, + "SubTag": "kly", + "Description": [ + "Kalao" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kly" + }, + { + "Type": 1, + "SubTag": "klz", + "Description": [ + "Kabola" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "klz" + }, + { + "Type": 1, + "SubTag": "kma", + "Description": [ + "Konni" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kma" + }, + { + "Type": 1, + "SubTag": "kmb", + "Description": [ + "Kimbundu" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kmb" + }, + { + "Type": 1, + "SubTag": "kmc", + "Description": [ + "Southern Dong" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kmc" + }, + { + "Type": 1, + "SubTag": "kmd", + "Description": [ + "Majukayang Kalinga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kmd" + }, + { + "Type": 1, + "SubTag": "kme", + "Description": [ + "Bakole" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kme" + }, + { + "Type": 1, + "SubTag": "kmf", + "Description": [ + "Kare (Papua New Guinea)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kmf" + }, + { + "Type": 1, + "SubTag": "kmg", + "Description": [ + "K\u00E2te" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kmg" + }, + { + "Type": 1, + "SubTag": "kmh", + "Description": [ + "Kalam" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kmh" + }, + { + "Type": 1, + "SubTag": "kmi", + "Description": [ + "Kami (Nigeria)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kmi" + }, + { + "Type": 1, + "SubTag": "kmj", + "Description": [ + "Kumarbhag Paharia" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kmj" + }, + { + "Type": 1, + "SubTag": "kmk", + "Description": [ + "Limos Kalinga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kmk" + }, + { + "Type": 1, + "SubTag": "kml", + "Description": [ + "Tanudan Kalinga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kml" + }, + { + "Type": 1, + "SubTag": "kmm", + "Description": [ + "Kom (India)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kmm" + }, + { + "Type": 1, + "SubTag": "kmn", + "Description": [ + "Awtuw" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kmn" + }, + { + "Type": 1, + "SubTag": "kmo", + "Description": [ + "Kwoma" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kmo" + }, + { + "Type": 1, + "SubTag": "kmp", + "Description": [ + "Gimme" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kmp" + }, + { + "Type": 1, + "SubTag": "kmq", + "Description": [ + "Kwama" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kmq" + }, + { + "Type": 1, + "SubTag": "kmr", + "Description": [ + "Northern Kurdish" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ku", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kmr" + }, + { + "Type": 1, + "SubTag": "kms", + "Description": [ + "Kamasau" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kms" + }, + { + "Type": 1, + "SubTag": "kmt", + "Description": [ + "Kemtuik" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kmt" + }, + { + "Type": 1, + "SubTag": "kmu", + "Description": [ + "Kanite" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kmu" + }, + { + "Type": 1, + "SubTag": "kmv", + "Description": [ + "Karip\u00FAna Creole French" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kmv" + }, + { + "Type": 1, + "SubTag": "kmw", + "Description": [ + "Komo (Democratic Republic of Congo)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kmw" + }, + { + "Type": 1, + "SubTag": "kmx", + "Description": [ + "Waboda" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kmx" + }, + { + "Type": 1, + "SubTag": "kmy", + "Description": [ + "Koma" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kmy" + }, + { + "Type": 1, + "SubTag": "kmz", + "Description": [ + "Khorasani Turkish" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kmz" + }, + { + "Type": 1, + "SubTag": "kna", + "Description": [ + "Dera (Nigeria)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kna" + }, + { + "Type": 1, + "SubTag": "knb", + "Description": [ + "Lubuagan Kalinga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "knb" + }, + { + "Type": 1, + "SubTag": "knc", + "Description": [ + "Central Kanuri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "kr", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "knc" + }, + { + "Type": 1, + "SubTag": "knd", + "Description": [ + "Konda" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "knd" + }, + { + "Type": 1, + "SubTag": "kne", + "Description": [ + "Kankanaey" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kne" + }, + { + "Type": 1, + "SubTag": "knf", + "Description": [ + "Mankanya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "knf" + }, + { + "Type": 1, + "SubTag": "kng", + "Description": [ + "Koongo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "kg", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kng" + }, + { + "Type": 1, + "SubTag": "kni", + "Description": [ + "Kanufi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kni" + }, + { + "Type": 1, + "SubTag": "knj", + "Description": [ + "Western Kanjobal" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "knj" + }, + { + "Type": 1, + "SubTag": "knk", + "Description": [ + "Kuranko" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "knk" + }, + { + "Type": 1, + "SubTag": "knl", + "Description": [ + "Keninjal" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "knl" + }, + { + "Type": 1, + "SubTag": "knm", + "Description": [ + "Kanamar\u00ED" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "knm" + }, + { + "Type": 1, + "SubTag": "knn", + "Description": [ + "Konkani (individual language)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "kok", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "knn" + }, + { + "Type": 1, + "SubTag": "kno", + "Description": [ + "Kono (Sierra Leone)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kno" + }, + { + "Type": 1, + "SubTag": "knp", + "Description": [ + "Kwanja" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "knp" + }, + { + "Type": 1, + "SubTag": "knq", + "Description": [ + "Kintaq" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "knq" + }, + { + "Type": 1, + "SubTag": "knr", + "Description": [ + "Kaningra" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "knr" + }, + { + "Type": 1, + "SubTag": "kns", + "Description": [ + "Kensiu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kns" + }, + { + "Type": 1, + "SubTag": "knt", + "Description": [ + "Panoan Katuk\u00EDna" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "knt" + }, + { + "Type": 1, + "SubTag": "knu", + "Description": [ + "Kono (Guinea)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "knu" + }, + { + "Type": 1, + "SubTag": "knv", + "Description": [ + "Tabo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "knv" + }, + { + "Type": 1, + "SubTag": "knw", + "Description": [ + "Kung-Ekoka" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "knw" + }, + { + "Type": 1, + "SubTag": "knx", + "Description": [ + "Kendayan", + "Salako" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "knx" + }, + { + "Type": 1, + "SubTag": "kny", + "Description": [ + "Kanyok" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kny" + }, + { + "Type": 1, + "SubTag": "knz", + "Description": [ + "Kalams\u00E9" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "knz" + }, + { + "Type": 1, + "SubTag": "koa", + "Description": [ + "Konomala" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "koa" + }, + { + "Type": 1, + "SubTag": "koc", + "Description": [ + "Kpati" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "koc" + }, + { + "Type": 1, + "SubTag": "kod", + "Description": [ + "Kodi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kod" + }, + { + "Type": 1, + "SubTag": "koe", + "Description": [ + "Kacipo-Bale Suri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "koe" + }, + { + "Type": 1, + "SubTag": "kof", + "Description": [ + "Kubi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kof" + }, + { + "Type": 1, + "SubTag": "kog", + "Description": [ + "Cogui", + "Kogi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kog" + }, + { + "Type": 1, + "SubTag": "koh", + "Description": [ + "Koyo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "koh" + }, + { + "Type": 1, + "SubTag": "koi", + "Description": [ + "Komi-Permyak" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "kv", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "koi" + }, + { + "Type": 1, + "SubTag": "koj", + "Description": [ + "Sara Dunjo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2015-02-12", + "Comments": [], + "Prefix": [], + "PreferredValue": "kwv", + "Tag": "", + "TagAny": "koj" + }, + { + "Type": 1, + "SubTag": "kok", + "Description": [ + "Konkani (macrolanguage)" + ], + "Added": "2005-10-16", + "SuppressScript": "Deva", + "Scope": "macrolanguage", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kok" + }, + { + "Type": 1, + "SubTag": "kol", + "Description": [ + "Kol (Papua New Guinea)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kol" + }, + { + "Type": 1, + "SubTag": "koo", + "Description": [ + "Konzo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "koo" + }, + { + "Type": 1, + "SubTag": "kop", + "Description": [ + "Waube" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kop" + }, + { + "Type": 1, + "SubTag": "koq", + "Description": [ + "Kota (Gabon)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "koq" + }, + { + "Type": 1, + "SubTag": "kos", + "Description": [ + "Kosraean" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kos" + }, + { + "Type": 1, + "SubTag": "kot", + "Description": [ + "Lagwan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kot" + }, + { + "Type": 1, + "SubTag": "kou", + "Description": [ + "Koke" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kou" + }, + { + "Type": 1, + "SubTag": "kov", + "Description": [ + "Kudu-Camo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kov" + }, + { + "Type": 1, + "SubTag": "kow", + "Description": [ + "Kugama" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kow" + }, + { + "Type": 1, + "SubTag": "kox", + "Description": [ + "Coxima" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2016-05-30", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kox" + }, + { + "Type": 1, + "SubTag": "koy", + "Description": [ + "Koyukon" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "koy" + }, + { + "Type": 1, + "SubTag": "koz", + "Description": [ + "Korak" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "koz" + }, + { + "Type": 1, + "SubTag": "kpa", + "Description": [ + "Kutto" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kpa" + }, + { + "Type": 1, + "SubTag": "kpb", + "Description": [ + "Mullu Kurumba" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kpb" + }, + { + "Type": 1, + "SubTag": "kpc", + "Description": [ + "Curripaco" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kpc" + }, + { + "Type": 1, + "SubTag": "kpd", + "Description": [ + "Koba" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kpd" + }, + { + "Type": 1, + "SubTag": "kpe", + "Description": [ + "Kpelle" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "macrolanguage", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kpe" + }, + { + "Type": 1, + "SubTag": "kpf", + "Description": [ + "Komba" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kpf" + }, + { + "Type": 1, + "SubTag": "kpg", + "Description": [ + "Kapingamarangi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kpg" + }, + { + "Type": 1, + "SubTag": "kph", + "Description": [ + "Kplang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kph" + }, + { + "Type": 1, + "SubTag": "kpi", + "Description": [ + "Kofei" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kpi" + }, + { + "Type": 1, + "SubTag": "kpj", + "Description": [ + "Karaj\u00E1" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kpj" + }, + { + "Type": 1, + "SubTag": "kpk", + "Description": [ + "Kpan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kpk" + }, + { + "Type": 1, + "SubTag": "kpl", + "Description": [ + "Kpala" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kpl" + }, + { + "Type": 1, + "SubTag": "kpm", + "Description": [ + "Koho" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kpm" + }, + { + "Type": 1, + "SubTag": "kpn", + "Description": [ + "Kepkiriw\u00E1t" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kpn" + }, + { + "Type": 1, + "SubTag": "kpo", + "Description": [ + "Ikposo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kpo" + }, + { + "Type": 1, + "SubTag": "kpp", + "Description": [ + "Paku Karen" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2012-08-12", + "Comments": [ + "see jkm, jkp" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kpp" + }, + { + "Type": 1, + "SubTag": "kpq", + "Description": [ + "Korupun-Sela" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kpq" + }, + { + "Type": 1, + "SubTag": "kpr", + "Description": [ + "Korafe-Yegha" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kpr" + }, + { + "Type": 1, + "SubTag": "kps", + "Description": [ + "Tehit" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kps" + }, + { + "Type": 1, + "SubTag": "kpt", + "Description": [ + "Karata" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kpt" + }, + { + "Type": 1, + "SubTag": "kpu", + "Description": [ + "Kafoa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kpu" + }, + { + "Type": 1, + "SubTag": "kpv", + "Description": [ + "Komi-Zyrian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "kv", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kpv" + }, + { + "Type": 1, + "SubTag": "kpw", + "Description": [ + "Kobon" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kpw" + }, + { + "Type": 1, + "SubTag": "kpx", + "Description": [ + "Mountain Koiali" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kpx" + }, + { + "Type": 1, + "SubTag": "kpy", + "Description": [ + "Koryak" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kpy" + }, + { + "Type": 1, + "SubTag": "kpz", + "Description": [ + "Kupsabiny" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kpz" + }, + { + "Type": 1, + "SubTag": "kqa", + "Description": [ + "Mum" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kqa" + }, + { + "Type": 1, + "SubTag": "kqb", + "Description": [ + "Kovai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kqb" + }, + { + "Type": 1, + "SubTag": "kqc", + "Description": [ + "Doromu-Koki" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kqc" + }, + { + "Type": 1, + "SubTag": "kqd", + "Description": [ + "Koy Sanjaq Surat" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kqd" + }, + { + "Type": 1, + "SubTag": "kqe", + "Description": [ + "Kalagan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kqe" + }, + { + "Type": 1, + "SubTag": "kqf", + "Description": [ + "Kakabai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kqf" + }, + { + "Type": 1, + "SubTag": "kqg", + "Description": [ + "Khe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kqg" + }, + { + "Type": 1, + "SubTag": "kqh", + "Description": [ + "Kisankasa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kqh" + }, + { + "Type": 1, + "SubTag": "kqi", + "Description": [ + "Koitabu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kqi" + }, + { + "Type": 1, + "SubTag": "kqj", + "Description": [ + "Koromira" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kqj" + }, + { + "Type": 1, + "SubTag": "kqk", + "Description": [ + "Kotafon Gbe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kqk" + }, + { + "Type": 1, + "SubTag": "kql", + "Description": [ + "Kyenele" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kql" + }, + { + "Type": 1, + "SubTag": "kqm", + "Description": [ + "Khisa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kqm" + }, + { + "Type": 1, + "SubTag": "kqn", + "Description": [ + "Kaonde" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kqn" + }, + { + "Type": 1, + "SubTag": "kqo", + "Description": [ + "Eastern Krahn" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kqo" + }, + { + "Type": 1, + "SubTag": "kqp", + "Description": [ + "Kimr\u00E9" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kqp" + }, + { + "Type": 1, + "SubTag": "kqq", + "Description": [ + "Krenak" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kqq" + }, + { + "Type": 1, + "SubTag": "kqr", + "Description": [ + "Kimaragang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kqr" + }, + { + "Type": 1, + "SubTag": "kqs", + "Description": [ + "Northern Kissi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kqs" + }, + { + "Type": 1, + "SubTag": "kqt", + "Description": [ + "Klias River Kadazan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kqt" + }, + { + "Type": 1, + "SubTag": "kqu", + "Description": [ + "Seroa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kqu" + }, + { + "Type": 1, + "SubTag": "kqv", + "Description": [ + "Okolod" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kqv" + }, + { + "Type": 1, + "SubTag": "kqw", + "Description": [ + "Kandas" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kqw" + }, + { + "Type": 1, + "SubTag": "kqx", + "Description": [ + "Mser" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kqx" + }, + { + "Type": 1, + "SubTag": "kqy", + "Description": [ + "Koorete" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kqy" + }, + { + "Type": 1, + "SubTag": "kqz", + "Description": [ + "Korana" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kqz" + }, + { + "Type": 1, + "SubTag": "kra", + "Description": [ + "Kumhali" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kra" + }, + { + "Type": 1, + "SubTag": "krb", + "Description": [ + "Karkin" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "krb" + }, + { + "Type": 1, + "SubTag": "krc", + "Description": [ + "Karachay-Balkar" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "krc" + }, + { + "Type": 1, + "SubTag": "krd", + "Description": [ + "Kairui-Midiki" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "krd" + }, + { + "Type": 1, + "SubTag": "kre", + "Description": [ + "Panar\u00E1" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kre" + }, + { + "Type": 1, + "SubTag": "krf", + "Description": [ + "Koro (Vanuatu)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "krf" + }, + { + "Type": 1, + "SubTag": "krh", + "Description": [ + "Kurama" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "krh" + }, + { + "Type": 1, + "SubTag": "kri", + "Description": [ + "Krio" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kri" + }, + { + "Type": 1, + "SubTag": "krj", + "Description": [ + "Kinaray-A" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "krj" + }, + { + "Type": 1, + "SubTag": "krk", + "Description": [ + "Kerek" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "krk" + }, + { + "Type": 1, + "SubTag": "krl", + "Description": [ + "Karelian" + ], + "Added": "2006-03-08", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "krl" + }, + { + "Type": 1, + "SubTag": "krm", + "Description": [ + "Krim" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2017-02-23", + "Comments": [], + "Prefix": [], + "PreferredValue": "bmf", + "Tag": "", + "TagAny": "krm" + }, + { + "Type": 1, + "SubTag": "krn", + "Description": [ + "Sapo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "krn" + }, + { + "Type": 1, + "SubTag": "kro", + "Description": [ + "Kru languages" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kro" + }, + { + "Type": 1, + "SubTag": "krp", + "Description": [ + "Durop" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "krp" + }, + { + "Type": 1, + "SubTag": "krr", + "Description": [ + "Krung" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "krr" + }, + { + "Type": 1, + "SubTag": "krs", + "Description": [ + "Gbaya (Sudan)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "krs" + }, + { + "Type": 1, + "SubTag": "krt", + "Description": [ + "Tumari Kanuri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "kr", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "krt" + }, + { + "Type": 1, + "SubTag": "kru", + "Description": [ + "Kurukh" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kru" + }, + { + "Type": 1, + "SubTag": "krv", + "Description": [ + "Kavet" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "krv" + }, + { + "Type": 1, + "SubTag": "krw", + "Description": [ + "Western Krahn" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "krw" + }, + { + "Type": 1, + "SubTag": "krx", + "Description": [ + "Karon" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "krx" + }, + { + "Type": 1, + "SubTag": "kry", + "Description": [ + "Kryts" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kry" + }, + { + "Type": 1, + "SubTag": "krz", + "Description": [ + "Sota Kanum" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "krz" + }, + { + "Type": 1, + "SubTag": "ksa", + "Description": [ + "Shuwa-Zamani" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2023-03-17", + "Comments": [ + "see izm, rsw" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ksa" + }, + { + "Type": 1, + "SubTag": "ksb", + "Description": [ + "Shambala" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ksb" + }, + { + "Type": 1, + "SubTag": "ksc", + "Description": [ + "Southern Kalinga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ksc" + }, + { + "Type": 1, + "SubTag": "ksd", + "Description": [ + "Kuanua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ksd" + }, + { + "Type": 1, + "SubTag": "kse", + "Description": [ + "Kuni" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kse" + }, + { + "Type": 1, + "SubTag": "ksf", + "Description": [ + "Bafia" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ksf" + }, + { + "Type": 1, + "SubTag": "ksg", + "Description": [ + "Kusaghe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ksg" + }, + { + "Type": 1, + "SubTag": "ksh", + "Description": [ + "K\u00F6lsch" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ksh" + }, + { + "Type": 1, + "SubTag": "ksi", + "Description": [ + "Krisa", + "I\u0027saka" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ksi" + }, + { + "Type": 1, + "SubTag": "ksj", + "Description": [ + "Uare" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ksj" + }, + { + "Type": 1, + "SubTag": "ksk", + "Description": [ + "Kansa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ksk" + }, + { + "Type": 1, + "SubTag": "ksl", + "Description": [ + "Kumalu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ksl" + }, + { + "Type": 1, + "SubTag": "ksm", + "Description": [ + "Kumba" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ksm" + }, + { + "Type": 1, + "SubTag": "ksn", + "Description": [ + "Kasiguranin" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ksn" + }, + { + "Type": 1, + "SubTag": "kso", + "Description": [ + "Kofa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kso" + }, + { + "Type": 1, + "SubTag": "ksp", + "Description": [ + "Kaba" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ksp" + }, + { + "Type": 1, + "SubTag": "ksq", + "Description": [ + "Kwaami" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ksq" + }, + { + "Type": 1, + "SubTag": "ksr", + "Description": [ + "Borong" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ksr" + }, + { + "Type": 1, + "SubTag": "kss", + "Description": [ + "Southern Kisi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kss" + }, + { + "Type": 1, + "SubTag": "kst", + "Description": [ + "Winy\u00E9" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kst" + }, + { + "Type": 1, + "SubTag": "ksu", + "Description": [ + "Khamyang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ksu" + }, + { + "Type": 1, + "SubTag": "ksv", + "Description": [ + "Kusu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ksv" + }, + { + "Type": 1, + "SubTag": "ksw", + "Description": [ + "S\u0027gaw Karen" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ksw" + }, + { + "Type": 1, + "SubTag": "ksx", + "Description": [ + "Kedang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ksx" + }, + { + "Type": 1, + "SubTag": "ksy", + "Description": [ + "Kharia Thar" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ksy" + }, + { + "Type": 1, + "SubTag": "ksz", + "Description": [ + "Kodaku" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ksz" + }, + { + "Type": 1, + "SubTag": "kta", + "Description": [ + "Katua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kta" + }, + { + "Type": 1, + "SubTag": "ktb", + "Description": [ + "Kambaata" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ktb" + }, + { + "Type": 1, + "SubTag": "ktc", + "Description": [ + "Kholok" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ktc" + }, + { + "Type": 1, + "SubTag": "ktd", + "Description": [ + "Kokata", + "Kukatha" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ktd" + }, + { + "Type": 1, + "SubTag": "kte", + "Description": [ + "Nubri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kte" + }, + { + "Type": 1, + "SubTag": "ktf", + "Description": [ + "Kwami" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ktf" + }, + { + "Type": 1, + "SubTag": "ktg", + "Description": [ + "Kalkutung" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ktg" + }, + { + "Type": 1, + "SubTag": "kth", + "Description": [ + "Karanga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kth" + }, + { + "Type": 1, + "SubTag": "kti", + "Description": [ + "North Muyu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kti" + }, + { + "Type": 1, + "SubTag": "ktj", + "Description": [ + "Plapo Krumen" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ktj" + }, + { + "Type": 1, + "SubTag": "ktk", + "Description": [ + "Kaniet" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ktk" + }, + { + "Type": 1, + "SubTag": "ktl", + "Description": [ + "Koroshi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ktl" + }, + { + "Type": 1, + "SubTag": "ktm", + "Description": [ + "Kurti" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ktm" + }, + { + "Type": 1, + "SubTag": "ktn", + "Description": [ + "Kariti\u00E2na" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ktn" + }, + { + "Type": 1, + "SubTag": "kto", + "Description": [ + "Kuot" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kto" + }, + { + "Type": 1, + "SubTag": "ktp", + "Description": [ + "Kaduo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ktp" + }, + { + "Type": 1, + "SubTag": "ktq", + "Description": [ + "Katabaga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ktq" + }, + { + "Type": 1, + "SubTag": "ktr", + "Description": [ + "Kota Marudu Tinagas" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2016-05-30", + "Comments": [], + "Prefix": [], + "PreferredValue": "dtp", + "Tag": "", + "TagAny": "ktr" + }, + { + "Type": 1, + "SubTag": "kts", + "Description": [ + "South Muyu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kts" + }, + { + "Type": 1, + "SubTag": "ktt", + "Description": [ + "Ketum" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ktt" + }, + { + "Type": 1, + "SubTag": "ktu", + "Description": [ + "Kituba (Democratic Republic of Congo)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ktu" + }, + { + "Type": 1, + "SubTag": "ktv", + "Description": [ + "Eastern Katu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ktv" + }, + { + "Type": 1, + "SubTag": "ktw", + "Description": [ + "Kato" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ktw" + }, + { + "Type": 1, + "SubTag": "ktx", + "Description": [ + "Kaxarar\u00ED" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ktx" + }, + { + "Type": 1, + "SubTag": "kty", + "Description": [ + "Kango (Bas-U\u00E9l\u00E9 District)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kty" + }, + { + "Type": 1, + "SubTag": "ktz", + "Description": [ + "Ju\u01C0\u02BChoan", + "Ju\u01C0\u02BChoansi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ktz" + }, + { + "Type": 1, + "SubTag": "kub", + "Description": [ + "Kutep" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kub" + }, + { + "Type": 1, + "SubTag": "kuc", + "Description": [ + "Kwinsu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kuc" + }, + { + "Type": 1, + "SubTag": "kud", + "Description": [ + "\u0027Auhelawa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kud" + }, + { + "Type": 1, + "SubTag": "kue", + "Description": [ + "Kuman (Papua New Guinea)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kue" + }, + { + "Type": 1, + "SubTag": "kuf", + "Description": [ + "Western Katu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kuf" + }, + { + "Type": 1, + "SubTag": "kug", + "Description": [ + "Kupa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kug" + }, + { + "Type": 1, + "SubTag": "kuh", + "Description": [ + "Kushi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kuh" + }, + { + "Type": 1, + "SubTag": "kui", + "Description": [ + "Kuik\u00FAro-Kalap\u00E1lo", + "Kalapalo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kui" + }, + { + "Type": 1, + "SubTag": "kuj", + "Description": [ + "Kuria" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kuj" + }, + { + "Type": 1, + "SubTag": "kuk", + "Description": [ + "Kepo\u0027" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kuk" + }, + { + "Type": 1, + "SubTag": "kul", + "Description": [ + "Kulere" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kul" + }, + { + "Type": 1, + "SubTag": "kum", + "Description": [ + "Kumyk" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kum" + }, + { + "Type": 1, + "SubTag": "kun", + "Description": [ + "Kunama" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kun" + }, + { + "Type": 1, + "SubTag": "kuo", + "Description": [ + "Kumukio" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kuo" + }, + { + "Type": 1, + "SubTag": "kup", + "Description": [ + "Kunimaipa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kup" + }, + { + "Type": 1, + "SubTag": "kuq", + "Description": [ + "Karipuna" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kuq" + }, + { + "Type": 1, + "SubTag": "kus", + "Description": [ + "Kusaal" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kus" + }, + { + "Type": 1, + "SubTag": "kut", + "Description": [ + "Kutenai" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kut" + }, + { + "Type": 1, + "SubTag": "kuu", + "Description": [ + "Upper Kuskokwim" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kuu" + }, + { + "Type": 1, + "SubTag": "kuv", + "Description": [ + "Kur" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kuv" + }, + { + "Type": 1, + "SubTag": "kuw", + "Description": [ + "Kpagua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kuw" + }, + { + "Type": 1, + "SubTag": "kux", + "Description": [ + "Kukatja" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kux" + }, + { + "Type": 1, + "SubTag": "kuy", + "Description": [ + "Kuuku-Ya\u0027u" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kuy" + }, + { + "Type": 1, + "SubTag": "kuz", + "Description": [ + "Kunza" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kuz" + }, + { + "Type": 1, + "SubTag": "kva", + "Description": [ + "Bagvalal" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kva" + }, + { + "Type": 1, + "SubTag": "kvb", + "Description": [ + "Kubu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ms", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kvb" + }, + { + "Type": 1, + "SubTag": "kvc", + "Description": [ + "Kove" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kvc" + }, + { + "Type": 1, + "SubTag": "kvd", + "Description": [ + "Kui (Indonesia)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kvd" + }, + { + "Type": 1, + "SubTag": "kve", + "Description": [ + "Kalabakan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kve" + }, + { + "Type": 1, + "SubTag": "kvf", + "Description": [ + "Kabalai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kvf" + }, + { + "Type": 1, + "SubTag": "kvg", + "Description": [ + "Kuni-Boazi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kvg" + }, + { + "Type": 1, + "SubTag": "kvh", + "Description": [ + "Komodo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kvh" + }, + { + "Type": 1, + "SubTag": "kvi", + "Description": [ + "Kwang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kvi" + }, + { + "Type": 1, + "SubTag": "kvj", + "Description": [ + "Psikye" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kvj" + }, + { + "Type": 1, + "SubTag": "kvk", + "Description": [ + "Korean Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kvk" + }, + { + "Type": 1, + "SubTag": "kvl", + "Description": [ + "Kayaw" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kvl" + }, + { + "Type": 1, + "SubTag": "kvm", + "Description": [ + "Kendem" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kvm" + }, + { + "Type": 1, + "SubTag": "kvn", + "Description": [ + "Border Kuna" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kvn" + }, + { + "Type": 1, + "SubTag": "kvo", + "Description": [ + "Dobel" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kvo" + }, + { + "Type": 1, + "SubTag": "kvp", + "Description": [ + "Kompane" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kvp" + }, + { + "Type": 1, + "SubTag": "kvq", + "Description": [ + "Geba Karen" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kvq" + }, + { + "Type": 1, + "SubTag": "kvr", + "Description": [ + "Kerinci" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ms", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kvr" + }, + { + "Type": 1, + "SubTag": "kvs", + "Description": [ + "Kunggara" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2016-05-30", + "Comments": [], + "Prefix": [], + "PreferredValue": "gdj", + "Tag": "", + "TagAny": "kvs" + }, + { + "Type": 1, + "SubTag": "kvt", + "Description": [ + "Lahta Karen", + "Lahta" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kvt" + }, + { + "Type": 1, + "SubTag": "kvu", + "Description": [ + "Yinbaw Karen" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kvu" + }, + { + "Type": 1, + "SubTag": "kvv", + "Description": [ + "Kola" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kvv" + }, + { + "Type": 1, + "SubTag": "kvw", + "Description": [ + "Wersing" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kvw" + }, + { + "Type": 1, + "SubTag": "kvx", + "Description": [ + "Parkari Koli" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kvx" + }, + { + "Type": 1, + "SubTag": "kvy", + "Description": [ + "Yintale Karen", + "Yintale" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kvy" + }, + { + "Type": 1, + "SubTag": "kvz", + "Description": [ + "Tsakwambo", + "Tsaukambo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kvz" + }, + { + "Type": 1, + "SubTag": "kwa", + "Description": [ + "D\u00E2w" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kwa" + }, + { + "Type": 1, + "SubTag": "kwb", + "Description": [ + "Kwa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kwb" + }, + { + "Type": 1, + "SubTag": "kwc", + "Description": [ + "Likwala" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kwc" + }, + { + "Type": 1, + "SubTag": "kwd", + "Description": [ + "Kwaio" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kwd" + }, + { + "Type": 1, + "SubTag": "kwe", + "Description": [ + "Kwerba" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kwe" + }, + { + "Type": 1, + "SubTag": "kwf", + "Description": [ + "Kwara\u0027ae" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kwf" + }, + { + "Type": 1, + "SubTag": "kwg", + "Description": [ + "Sara Kaba Deme" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kwg" + }, + { + "Type": 1, + "SubTag": "kwh", + "Description": [ + "Kowiai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kwh" + }, + { + "Type": 1, + "SubTag": "kwi", + "Description": [ + "Awa-Cuaiquer" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kwi" + }, + { + "Type": 1, + "SubTag": "kwj", + "Description": [ + "Kwanga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kwj" + }, + { + "Type": 1, + "SubTag": "kwk", + "Description": [ + "Kwakiutl" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kwk" + }, + { + "Type": 1, + "SubTag": "kwl", + "Description": [ + "Kofyar" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kwl" + }, + { + "Type": 1, + "SubTag": "kwm", + "Description": [ + "Kwambi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kwm" + }, + { + "Type": 1, + "SubTag": "kwn", + "Description": [ + "Kwangali" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kwn" + }, + { + "Type": 1, + "SubTag": "kwo", + "Description": [ + "Kwomtari" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kwo" + }, + { + "Type": 1, + "SubTag": "kwp", + "Description": [ + "Kodia" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kwp" + }, + { + "Type": 1, + "SubTag": "kwq", + "Description": [ + "Kwak" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2015-02-12", + "Comments": [], + "Prefix": [], + "PreferredValue": "yam", + "Tag": "", + "TagAny": "kwq" + }, + { + "Type": 1, + "SubTag": "kwr", + "Description": [ + "Kwer" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kwr" + }, + { + "Type": 1, + "SubTag": "kws", + "Description": [ + "Kwese" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kws" + }, + { + "Type": 1, + "SubTag": "kwt", + "Description": [ + "Kwesten" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kwt" + }, + { + "Type": 1, + "SubTag": "kwu", + "Description": [ + "Kwakum" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kwu" + }, + { + "Type": 1, + "SubTag": "kwv", + "Description": [ + "Sara Kaba N\u00E1\u00E0" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kwv" + }, + { + "Type": 1, + "SubTag": "kww", + "Description": [ + "Kwinti" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kww" + }, + { + "Type": 1, + "SubTag": "kwx", + "Description": [ + "Khirwar" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kwx" + }, + { + "Type": 1, + "SubTag": "kwy", + "Description": [ + "San Salvador Kongo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "kg", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kwy" + }, + { + "Type": 1, + "SubTag": "kwz", + "Description": [ + "Kwadi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kwz" + }, + { + "Type": 1, + "SubTag": "kxa", + "Description": [ + "Kairiru" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kxa" + }, + { + "Type": 1, + "SubTag": "kxb", + "Description": [ + "Krobu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kxb" + }, + { + "Type": 1, + "SubTag": "kxc", + "Description": [ + "Konso", + "Khonso" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kxc" + }, + { + "Type": 1, + "SubTag": "kxd", + "Description": [ + "Brunei" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ms", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kxd" + }, + { + "Type": 1, + "SubTag": "kxe", + "Description": [ + "Kakihum" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2015-02-12", + "Comments": [], + "Prefix": [], + "PreferredValue": "tvd", + "Tag": "", + "TagAny": "kxe" + }, + { + "Type": 1, + "SubTag": "kxf", + "Description": [ + "Manumanaw Karen", + "Manumanaw" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kxf" + }, + { + "Type": 1, + "SubTag": "kxh", + "Description": [ + "Karo (Ethiopia)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kxh" + }, + { + "Type": 1, + "SubTag": "kxi", + "Description": [ + "Keningau Murut" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kxi" + }, + { + "Type": 1, + "SubTag": "kxj", + "Description": [ + "Kulfa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kxj" + }, + { + "Type": 1, + "SubTag": "kxk", + "Description": [ + "Zayein Karen" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kxk" + }, + { + "Type": 1, + "SubTag": "kxl", + "Description": [ + "Nepali Kurux" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2020-03-28", + "Comments": [], + "Prefix": [], + "PreferredValue": "kru", + "Tag": "", + "TagAny": "kxl" + }, + { + "Type": 1, + "SubTag": "kxm", + "Description": [ + "Northern Khmer" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kxm" + }, + { + "Type": 1, + "SubTag": "kxn", + "Description": [ + "Kanowit-Tanjong Melanau" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kxn" + }, + { + "Type": 1, + "SubTag": "kxo", + "Description": [ + "Kano\u00E9" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kxo" + }, + { + "Type": 1, + "SubTag": "kxp", + "Description": [ + "Wadiyara Koli" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kxp" + }, + { + "Type": 1, + "SubTag": "kxq", + "Description": [ + "Sm\u00E4rky Kanum" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kxq" + }, + { + "Type": 1, + "SubTag": "kxr", + "Description": [ + "Koro (Papua New Guinea)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kxr" + }, + { + "Type": 1, + "SubTag": "kxs", + "Description": [ + "Kangjia" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kxs" + }, + { + "Type": 1, + "SubTag": "kxt", + "Description": [ + "Koiwat" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kxt" + }, + { + "Type": 1, + "SubTag": "kxu", + "Description": [ + "Kui (India)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2020-03-28", + "Comments": [ + "see dwk, uki" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kxu" + }, + { + "Type": 1, + "SubTag": "kxv", + "Description": [ + "Kuvi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kxv" + }, + { + "Type": 1, + "SubTag": "kxw", + "Description": [ + "Konai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kxw" + }, + { + "Type": 1, + "SubTag": "kxx", + "Description": [ + "Likuba" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kxx" + }, + { + "Type": 1, + "SubTag": "kxy", + "Description": [ + "Kayong" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kxy" + }, + { + "Type": 1, + "SubTag": "kxz", + "Description": [ + "Kerewo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kxz" + }, + { + "Type": 1, + "SubTag": "kya", + "Description": [ + "Kwaya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kya" + }, + { + "Type": 1, + "SubTag": "kyb", + "Description": [ + "Butbut Kalinga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kyb" + }, + { + "Type": 1, + "SubTag": "kyc", + "Description": [ + "Kyaka" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kyc" + }, + { + "Type": 1, + "SubTag": "kyd", + "Description": [ + "Karey" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kyd" + }, + { + "Type": 1, + "SubTag": "kye", + "Description": [ + "Krache" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kye" + }, + { + "Type": 1, + "SubTag": "kyf", + "Description": [ + "Kouya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kyf" + }, + { + "Type": 1, + "SubTag": "kyg", + "Description": [ + "Keyagana" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kyg" + }, + { + "Type": 1, + "SubTag": "kyh", + "Description": [ + "Karok" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kyh" + }, + { + "Type": 1, + "SubTag": "kyi", + "Description": [ + "Kiput" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kyi" + }, + { + "Type": 1, + "SubTag": "kyj", + "Description": [ + "Karao" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kyj" + }, + { + "Type": 1, + "SubTag": "kyk", + "Description": [ + "Kamayo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kyk" + }, + { + "Type": 1, + "SubTag": "kyl", + "Description": [ + "Kalapuya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kyl" + }, + { + "Type": 1, + "SubTag": "kym", + "Description": [ + "Kpatili" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kym" + }, + { + "Type": 1, + "SubTag": "kyn", + "Description": [ + "Northern Binukidnon" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kyn" + }, + { + "Type": 1, + "SubTag": "kyo", + "Description": [ + "Kelon" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kyo" + }, + { + "Type": 1, + "SubTag": "kyp", + "Description": [ + "Kang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kyp" + }, + { + "Type": 1, + "SubTag": "kyq", + "Description": [ + "Kenga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kyq" + }, + { + "Type": 1, + "SubTag": "kyr", + "Description": [ + "Kuru\u00E1ya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kyr" + }, + { + "Type": 1, + "SubTag": "kys", + "Description": [ + "Baram Kayan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kys" + }, + { + "Type": 1, + "SubTag": "kyt", + "Description": [ + "Kayagar" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kyt" + }, + { + "Type": 1, + "SubTag": "kyu", + "Description": [ + "Western Kayah" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kyu" + }, + { + "Type": 1, + "SubTag": "kyv", + "Description": [ + "Kayort" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kyv" + }, + { + "Type": 1, + "SubTag": "kyw", + "Description": [ + "Kudmali" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kyw" + }, + { + "Type": 1, + "SubTag": "kyx", + "Description": [ + "Rapoisi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kyx" + }, + { + "Type": 1, + "SubTag": "kyy", + "Description": [ + "Kambaira" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kyy" + }, + { + "Type": 1, + "SubTag": "kyz", + "Description": [ + "Kayab\u00ED" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kyz" + }, + { + "Type": 1, + "SubTag": "kza", + "Description": [ + "Western Karaboro" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kza" + }, + { + "Type": 1, + "SubTag": "kzb", + "Description": [ + "Kaibobo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kzb" + }, + { + "Type": 1, + "SubTag": "kzc", + "Description": [ + "Bondoukou Kulango" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kzc" + }, + { + "Type": 1, + "SubTag": "kzd", + "Description": [ + "Kadai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kzd" + }, + { + "Type": 1, + "SubTag": "kze", + "Description": [ + "Kosena" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kze" + }, + { + "Type": 1, + "SubTag": "kzf", + "Description": [ + "Da\u0027a Kaili" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kzf" + }, + { + "Type": 1, + "SubTag": "kzg", + "Description": [ + "Kikai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kzg" + }, + { + "Type": 1, + "SubTag": "kzh", + "Description": [ + "Kenuzi-Dongola" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2012-08-12", + "Comments": [ + "see dgl, xnz" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kzh" + }, + { + "Type": 1, + "SubTag": "kzi", + "Description": [ + "Kelabit" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kzi" + }, + { + "Type": 1, + "SubTag": "kzj", + "Description": [ + "Coastal Kadazan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2016-05-30", + "Comments": [], + "Prefix": [], + "PreferredValue": "dtp", + "Tag": "", + "TagAny": "kzj" + }, + { + "Type": 1, + "SubTag": "kzk", + "Description": [ + "Kazukuru" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kzk" + }, + { + "Type": 1, + "SubTag": "kzl", + "Description": [ + "Kayeli" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kzl" + }, + { + "Type": 1, + "SubTag": "kzm", + "Description": [ + "Kais" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kzm" + }, + { + "Type": 1, + "SubTag": "kzn", + "Description": [ + "Kokola" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kzn" + }, + { + "Type": 1, + "SubTag": "kzo", + "Description": [ + "Kaningi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kzo" + }, + { + "Type": 1, + "SubTag": "kzp", + "Description": [ + "Kaidipang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kzp" + }, + { + "Type": 1, + "SubTag": "kzq", + "Description": [ + "Kaike" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kzq" + }, + { + "Type": 1, + "SubTag": "kzr", + "Description": [ + "Karang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kzr" + }, + { + "Type": 1, + "SubTag": "kzs", + "Description": [ + "Sugut Dusun" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kzs" + }, + { + "Type": 1, + "SubTag": "kzt", + "Description": [ + "Tambunan Dusun" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2016-05-30", + "Comments": [], + "Prefix": [], + "PreferredValue": "dtp", + "Tag": "", + "TagAny": "kzt" + }, + { + "Type": 1, + "SubTag": "kzu", + "Description": [ + "Kayupulau" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kzu" + }, + { + "Type": 1, + "SubTag": "kzv", + "Description": [ + "Komyandaret" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kzv" + }, + { + "Type": 1, + "SubTag": "kzw", + "Description": [ + "Karir\u00ED-Xoc\u00F3" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kzw" + }, + { + "Type": 1, + "SubTag": "kzx", + "Description": [ + "Kamarian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kzx" + }, + { + "Type": 1, + "SubTag": "kzy", + "Description": [ + "Kango (Tshopo District)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kzy" + }, + { + "Type": 1, + "SubTag": "kzz", + "Description": [ + "Kalabra" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "kzz" + }, + { + "Type": 1, + "SubTag": "laa", + "Description": [ + "Southern Subanen" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "laa" + }, + { + "Type": 1, + "SubTag": "lab", + "Description": [ + "Linear A" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lab" + }, + { + "Type": 1, + "SubTag": "lac", + "Description": [ + "Lacandon" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lac" + }, + { + "Type": 1, + "SubTag": "lad", + "Description": [ + "Ladino" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lad" + }, + { + "Type": 1, + "SubTag": "lae", + "Description": [ + "Pattani" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lae" + }, + { + "Type": 1, + "SubTag": "laf", + "Description": [ + "Lafofa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "laf" + }, + { + "Type": 1, + "SubTag": "lag", + "Description": [ + "Rangi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lag" + }, + { + "Type": 1, + "SubTag": "lah", + "Description": [ + "Lahnda" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "macrolanguage", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lah" + }, + { + "Type": 1, + "SubTag": "lai", + "Description": [ + "Lambya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lai" + }, + { + "Type": 1, + "SubTag": "laj", + "Description": [ + "Lango (Uganda)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "laj" + }, + { + "Type": 1, + "SubTag": "lak", + "Description": [ + "Laka (Nigeria)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2022-02-25", + "Comments": [], + "Prefix": [], + "PreferredValue": "ksp", + "Tag": "", + "TagAny": "lak" + }, + { + "Type": 1, + "SubTag": "lal", + "Description": [ + "Lalia" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lal" + }, + { + "Type": 1, + "SubTag": "lam", + "Description": [ + "Lamba" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lam" + }, + { + "Type": 1, + "SubTag": "lan", + "Description": [ + "Laru" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lan" + }, + { + "Type": 1, + "SubTag": "lap", + "Description": [ + "Laka (Chad)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lap" + }, + { + "Type": 1, + "SubTag": "laq", + "Description": [ + "Qabiao" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "laq" + }, + { + "Type": 1, + "SubTag": "lar", + "Description": [ + "Larteh" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lar" + }, + { + "Type": 1, + "SubTag": "las", + "Description": [ + "Lama (Togo)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "las" + }, + { + "Type": 1, + "SubTag": "lau", + "Description": [ + "Laba" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lau" + }, + { + "Type": 1, + "SubTag": "law", + "Description": [ + "Lauje" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "law" + }, + { + "Type": 1, + "SubTag": "lax", + "Description": [ + "Tiwa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lax" + }, + { + "Type": 1, + "SubTag": "lay", + "Description": [ + "Lama Bai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lay" + }, + { + "Type": 1, + "SubTag": "laz", + "Description": [ + "Aribwatsa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "laz" + }, + { + "Type": 1, + "SubTag": "lba", + "Description": [ + "Lui" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2019-04-16", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lba" + }, + { + "Type": 1, + "SubTag": "lbb", + "Description": [ + "Label" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lbb" + }, + { + "Type": 1, + "SubTag": "lbc", + "Description": [ + "Lakkia" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lbc" + }, + { + "Type": 1, + "SubTag": "lbe", + "Description": [ + "Lak" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lbe" + }, + { + "Type": 1, + "SubTag": "lbf", + "Description": [ + "Tinani" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lbf" + }, + { + "Type": 1, + "SubTag": "lbg", + "Description": [ + "Laopang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lbg" + }, + { + "Type": 1, + "SubTag": "lbi", + "Description": [ + "La\u0027bi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lbi" + }, + { + "Type": 1, + "SubTag": "lbj", + "Description": [ + "Ladakhi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lbj" + }, + { + "Type": 1, + "SubTag": "lbk", + "Description": [ + "Central Bontok" + ], + "Added": "2010-03-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "bnc", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lbk" + }, + { + "Type": 1, + "SubTag": "lbl", + "Description": [ + "Libon Bikol" + ], + "Added": "2010-03-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "bik", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lbl" + }, + { + "Type": 1, + "SubTag": "lbm", + "Description": [ + "Lodhi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lbm" + }, + { + "Type": 1, + "SubTag": "lbn", + "Description": [ + "Rmeet" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lbn" + }, + { + "Type": 1, + "SubTag": "lbo", + "Description": [ + "Laven" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lbo" + }, + { + "Type": 1, + "SubTag": "lbq", + "Description": [ + "Wampar" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lbq" + }, + { + "Type": 1, + "SubTag": "lbr", + "Description": [ + "Lohorung" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lbr" + }, + { + "Type": 1, + "SubTag": "lbs", + "Description": [ + "Libyan Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lbs" + }, + { + "Type": 1, + "SubTag": "lbt", + "Description": [ + "Lachi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lbt" + }, + { + "Type": 1, + "SubTag": "lbu", + "Description": [ + "Labu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lbu" + }, + { + "Type": 1, + "SubTag": "lbv", + "Description": [ + "Lavatbura-Lamusong" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lbv" + }, + { + "Type": 1, + "SubTag": "lbw", + "Description": [ + "Tolaki" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lbw" + }, + { + "Type": 1, + "SubTag": "lbx", + "Description": [ + "Lawangan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lbx" + }, + { + "Type": 1, + "SubTag": "lby", + "Description": [ + "Lamalama", + "Lamu-Lamu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lby" + }, + { + "Type": 1, + "SubTag": "lbz", + "Description": [ + "Lardil" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lbz" + }, + { + "Type": 1, + "SubTag": "lcc", + "Description": [ + "Legenyem" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lcc" + }, + { + "Type": 1, + "SubTag": "lcd", + "Description": [ + "Lola" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lcd" + }, + { + "Type": 1, + "SubTag": "lce", + "Description": [ + "Loncong", + "Sekak" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ms", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lce" + }, + { + "Type": 1, + "SubTag": "lcf", + "Description": [ + "Lubu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ms", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lcf" + }, + { + "Type": 1, + "SubTag": "lch", + "Description": [ + "Luchazi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lch" + }, + { + "Type": 1, + "SubTag": "lcl", + "Description": [ + "Lisela" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lcl" + }, + { + "Type": 1, + "SubTag": "lcm", + "Description": [ + "Tungag" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lcm" + }, + { + "Type": 1, + "SubTag": "lcp", + "Description": [ + "Western Lawa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lcp" + }, + { + "Type": 1, + "SubTag": "lcq", + "Description": [ + "Luhu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lcq" + }, + { + "Type": 1, + "SubTag": "lcs", + "Description": [ + "Lisabata-Nuniali" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lcs" + }, + { + "Type": 1, + "SubTag": "lda", + "Description": [ + "Kla-Dan" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lda" + }, + { + "Type": 1, + "SubTag": "ldb", + "Description": [ + "D\u0169ya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ldb" + }, + { + "Type": 1, + "SubTag": "ldd", + "Description": [ + "Luri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ldd" + }, + { + "Type": 1, + "SubTag": "ldg", + "Description": [ + "Lenyima" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ldg" + }, + { + "Type": 1, + "SubTag": "ldh", + "Description": [ + "Lamja-Dengsa-Tola" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ldh" + }, + { + "Type": 1, + "SubTag": "ldi", + "Description": [ + "Laari" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "kg", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ldi" + }, + { + "Type": 1, + "SubTag": "ldj", + "Description": [ + "Lemoro" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ldj" + }, + { + "Type": 1, + "SubTag": "ldk", + "Description": [ + "Leelau" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ldk" + }, + { + "Type": 1, + "SubTag": "ldl", + "Description": [ + "Kaan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ldl" + }, + { + "Type": 1, + "SubTag": "ldm", + "Description": [ + "Landoma" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ldm" + }, + { + "Type": 1, + "SubTag": "ldn", + "Description": [ + "L\u00E1adan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ldn" + }, + { + "Type": 1, + "SubTag": "ldo", + "Description": [ + "Loo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ldo" + }, + { + "Type": 1, + "SubTag": "ldp", + "Description": [ + "Tso" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ldp" + }, + { + "Type": 1, + "SubTag": "ldq", + "Description": [ + "Lufu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ldq" + }, + { + "Type": 1, + "SubTag": "lea", + "Description": [ + "Lega-Shabunda" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lea" + }, + { + "Type": 1, + "SubTag": "leb", + "Description": [ + "Lala-Bisa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "leb" + }, + { + "Type": 1, + "SubTag": "lec", + "Description": [ + "Leco" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lec" + }, + { + "Type": 1, + "SubTag": "led", + "Description": [ + "Lendu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "led" + }, + { + "Type": 1, + "SubTag": "lee", + "Description": [ + "Ly\u00E9l\u00E9" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lee" + }, + { + "Type": 1, + "SubTag": "lef", + "Description": [ + "Lelemi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lef" + }, + { + "Type": 1, + "SubTag": "leg", + "Description": [ + "Lengua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2014-02-28", + "Comments": [ + "see enl, enx" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "leg" + }, + { + "Type": 1, + "SubTag": "leh", + "Description": [ + "Lenje" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "leh" + }, + { + "Type": 1, + "SubTag": "lei", + "Description": [ + "Lemio" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lei" + }, + { + "Type": 1, + "SubTag": "lej", + "Description": [ + "Lengola" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lej" + }, + { + "Type": 1, + "SubTag": "lek", + "Description": [ + "Leipon" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lek" + }, + { + "Type": 1, + "SubTag": "lel", + "Description": [ + "Lele (Democratic Republic of Congo)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lel" + }, + { + "Type": 1, + "SubTag": "lem", + "Description": [ + "Nomaande" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lem" + }, + { + "Type": 1, + "SubTag": "len", + "Description": [ + "Lenca" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "len" + }, + { + "Type": 1, + "SubTag": "leo", + "Description": [ + "Leti (Cameroon)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "leo" + }, + { + "Type": 1, + "SubTag": "lep", + "Description": [ + "Lepcha" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lep" + }, + { + "Type": 1, + "SubTag": "leq", + "Description": [ + "Lembena" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "leq" + }, + { + "Type": 1, + "SubTag": "ler", + "Description": [ + "Lenkau" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ler" + }, + { + "Type": 1, + "SubTag": "les", + "Description": [ + "Lese" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "les" + }, + { + "Type": 1, + "SubTag": "let", + "Description": [ + "Lesing-Gelimi", + "Amio-Gelimi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "let" + }, + { + "Type": 1, + "SubTag": "leu", + "Description": [ + "Kara (Papua New Guinea)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "leu" + }, + { + "Type": 1, + "SubTag": "lev", + "Description": [ + "Lamma" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lev" + }, + { + "Type": 1, + "SubTag": "lew", + "Description": [ + "Ledo Kaili" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lew" + }, + { + "Type": 1, + "SubTag": "lex", + "Description": [ + "Luang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lex" + }, + { + "Type": 1, + "SubTag": "ley", + "Description": [ + "Lemolang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ley" + }, + { + "Type": 1, + "SubTag": "lez", + "Description": [ + "Lezghian" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lez" + }, + { + "Type": 1, + "SubTag": "lfa", + "Description": [ + "Lefa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lfa" + }, + { + "Type": 1, + "SubTag": "lfn", + "Description": [ + "Lingua Franca Nova" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lfn" + }, + { + "Type": 1, + "SubTag": "lga", + "Description": [ + "Lungga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lga" + }, + { + "Type": 1, + "SubTag": "lgb", + "Description": [ + "Laghu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lgb" + }, + { + "Type": 1, + "SubTag": "lgg", + "Description": [ + "Lugbara" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lgg" + }, + { + "Type": 1, + "SubTag": "lgh", + "Description": [ + "Laghuu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lgh" + }, + { + "Type": 1, + "SubTag": "lgi", + "Description": [ + "Lengilu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lgi" + }, + { + "Type": 1, + "SubTag": "lgk", + "Description": [ + "Lingarak", + "Neverver" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lgk" + }, + { + "Type": 1, + "SubTag": "lgl", + "Description": [ + "Wala" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lgl" + }, + { + "Type": 1, + "SubTag": "lgm", + "Description": [ + "Lega-Mwenga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lgm" + }, + { + "Type": 1, + "SubTag": "lgn", + "Description": [ + "T\u0027apo", + "Opuuo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lgn" + }, + { + "Type": 1, + "SubTag": "lgo", + "Description": [ + "Lango (South Sudan)" + ], + "Added": "2022-02-25", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lgo" + }, + { + "Type": 1, + "SubTag": "lgq", + "Description": [ + "Logba" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lgq" + }, + { + "Type": 1, + "SubTag": "lgr", + "Description": [ + "Lengo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lgr" + }, + { + "Type": 1, + "SubTag": "lgs", + "Description": [ + "Guinea-Bissau Sign Language", + "L\u00EDngua Gestual Guineense" + ], + "Added": "2023-03-17", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lgs" + }, + { + "Type": 1, + "SubTag": "lgt", + "Description": [ + "Pahi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lgt" + }, + { + "Type": 1, + "SubTag": "lgu", + "Description": [ + "Longgu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lgu" + }, + { + "Type": 1, + "SubTag": "lgz", + "Description": [ + "Ligenza" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lgz" + }, + { + "Type": 1, + "SubTag": "lha", + "Description": [ + "Laha (Viet Nam)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lha" + }, + { + "Type": 1, + "SubTag": "lhh", + "Description": [ + "Laha (Indonesia)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lhh" + }, + { + "Type": 1, + "SubTag": "lhi", + "Description": [ + "Lahu Shi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lhi" + }, + { + "Type": 1, + "SubTag": "lhl", + "Description": [ + "Lahul Lohar" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lhl" + }, + { + "Type": 1, + "SubTag": "lhm", + "Description": [ + "Lhomi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lhm" + }, + { + "Type": 1, + "SubTag": "lhn", + "Description": [ + "Lahanan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lhn" + }, + { + "Type": 1, + "SubTag": "lhp", + "Description": [ + "Lhokpu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lhp" + }, + { + "Type": 1, + "SubTag": "lhs", + "Description": [ + "Mlahs\u00F6" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lhs" + }, + { + "Type": 1, + "SubTag": "lht", + "Description": [ + "Lo-Toga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lht" + }, + { + "Type": 1, + "SubTag": "lhu", + "Description": [ + "Lahu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lhu" + }, + { + "Type": 1, + "SubTag": "lia", + "Description": [ + "West-Central Limba" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lia" + }, + { + "Type": 1, + "SubTag": "lib", + "Description": [ + "Likum" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lib" + }, + { + "Type": 1, + "SubTag": "lic", + "Description": [ + "Hlai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lic" + }, + { + "Type": 1, + "SubTag": "lid", + "Description": [ + "Nyindrou" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lid" + }, + { + "Type": 1, + "SubTag": "lie", + "Description": [ + "Likila" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lie" + }, + { + "Type": 1, + "SubTag": "lif", + "Description": [ + "Limbu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lif" + }, + { + "Type": 1, + "SubTag": "lig", + "Description": [ + "Ligbi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lig" + }, + { + "Type": 1, + "SubTag": "lih", + "Description": [ + "Lihir" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lih" + }, + { + "Type": 1, + "SubTag": "lii", + "Description": [ + "Lingkhim" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2015-02-12", + "Comments": [], + "Prefix": [], + "PreferredValue": "raq", + "Tag": "", + "TagAny": "lii" + }, + { + "Type": 1, + "SubTag": "lij", + "Description": [ + "Ligurian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lij" + }, + { + "Type": 1, + "SubTag": "lik", + "Description": [ + "Lika" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lik" + }, + { + "Type": 1, + "SubTag": "lil", + "Description": [ + "Lillooet" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lil" + }, + { + "Type": 1, + "SubTag": "lio", + "Description": [ + "Liki" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lio" + }, + { + "Type": 1, + "SubTag": "lip", + "Description": [ + "Sekpele" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lip" + }, + { + "Type": 1, + "SubTag": "liq", + "Description": [ + "Libido" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "liq" + }, + { + "Type": 1, + "SubTag": "lir", + "Description": [ + "Liberian English" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lir" + }, + { + "Type": 1, + "SubTag": "lis", + "Description": [ + "Lisu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lis" + }, + { + "Type": 1, + "SubTag": "liu", + "Description": [ + "Logorik" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "liu" + }, + { + "Type": 1, + "SubTag": "liv", + "Description": [ + "Liv" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "liv" + }, + { + "Type": 1, + "SubTag": "liw", + "Description": [ + "Col" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ms", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "liw" + }, + { + "Type": 1, + "SubTag": "lix", + "Description": [ + "Liabuku" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lix" + }, + { + "Type": 1, + "SubTag": "liy", + "Description": [ + "Banda-Bambari" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "liy" + }, + { + "Type": 1, + "SubTag": "liz", + "Description": [ + "Libinza" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "liz" + }, + { + "Type": 1, + "SubTag": "lja", + "Description": [ + "Golpa" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lja" + }, + { + "Type": 1, + "SubTag": "lje", + "Description": [ + "Rampi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lje" + }, + { + "Type": 1, + "SubTag": "lji", + "Description": [ + "Laiyolo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lji" + }, + { + "Type": 1, + "SubTag": "ljl", + "Description": [ + "Li\u0027o" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ljl" + }, + { + "Type": 1, + "SubTag": "ljp", + "Description": [ + "Lampung Api" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ljp" + }, + { + "Type": 1, + "SubTag": "ljw", + "Description": [ + "Yirandali" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ljw" + }, + { + "Type": 1, + "SubTag": "ljx", + "Description": [ + "Yuru" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ljx" + }, + { + "Type": 1, + "SubTag": "lka", + "Description": [ + "Lakalei" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lka" + }, + { + "Type": 1, + "SubTag": "lkb", + "Description": [ + "Kabras", + "Lukabaras" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "luy", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lkb" + }, + { + "Type": 1, + "SubTag": "lkc", + "Description": [ + "Kucong" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lkc" + }, + { + "Type": 1, + "SubTag": "lkd", + "Description": [ + "Lakond\u00EA" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lkd" + }, + { + "Type": 1, + "SubTag": "lke", + "Description": [ + "Kenyi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lke" + }, + { + "Type": 1, + "SubTag": "lkh", + "Description": [ + "Lakha" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lkh" + }, + { + "Type": 1, + "SubTag": "lki", + "Description": [ + "Laki" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lki" + }, + { + "Type": 1, + "SubTag": "lkj", + "Description": [ + "Remun" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lkj" + }, + { + "Type": 1, + "SubTag": "lkl", + "Description": [ + "Laeko-Libuat" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lkl" + }, + { + "Type": 1, + "SubTag": "lkm", + "Description": [ + "Kalaamaya" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lkm" + }, + { + "Type": 1, + "SubTag": "lkn", + "Description": [ + "Lakon", + "Vure" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lkn" + }, + { + "Type": 1, + "SubTag": "lko", + "Description": [ + "Khayo", + "Olukhayo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "luy", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lko" + }, + { + "Type": 1, + "SubTag": "lkr", + "Description": [ + "P\u00E4ri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lkr" + }, + { + "Type": 1, + "SubTag": "lks", + "Description": [ + "Kisa", + "Olushisa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "luy", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lks" + }, + { + "Type": 1, + "SubTag": "lkt", + "Description": [ + "Lakota" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lkt" + }, + { + "Type": 1, + "SubTag": "lku", + "Description": [ + "Kungkari" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lku" + }, + { + "Type": 1, + "SubTag": "lky", + "Description": [ + "Lokoya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lky" + }, + { + "Type": 1, + "SubTag": "lla", + "Description": [ + "Lala-Roba" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lla" + }, + { + "Type": 1, + "SubTag": "llb", + "Description": [ + "Lolo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "llb" + }, + { + "Type": 1, + "SubTag": "llc", + "Description": [ + "Lele (Guinea)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "llc" + }, + { + "Type": 1, + "SubTag": "lld", + "Description": [ + "Ladin" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lld" + }, + { + "Type": 1, + "SubTag": "lle", + "Description": [ + "Lele (Papua New Guinea)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lle" + }, + { + "Type": 1, + "SubTag": "llf", + "Description": [ + "Hermit" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "llf" + }, + { + "Type": 1, + "SubTag": "llg", + "Description": [ + "Lole" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "llg" + }, + { + "Type": 1, + "SubTag": "llh", + "Description": [ + "Lamu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "llh" + }, + { + "Type": 1, + "SubTag": "lli", + "Description": [ + "Teke-Laali" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lli" + }, + { + "Type": 1, + "SubTag": "llj", + "Description": [ + "Ladji Ladji" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "llj" + }, + { + "Type": 1, + "SubTag": "llk", + "Description": [ + "Lelak" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "llk" + }, + { + "Type": 1, + "SubTag": "lll", + "Description": [ + "Lilau" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lll" + }, + { + "Type": 1, + "SubTag": "llm", + "Description": [ + "Lasalimu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "llm" + }, + { + "Type": 1, + "SubTag": "lln", + "Description": [ + "Lele (Chad)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lln" + }, + { + "Type": 1, + "SubTag": "llo", + "Description": [ + "Khlor" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2019-04-16", + "Comments": [], + "Prefix": [], + "PreferredValue": "ngt", + "Tag": "", + "TagAny": "llo" + }, + { + "Type": 1, + "SubTag": "llp", + "Description": [ + "North Efate" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "llp" + }, + { + "Type": 1, + "SubTag": "llq", + "Description": [ + "Lolak" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "llq" + }, + { + "Type": 1, + "SubTag": "lls", + "Description": [ + "Lithuanian Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lls" + }, + { + "Type": 1, + "SubTag": "llu", + "Description": [ + "Lau" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "llu" + }, + { + "Type": 1, + "SubTag": "llx", + "Description": [ + "Lauan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "llx" + }, + { + "Type": 1, + "SubTag": "lma", + "Description": [ + "East Limba" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lma" + }, + { + "Type": 1, + "SubTag": "lmb", + "Description": [ + "Merei" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lmb" + }, + { + "Type": 1, + "SubTag": "lmc", + "Description": [ + "Limilngan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lmc" + }, + { + "Type": 1, + "SubTag": "lmd", + "Description": [ + "Lumun" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lmd" + }, + { + "Type": 1, + "SubTag": "lme", + "Description": [ + "P\u00E9v\u00E9" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lme" + }, + { + "Type": 1, + "SubTag": "lmf", + "Description": [ + "South Lembata" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lmf" + }, + { + "Type": 1, + "SubTag": "lmg", + "Description": [ + "Lamogai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lmg" + }, + { + "Type": 1, + "SubTag": "lmh", + "Description": [ + "Lambichhong" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lmh" + }, + { + "Type": 1, + "SubTag": "lmi", + "Description": [ + "Lombi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lmi" + }, + { + "Type": 1, + "SubTag": "lmj", + "Description": [ + "West Lembata" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lmj" + }, + { + "Type": 1, + "SubTag": "lmk", + "Description": [ + "Lamkang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lmk" + }, + { + "Type": 1, + "SubTag": "lml", + "Description": [ + "Hano" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lml" + }, + { + "Type": 1, + "SubTag": "lmm", + "Description": [ + "Lamam" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2014-02-28", + "Comments": [], + "Prefix": [], + "PreferredValue": "rmx", + "Tag": "", + "TagAny": "lmm" + }, + { + "Type": 1, + "SubTag": "lmn", + "Description": [ + "Lambadi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lmn" + }, + { + "Type": 1, + "SubTag": "lmo", + "Description": [ + "Lombard" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lmo" + }, + { + "Type": 1, + "SubTag": "lmp", + "Description": [ + "Limbum" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lmp" + }, + { + "Type": 1, + "SubTag": "lmq", + "Description": [ + "Lamatuka" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lmq" + }, + { + "Type": 1, + "SubTag": "lmr", + "Description": [ + "Lamalera" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lmr" + }, + { + "Type": 1, + "SubTag": "lmu", + "Description": [ + "Lamenu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lmu" + }, + { + "Type": 1, + "SubTag": "lmv", + "Description": [ + "Lomaiviti" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lmv" + }, + { + "Type": 1, + "SubTag": "lmw", + "Description": [ + "Lake Miwok" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lmw" + }, + { + "Type": 1, + "SubTag": "lmx", + "Description": [ + "Laimbue" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lmx" + }, + { + "Type": 1, + "SubTag": "lmy", + "Description": [ + "Lamboya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lmy" + }, + { + "Type": 1, + "SubTag": "lmz", + "Description": [ + "Lumbee" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2020-03-28", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lmz" + }, + { + "Type": 1, + "SubTag": "lna", + "Description": [ + "Langbashe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lna" + }, + { + "Type": 1, + "SubTag": "lnb", + "Description": [ + "Mbalanhu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lnb" + }, + { + "Type": 1, + "SubTag": "lnd", + "Description": [ + "Lundayeh", + "Lun Bawang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lnd" + }, + { + "Type": 1, + "SubTag": "lng", + "Description": [ + "Langobardic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lng" + }, + { + "Type": 1, + "SubTag": "lnh", + "Description": [ + "Lanoh" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lnh" + }, + { + "Type": 1, + "SubTag": "lni", + "Description": [ + "Daantanai\u0027" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lni" + }, + { + "Type": 1, + "SubTag": "lnj", + "Description": [ + "Leningitij" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lnj" + }, + { + "Type": 1, + "SubTag": "lnl", + "Description": [ + "South Central Banda" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lnl" + }, + { + "Type": 1, + "SubTag": "lnm", + "Description": [ + "Langam" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lnm" + }, + { + "Type": 1, + "SubTag": "lnn", + "Description": [ + "Lorediakarkar" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lnn" + }, + { + "Type": 1, + "SubTag": "lno", + "Description": [ + "Lango (South Sudan)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2022-02-25", + "Comments": [ + "see imt, lgo, lqr, oie" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lno" + }, + { + "Type": 1, + "SubTag": "lns", + "Description": [ + "Lamnso\u0027" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lns" + }, + { + "Type": 1, + "SubTag": "lnu", + "Description": [ + "Longuda" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lnu" + }, + { + "Type": 1, + "SubTag": "lnw", + "Description": [ + "Lanima" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lnw" + }, + { + "Type": 1, + "SubTag": "lnz", + "Description": [ + "Lonzo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lnz" + }, + { + "Type": 1, + "SubTag": "loa", + "Description": [ + "Loloda" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "loa" + }, + { + "Type": 1, + "SubTag": "lob", + "Description": [ + "Lobi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lob" + }, + { + "Type": 1, + "SubTag": "loc", + "Description": [ + "Inonhan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "loc" + }, + { + "Type": 1, + "SubTag": "loe", + "Description": [ + "Saluan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "loe" + }, + { + "Type": 1, + "SubTag": "lof", + "Description": [ + "Logol" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lof" + }, + { + "Type": 1, + "SubTag": "log", + "Description": [ + "Logo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "log" + }, + { + "Type": 1, + "SubTag": "loh", + "Description": [ + "Laarim", + "Narim" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "loh" + }, + { + "Type": 1, + "SubTag": "loi", + "Description": [ + "Loma (C\u00F4te d\u0027Ivoire)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "loi" + }, + { + "Type": 1, + "SubTag": "loj", + "Description": [ + "Lou" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "loj" + }, + { + "Type": 1, + "SubTag": "lok", + "Description": [ + "Loko" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lok" + }, + { + "Type": 1, + "SubTag": "lol", + "Description": [ + "Mongo" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lol" + }, + { + "Type": 1, + "SubTag": "lom", + "Description": [ + "Loma (Liberia)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lom" + }, + { + "Type": 1, + "SubTag": "lon", + "Description": [ + "Malawi Lomwe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lon" + }, + { + "Type": 1, + "SubTag": "loo", + "Description": [ + "Lombo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "loo" + }, + { + "Type": 1, + "SubTag": "lop", + "Description": [ + "Lopa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lop" + }, + { + "Type": 1, + "SubTag": "loq", + "Description": [ + "Lobala" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "loq" + }, + { + "Type": 1, + "SubTag": "lor", + "Description": [ + "T\u00E9\u00E9n" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lor" + }, + { + "Type": 1, + "SubTag": "los", + "Description": [ + "Loniu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "los" + }, + { + "Type": 1, + "SubTag": "lot", + "Description": [ + "Otuho" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lot" + }, + { + "Type": 1, + "SubTag": "lou", + "Description": [ + "Louisiana Creole" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lou" + }, + { + "Type": 1, + "SubTag": "lov", + "Description": [ + "Lopi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lov" + }, + { + "Type": 1, + "SubTag": "low", + "Description": [ + "Tampias Lobu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "low" + }, + { + "Type": 1, + "SubTag": "lox", + "Description": [ + "Loun" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lox" + }, + { + "Type": 1, + "SubTag": "loy", + "Description": [ + "Loke" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "loy" + }, + { + "Type": 1, + "SubTag": "loz", + "Description": [ + "Lozi" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "loz" + }, + { + "Type": 1, + "SubTag": "lpa", + "Description": [ + "Lelepa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lpa" + }, + { + "Type": 1, + "SubTag": "lpe", + "Description": [ + "Lepki" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lpe" + }, + { + "Type": 1, + "SubTag": "lpn", + "Description": [ + "Long Phuri Naga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lpn" + }, + { + "Type": 1, + "SubTag": "lpo", + "Description": [ + "Lipo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lpo" + }, + { + "Type": 1, + "SubTag": "lpx", + "Description": [ + "Lopit" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lpx" + }, + { + "Type": 1, + "SubTag": "lqr", + "Description": [ + "Logir" + ], + "Added": "2022-02-25", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lqr" + }, + { + "Type": 1, + "SubTag": "lra", + "Description": [ + "Rara Bakati\u0027" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lra" + }, + { + "Type": 1, + "SubTag": "lrc", + "Description": [ + "Northern Luri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lrc" + }, + { + "Type": 1, + "SubTag": "lre", + "Description": [ + "Laurentian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lre" + }, + { + "Type": 1, + "SubTag": "lrg", + "Description": [ + "Laragia" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lrg" + }, + { + "Type": 1, + "SubTag": "lri", + "Description": [ + "Marachi", + "Olumarachi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "luy", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lri" + }, + { + "Type": 1, + "SubTag": "lrk", + "Description": [ + "Loarki" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lrk" + }, + { + "Type": 1, + "SubTag": "lrl", + "Description": [ + "Lari" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lrl" + }, + { + "Type": 1, + "SubTag": "lrm", + "Description": [ + "Marama", + "Olumarama" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "luy", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lrm" + }, + { + "Type": 1, + "SubTag": "lrn", + "Description": [ + "Lorang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lrn" + }, + { + "Type": 1, + "SubTag": "lro", + "Description": [ + "Laro" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lro" + }, + { + "Type": 1, + "SubTag": "lrr", + "Description": [ + "Southern Yamphu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lrr" + }, + { + "Type": 1, + "SubTag": "lrt", + "Description": [ + "Larantuka Malay" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lrt" + }, + { + "Type": 1, + "SubTag": "lrv", + "Description": [ + "Larevat" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lrv" + }, + { + "Type": 1, + "SubTag": "lrz", + "Description": [ + "Lemerig" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lrz" + }, + { + "Type": 1, + "SubTag": "lsa", + "Description": [ + "Lasgerdi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lsa" + }, + { + "Type": 1, + "SubTag": "lsb", + "Description": [ + "Burundian Sign Language", + "Langue des Signes Burundaise" + ], + "Added": "2021-02-20", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lsb" + }, + { + "Type": 1, + "SubTag": "lsc", + "Description": [ + "Albarradas Sign Language", + "Lengua de se\u00F1as Albarradas" + ], + "Added": "2022-02-25", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lsc" + }, + { + "Type": 1, + "SubTag": "lsd", + "Description": [ + "Lishana Deni" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lsd" + }, + { + "Type": 1, + "SubTag": "lse", + "Description": [ + "Lusengo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lse" + }, + { + "Type": 1, + "SubTag": "lsg", + "Description": [ + "Lyons Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2018-03-08", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lsg" + }, + { + "Type": 1, + "SubTag": "lsh", + "Description": [ + "Lish" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lsh" + }, + { + "Type": 1, + "SubTag": "lsi", + "Description": [ + "Lashi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lsi" + }, + { + "Type": 1, + "SubTag": "lsl", + "Description": [ + "Latvian Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lsl" + }, + { + "Type": 1, + "SubTag": "lsm", + "Description": [ + "Saamia", + "Olusamia" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "luy", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lsm" + }, + { + "Type": 1, + "SubTag": "lsn", + "Description": [ + "Tibetan Sign Language" + ], + "Added": "2019-04-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lsn" + }, + { + "Type": 1, + "SubTag": "lso", + "Description": [ + "Laos Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lso" + }, + { + "Type": 1, + "SubTag": "lsp", + "Description": [ + "Panamanian Sign Language", + "Lengua de Se\u00F1as Paname\u00F1as" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lsp" + }, + { + "Type": 1, + "SubTag": "lsr", + "Description": [ + "Aruop" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lsr" + }, + { + "Type": 1, + "SubTag": "lss", + "Description": [ + "Lasi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lss" + }, + { + "Type": 1, + "SubTag": "lst", + "Description": [ + "Trinidad and Tobago Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lst" + }, + { + "Type": 1, + "SubTag": "lsv", + "Description": [ + "Sivia Sign Language" + ], + "Added": "2019-04-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lsv" + }, + { + "Type": 1, + "SubTag": "lsw", + "Description": [ + "Seychelles Sign Language", + "Lalang Siny Seselwa", + "Langue des Signes Seychelloise" + ], + "Added": "2022-02-25", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lsw" + }, + { + "Type": 1, + "SubTag": "lsy", + "Description": [ + "Mauritian Sign Language" + ], + "Added": "2010-03-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lsy" + }, + { + "Type": 1, + "SubTag": "ltc", + "Description": [ + "Late Middle Chinese" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ltc" + }, + { + "Type": 1, + "SubTag": "ltg", + "Description": [ + "Latgalian" + ], + "Added": "2010-03-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "lv", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ltg" + }, + { + "Type": 1, + "SubTag": "lth", + "Description": [ + "Thur" + ], + "Added": "2017-02-23", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lth" + }, + { + "Type": 1, + "SubTag": "lti", + "Description": [ + "Leti (Indonesia)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lti" + }, + { + "Type": 1, + "SubTag": "ltn", + "Description": [ + "Latund\u00EA" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ltn" + }, + { + "Type": 1, + "SubTag": "lto", + "Description": [ + "Tsotso", + "Olutsotso" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "luy", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lto" + }, + { + "Type": 1, + "SubTag": "lts", + "Description": [ + "Tachoni", + "Lutachoni" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "luy", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lts" + }, + { + "Type": 1, + "SubTag": "ltu", + "Description": [ + "Latu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ltu" + }, + { + "Type": 1, + "SubTag": "lua", + "Description": [ + "Luba-Lulua" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lua" + }, + { + "Type": 1, + "SubTag": "luc", + "Description": [ + "Aringa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "luc" + }, + { + "Type": 1, + "SubTag": "lud", + "Description": [ + "Ludian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lud" + }, + { + "Type": 1, + "SubTag": "lue", + "Description": [ + "Luvale" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lue" + }, + { + "Type": 1, + "SubTag": "luf", + "Description": [ + "Laua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "luf" + }, + { + "Type": 1, + "SubTag": "luh", + "Description": [ + "Leizhou Chinese" + ], + "Added": "2024-12-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zh", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "luh" + }, + { + "Type": 1, + "SubTag": "lui", + "Description": [ + "Luiseno" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lui" + }, + { + "Type": 1, + "SubTag": "luj", + "Description": [ + "Luna" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "luj" + }, + { + "Type": 1, + "SubTag": "luk", + "Description": [ + "Lunanakha" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "luk" + }, + { + "Type": 1, + "SubTag": "lul", + "Description": [ + "Olu\u0027bo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lul" + }, + { + "Type": 1, + "SubTag": "lum", + "Description": [ + "Luimbi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lum" + }, + { + "Type": 1, + "SubTag": "lun", + "Description": [ + "Lunda" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lun" + }, + { + "Type": 1, + "SubTag": "luo", + "Description": [ + "Luo (Kenya and Tanzania)", + "Dholuo" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "luo" + }, + { + "Type": 1, + "SubTag": "lup", + "Description": [ + "Lumbu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lup" + }, + { + "Type": 1, + "SubTag": "luq", + "Description": [ + "Lucumi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "luq" + }, + { + "Type": 1, + "SubTag": "lur", + "Description": [ + "Laura" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lur" + }, + { + "Type": 1, + "SubTag": "lus", + "Description": [ + "Lushai" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lus" + }, + { + "Type": 1, + "SubTag": "lut", + "Description": [ + "Lushootseed" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lut" + }, + { + "Type": 1, + "SubTag": "luu", + "Description": [ + "Lumba-Yakkha" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "luu" + }, + { + "Type": 1, + "SubTag": "luv", + "Description": [ + "Luwati" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "luv" + }, + { + "Type": 1, + "SubTag": "luw", + "Description": [ + "Luo (Cameroon)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "luw" + }, + { + "Type": 1, + "SubTag": "luy", + "Description": [ + "Luyia", + "Oluluyia" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "macrolanguage", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "luy" + }, + { + "Type": 1, + "SubTag": "luz", + "Description": [ + "Southern Luri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "luz" + }, + { + "Type": 1, + "SubTag": "lva", + "Description": [ + "Maku\u0027a" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lva" + }, + { + "Type": 1, + "SubTag": "lvi", + "Description": [ + "Lavi" + ], + "Added": "2019-04-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lvi" + }, + { + "Type": 1, + "SubTag": "lvk", + "Description": [ + "Lavukaleve" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lvk" + }, + { + "Type": 1, + "SubTag": "lvl", + "Description": [ + "Lwel" + ], + "Added": "2023-03-17", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lvl" + }, + { + "Type": 1, + "SubTag": "lvs", + "Description": [ + "Standard Latvian" + ], + "Added": "2010-03-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "lv", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lvs" + }, + { + "Type": 1, + "SubTag": "lvu", + "Description": [ + "Levuka" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lvu" + }, + { + "Type": 1, + "SubTag": "lwa", + "Description": [ + "Lwalu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lwa" + }, + { + "Type": 1, + "SubTag": "lwe", + "Description": [ + "Lewo Eleng" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lwe" + }, + { + "Type": 1, + "SubTag": "lwg", + "Description": [ + "Wanga", + "Oluwanga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "luy", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lwg" + }, + { + "Type": 1, + "SubTag": "lwh", + "Description": [ + "White Lachi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lwh" + }, + { + "Type": 1, + "SubTag": "lwl", + "Description": [ + "Eastern Lawa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lwl" + }, + { + "Type": 1, + "SubTag": "lwm", + "Description": [ + "Laomian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lwm" + }, + { + "Type": 1, + "SubTag": "lwo", + "Description": [ + "Luwo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lwo" + }, + { + "Type": 1, + "SubTag": "lws", + "Description": [ + "Malawian Sign Language" + ], + "Added": "2018-03-08", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lws" + }, + { + "Type": 1, + "SubTag": "lwt", + "Description": [ + "Lewotobi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lwt" + }, + { + "Type": 1, + "SubTag": "lwu", + "Description": [ + "Lawu" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lwu" + }, + { + "Type": 1, + "SubTag": "lww", + "Description": [ + "Lewo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lww" + }, + { + "Type": 1, + "SubTag": "lxm", + "Description": [ + "Lakurumau" + ], + "Added": "2021-02-20", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lxm" + }, + { + "Type": 1, + "SubTag": "lya", + "Description": [ + "Layakha" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lya" + }, + { + "Type": 1, + "SubTag": "lyg", + "Description": [ + "Lyngngam" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lyg" + }, + { + "Type": 1, + "SubTag": "lyn", + "Description": [ + "Luyana" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lyn" + }, + { + "Type": 1, + "SubTag": "lzh", + "Description": [ + "Literary Chinese" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zh", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lzh" + }, + { + "Type": 1, + "SubTag": "lzl", + "Description": [ + "Litzlitz" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lzl" + }, + { + "Type": 1, + "SubTag": "lzn", + "Description": [ + "Leinong Naga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lzn" + }, + { + "Type": 1, + "SubTag": "lzz", + "Description": [ + "Laz" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "lzz" + }, + { + "Type": 1, + "SubTag": "maa", + "Description": [ + "San Jer\u00F3nimo Tec\u00F3atl Mazatec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [ + "see also pbm" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "maa" + }, + { + "Type": 1, + "SubTag": "mab", + "Description": [ + "Yutanduchi Mixtec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mab" + }, + { + "Type": 1, + "SubTag": "mad", + "Description": [ + "Madurese" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mad" + }, + { + "Type": 1, + "SubTag": "mae", + "Description": [ + "Bo-Rukul" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mae" + }, + { + "Type": 1, + "SubTag": "maf", + "Description": [ + "Mafa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "maf" + }, + { + "Type": 1, + "SubTag": "mag", + "Description": [ + "Magahi" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mag" + }, + { + "Type": 1, + "SubTag": "mai", + "Description": [ + "Maithili" + ], + "Added": "2005-10-16", + "SuppressScript": "Deva", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mai" + }, + { + "Type": 1, + "SubTag": "maj", + "Description": [ + "Jalapa De D\u00EDaz Mazatec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "maj" + }, + { + "Type": 1, + "SubTag": "mak", + "Description": [ + "Makasar" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mak" + }, + { + "Type": 1, + "SubTag": "mam", + "Description": [ + "Mam" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mam" + }, + { + "Type": 1, + "SubTag": "man", + "Description": [ + "Mandingo", + "Manding" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "macrolanguage", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "man" + }, + { + "Type": 1, + "SubTag": "map", + "Description": [ + "Austronesian languages" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "map" + }, + { + "Type": 1, + "SubTag": "maq", + "Description": [ + "Chiquihuitl\u00E1n Mazatec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "maq" + }, + { + "Type": 1, + "SubTag": "mas", + "Description": [ + "Masai" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mas" + }, + { + "Type": 1, + "SubTag": "mat", + "Description": [ + "San Francisco Matlatzinca" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mat" + }, + { + "Type": 1, + "SubTag": "mau", + "Description": [ + "Huautla Mazatec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mau" + }, + { + "Type": 1, + "SubTag": "mav", + "Description": [ + "Sater\u00E9-Maw\u00E9" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mav" + }, + { + "Type": 1, + "SubTag": "maw", + "Description": [ + "Mampruli" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "maw" + }, + { + "Type": 1, + "SubTag": "max", + "Description": [ + "North Moluccan Malay" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ms", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "max" + }, + { + "Type": 1, + "SubTag": "maz", + "Description": [ + "Central Mazahua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "maz" + }, + { + "Type": 1, + "SubTag": "mba", + "Description": [ + "Higaonon" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mba" + }, + { + "Type": 1, + "SubTag": "mbb", + "Description": [ + "Western Bukidnon Manobo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mbb" + }, + { + "Type": 1, + "SubTag": "mbc", + "Description": [ + "Macushi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mbc" + }, + { + "Type": 1, + "SubTag": "mbd", + "Description": [ + "Dibabawon Manobo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mbd" + }, + { + "Type": 1, + "SubTag": "mbe", + "Description": [ + "Molale" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mbe" + }, + { + "Type": 1, + "SubTag": "mbf", + "Description": [ + "Baba Malay" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mbf" + }, + { + "Type": 1, + "SubTag": "mbh", + "Description": [ + "Mangseng" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mbh" + }, + { + "Type": 1, + "SubTag": "mbi", + "Description": [ + "Ilianen Manobo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mbi" + }, + { + "Type": 1, + "SubTag": "mbj", + "Description": [ + "Nad\u00EBb" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mbj" + }, + { + "Type": 1, + "SubTag": "mbk", + "Description": [ + "Malol" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mbk" + }, + { + "Type": 1, + "SubTag": "mbl", + "Description": [ + "Maxakal\u00ED" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mbl" + }, + { + "Type": 1, + "SubTag": "mbm", + "Description": [ + "Ombamba" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mbm" + }, + { + "Type": 1, + "SubTag": "mbn", + "Description": [ + "Macagu\u00E1n" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mbn" + }, + { + "Type": 1, + "SubTag": "mbo", + "Description": [ + "Mbo (Cameroon)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mbo" + }, + { + "Type": 1, + "SubTag": "mbp", + "Description": [ + "Malayo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mbp" + }, + { + "Type": 1, + "SubTag": "mbq", + "Description": [ + "Maisin" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mbq" + }, + { + "Type": 1, + "SubTag": "mbr", + "Description": [ + "Nukak Mak\u00FA" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mbr" + }, + { + "Type": 1, + "SubTag": "mbs", + "Description": [ + "Sarangani Manobo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mbs" + }, + { + "Type": 1, + "SubTag": "mbt", + "Description": [ + "Matigsalug Manobo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mbt" + }, + { + "Type": 1, + "SubTag": "mbu", + "Description": [ + "Mbula-Bwazza" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mbu" + }, + { + "Type": 1, + "SubTag": "mbv", + "Description": [ + "Mbulungish" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mbv" + }, + { + "Type": 1, + "SubTag": "mbw", + "Description": [ + "Maring" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mbw" + }, + { + "Type": 1, + "SubTag": "mbx", + "Description": [ + "Mari (East Sepik Province)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mbx" + }, + { + "Type": 1, + "SubTag": "mby", + "Description": [ + "Memoni" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mby" + }, + { + "Type": 1, + "SubTag": "mbz", + "Description": [ + "Amoltepec Mixtec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mbz" + }, + { + "Type": 1, + "SubTag": "mca", + "Description": [ + "Maca" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mca" + }, + { + "Type": 1, + "SubTag": "mcb", + "Description": [ + "Machiguenga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mcb" + }, + { + "Type": 1, + "SubTag": "mcc", + "Description": [ + "Bitur" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mcc" + }, + { + "Type": 1, + "SubTag": "mcd", + "Description": [ + "Sharanahua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mcd" + }, + { + "Type": 1, + "SubTag": "mce", + "Description": [ + "Itundujia Mixtec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mce" + }, + { + "Type": 1, + "SubTag": "mcf", + "Description": [ + "Mats\u00E9s" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mcf" + }, + { + "Type": 1, + "SubTag": "mcg", + "Description": [ + "Mapoyo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mcg" + }, + { + "Type": 1, + "SubTag": "mch", + "Description": [ + "Maquiritari" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mch" + }, + { + "Type": 1, + "SubTag": "mci", + "Description": [ + "Mese" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mci" + }, + { + "Type": 1, + "SubTag": "mcj", + "Description": [ + "Mvanip" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mcj" + }, + { + "Type": 1, + "SubTag": "mck", + "Description": [ + "Mbunda" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mck" + }, + { + "Type": 1, + "SubTag": "mcl", + "Description": [ + "Macaguaje" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mcl" + }, + { + "Type": 1, + "SubTag": "mcm", + "Description": [ + "Malaccan Creole Portuguese" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mcm" + }, + { + "Type": 1, + "SubTag": "mcn", + "Description": [ + "Masana" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mcn" + }, + { + "Type": 1, + "SubTag": "mco", + "Description": [ + "Coatl\u00E1n Mixe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mco" + }, + { + "Type": 1, + "SubTag": "mcp", + "Description": [ + "Makaa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mcp" + }, + { + "Type": 1, + "SubTag": "mcq", + "Description": [ + "Ese" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mcq" + }, + { + "Type": 1, + "SubTag": "mcr", + "Description": [ + "Menya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mcr" + }, + { + "Type": 1, + "SubTag": "mcs", + "Description": [ + "Mambai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mcs" + }, + { + "Type": 1, + "SubTag": "mct", + "Description": [ + "Mengisa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mct" + }, + { + "Type": 1, + "SubTag": "mcu", + "Description": [ + "Cameroon Mambila" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mcu" + }, + { + "Type": 1, + "SubTag": "mcv", + "Description": [ + "Minanibai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mcv" + }, + { + "Type": 1, + "SubTag": "mcw", + "Description": [ + "Mawa (Chad)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mcw" + }, + { + "Type": 1, + "SubTag": "mcx", + "Description": [ + "Mpiemo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mcx" + }, + { + "Type": 1, + "SubTag": "mcy", + "Description": [ + "South Watut" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mcy" + }, + { + "Type": 1, + "SubTag": "mcz", + "Description": [ + "Mawan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mcz" + }, + { + "Type": 1, + "SubTag": "mda", + "Description": [ + "Mada (Nigeria)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mda" + }, + { + "Type": 1, + "SubTag": "mdb", + "Description": [ + "Morigi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mdb" + }, + { + "Type": 1, + "SubTag": "mdc", + "Description": [ + "Male (Papua New Guinea)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mdc" + }, + { + "Type": 1, + "SubTag": "mdd", + "Description": [ + "Mbum" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mdd" + }, + { + "Type": 1, + "SubTag": "mde", + "Description": [ + "Maba (Chad)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mde" + }, + { + "Type": 1, + "SubTag": "mdf", + "Description": [ + "Moksha" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mdf" + }, + { + "Type": 1, + "SubTag": "mdg", + "Description": [ + "Massalat" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mdg" + }, + { + "Type": 1, + "SubTag": "mdh", + "Description": [ + "Maguindanaon" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mdh" + }, + { + "Type": 1, + "SubTag": "mdi", + "Description": [ + "Mamvu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mdi" + }, + { + "Type": 1, + "SubTag": "mdj", + "Description": [ + "Mangbetu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mdj" + }, + { + "Type": 1, + "SubTag": "mdk", + "Description": [ + "Mangbutu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mdk" + }, + { + "Type": 1, + "SubTag": "mdl", + "Description": [ + "Maltese Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mdl" + }, + { + "Type": 1, + "SubTag": "mdm", + "Description": [ + "Mayogo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mdm" + }, + { + "Type": 1, + "SubTag": "mdn", + "Description": [ + "Mbati" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mdn" + }, + { + "Type": 1, + "SubTag": "mdp", + "Description": [ + "Mbala" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mdp" + }, + { + "Type": 1, + "SubTag": "mdq", + "Description": [ + "Mbole" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mdq" + }, + { + "Type": 1, + "SubTag": "mdr", + "Description": [ + "Mandar" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mdr" + }, + { + "Type": 1, + "SubTag": "mds", + "Description": [ + "Maria (Papua New Guinea)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mds" + }, + { + "Type": 1, + "SubTag": "mdt", + "Description": [ + "Mbere" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mdt" + }, + { + "Type": 1, + "SubTag": "mdu", + "Description": [ + "Mboko" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mdu" + }, + { + "Type": 1, + "SubTag": "mdv", + "Description": [ + "Santa Luc\u00EDa Monteverde Mixtec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mdv" + }, + { + "Type": 1, + "SubTag": "mdw", + "Description": [ + "Mbosi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mdw" + }, + { + "Type": 1, + "SubTag": "mdx", + "Description": [ + "Dizin" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mdx" + }, + { + "Type": 1, + "SubTag": "mdy", + "Description": [ + "Male (Ethiopia)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mdy" + }, + { + "Type": 1, + "SubTag": "mdz", + "Description": [ + "Suru\u00ED Do Par\u00E1" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mdz" + }, + { + "Type": 1, + "SubTag": "mea", + "Description": [ + "Menka" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mea" + }, + { + "Type": 1, + "SubTag": "meb", + "Description": [ + "Ikobi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "meb" + }, + { + "Type": 1, + "SubTag": "mec", + "Description": [ + "Marra" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mec" + }, + { + "Type": 1, + "SubTag": "med", + "Description": [ + "Melpa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "med" + }, + { + "Type": 1, + "SubTag": "mee", + "Description": [ + "Mengen" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mee" + }, + { + "Type": 1, + "SubTag": "mef", + "Description": [ + "Megam" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mef" + }, + { + "Type": 1, + "SubTag": "meg", + "Description": [ + "Mea" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2013-09-10", + "Comments": [], + "Prefix": [], + "PreferredValue": "cir", + "Tag": "", + "TagAny": "meg" + }, + { + "Type": 1, + "SubTag": "meh", + "Description": [ + "Southwestern Tlaxiaco Mixtec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "meh" + }, + { + "Type": 1, + "SubTag": "mei", + "Description": [ + "Midob" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mei" + }, + { + "Type": 1, + "SubTag": "mej", + "Description": [ + "Meyah" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mej" + }, + { + "Type": 1, + "SubTag": "mek", + "Description": [ + "Mekeo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mek" + }, + { + "Type": 1, + "SubTag": "mel", + "Description": [ + "Central Melanau" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mel" + }, + { + "Type": 1, + "SubTag": "mem", + "Description": [ + "Mangala" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mem" + }, + { + "Type": 1, + "SubTag": "men", + "Description": [ + "Mende (Sierra Leone)" + ], + "Added": "2005-10-16", + "SuppressScript": "Latn", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "men" + }, + { + "Type": 1, + "SubTag": "meo", + "Description": [ + "Kedah Malay" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ms", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "meo" + }, + { + "Type": 1, + "SubTag": "mep", + "Description": [ + "Miriwoong" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mep" + }, + { + "Type": 1, + "SubTag": "meq", + "Description": [ + "Merey" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "meq" + }, + { + "Type": 1, + "SubTag": "mer", + "Description": [ + "Meru" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mer" + }, + { + "Type": 1, + "SubTag": "mes", + "Description": [ + "Masmaje" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mes" + }, + { + "Type": 1, + "SubTag": "met", + "Description": [ + "Mato" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "met" + }, + { + "Type": 1, + "SubTag": "meu", + "Description": [ + "Motu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "meu" + }, + { + "Type": 1, + "SubTag": "mev", + "Description": [ + "Mano" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mev" + }, + { + "Type": 1, + "SubTag": "mew", + "Description": [ + "Maaka" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mew" + }, + { + "Type": 1, + "SubTag": "mey", + "Description": [ + "Hassaniyya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mey" + }, + { + "Type": 1, + "SubTag": "mez", + "Description": [ + "Menominee" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mez" + }, + { + "Type": 1, + "SubTag": "mfa", + "Description": [ + "Pattani Malay" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ms", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mfa" + }, + { + "Type": 1, + "SubTag": "mfb", + "Description": [ + "Bangka" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ms", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mfb" + }, + { + "Type": 1, + "SubTag": "mfc", + "Description": [ + "Mba" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mfc" + }, + { + "Type": 1, + "SubTag": "mfd", + "Description": [ + "Mendankwe-Nkwen" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mfd" + }, + { + "Type": 1, + "SubTag": "mfe", + "Description": [ + "Morisyen" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mfe" + }, + { + "Type": 1, + "SubTag": "mff", + "Description": [ + "Naki" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mff" + }, + { + "Type": 1, + "SubTag": "mfg", + "Description": [ + "Mogofin" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mfg" + }, + { + "Type": 1, + "SubTag": "mfh", + "Description": [ + "Matal" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mfh" + }, + { + "Type": 1, + "SubTag": "mfi", + "Description": [ + "Wandala" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mfi" + }, + { + "Type": 1, + "SubTag": "mfj", + "Description": [ + "Mefele" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mfj" + }, + { + "Type": 1, + "SubTag": "mfk", + "Description": [ + "North Mofu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mfk" + }, + { + "Type": 1, + "SubTag": "mfl", + "Description": [ + "Putai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mfl" + }, + { + "Type": 1, + "SubTag": "mfm", + "Description": [ + "Marghi South" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mfm" + }, + { + "Type": 1, + "SubTag": "mfn", + "Description": [ + "Cross River Mbembe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mfn" + }, + { + "Type": 1, + "SubTag": "mfo", + "Description": [ + "Mbe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mfo" + }, + { + "Type": 1, + "SubTag": "mfp", + "Description": [ + "Makassar Malay" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mfp" + }, + { + "Type": 1, + "SubTag": "mfq", + "Description": [ + "Moba" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mfq" + }, + { + "Type": 1, + "SubTag": "mfr", + "Description": [ + "Marrithiyel" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mfr" + }, + { + "Type": 1, + "SubTag": "mfs", + "Description": [ + "Mexican Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mfs" + }, + { + "Type": 1, + "SubTag": "mft", + "Description": [ + "Mokerang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mft" + }, + { + "Type": 1, + "SubTag": "mfu", + "Description": [ + "Mbwela" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mfu" + }, + { + "Type": 1, + "SubTag": "mfv", + "Description": [ + "Mandjak" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mfv" + }, + { + "Type": 1, + "SubTag": "mfw", + "Description": [ + "Mulaha" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mfw" + }, + { + "Type": 1, + "SubTag": "mfx", + "Description": [ + "Melo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mfx" + }, + { + "Type": 1, + "SubTag": "mfy", + "Description": [ + "Mayo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mfy" + }, + { + "Type": 1, + "SubTag": "mfz", + "Description": [ + "Mabaan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mfz" + }, + { + "Type": 1, + "SubTag": "mga", + "Description": [ + "Middle Irish (900-1200)" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mga" + }, + { + "Type": 1, + "SubTag": "mgb", + "Description": [ + "Mararit" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mgb" + }, + { + "Type": 1, + "SubTag": "mgc", + "Description": [ + "Morokodo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mgc" + }, + { + "Type": 1, + "SubTag": "mgd", + "Description": [ + "Moru" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mgd" + }, + { + "Type": 1, + "SubTag": "mge", + "Description": [ + "Mango" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mge" + }, + { + "Type": 1, + "SubTag": "mgf", + "Description": [ + "Maklew" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mgf" + }, + { + "Type": 1, + "SubTag": "mgg", + "Description": [ + "Mpumpong" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mgg" + }, + { + "Type": 1, + "SubTag": "mgh", + "Description": [ + "Makhuwa-Meetto" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mgh" + }, + { + "Type": 1, + "SubTag": "mgi", + "Description": [ + "Lijili" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mgi" + }, + { + "Type": 1, + "SubTag": "mgj", + "Description": [ + "Abureni" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mgj" + }, + { + "Type": 1, + "SubTag": "mgk", + "Description": [ + "Mawes" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mgk" + }, + { + "Type": 1, + "SubTag": "mgl", + "Description": [ + "Maleu-Kilenge" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mgl" + }, + { + "Type": 1, + "SubTag": "mgm", + "Description": [ + "Mambae" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mgm" + }, + { + "Type": 1, + "SubTag": "mgn", + "Description": [ + "Mbangi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mgn" + }, + { + "Type": 1, + "SubTag": "mgo", + "Description": [ + "Meta\u0027" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mgo" + }, + { + "Type": 1, + "SubTag": "mgp", + "Description": [ + "Eastern Magar" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mgp" + }, + { + "Type": 1, + "SubTag": "mgq", + "Description": [ + "Malila" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mgq" + }, + { + "Type": 1, + "SubTag": "mgr", + "Description": [ + "Mambwe-Lungu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mgr" + }, + { + "Type": 1, + "SubTag": "mgs", + "Description": [ + "Manda (Tanzania)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mgs" + }, + { + "Type": 1, + "SubTag": "mgt", + "Description": [ + "Mongol" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mgt" + }, + { + "Type": 1, + "SubTag": "mgu", + "Description": [ + "Mailu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mgu" + }, + { + "Type": 1, + "SubTag": "mgv", + "Description": [ + "Matengo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mgv" + }, + { + "Type": 1, + "SubTag": "mgw", + "Description": [ + "Matumbi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mgw" + }, + { + "Type": 1, + "SubTag": "mgx", + "Description": [ + "Omati" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2012-08-12", + "Comments": [ + "see jbk, jmw" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mgx" + }, + { + "Type": 1, + "SubTag": "mgy", + "Description": [ + "Mbunga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mgy" + }, + { + "Type": 1, + "SubTag": "mgz", + "Description": [ + "Mbugwe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mgz" + }, + { + "Type": 1, + "SubTag": "mha", + "Description": [ + "Manda (India)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mha" + }, + { + "Type": 1, + "SubTag": "mhb", + "Description": [ + "Mahongwe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mhb" + }, + { + "Type": 1, + "SubTag": "mhc", + "Description": [ + "Mocho" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mhc" + }, + { + "Type": 1, + "SubTag": "mhd", + "Description": [ + "Mbugu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mhd" + }, + { + "Type": 1, + "SubTag": "mhe", + "Description": [ + "Besisi", + "Mah Meri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mhe" + }, + { + "Type": 1, + "SubTag": "mhf", + "Description": [ + "Mamaa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mhf" + }, + { + "Type": 1, + "SubTag": "mhg", + "Description": [ + "Margu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mhg" + }, + { + "Type": 1, + "SubTag": "mhh", + "Description": [ + "Maskoy Pidgin" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2014-02-28", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mhh" + }, + { + "Type": 1, + "SubTag": "mhi", + "Description": [ + "Ma\u0027di" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mhi" + }, + { + "Type": 1, + "SubTag": "mhj", + "Description": [ + "Mogholi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mhj" + }, + { + "Type": 1, + "SubTag": "mhk", + "Description": [ + "Mungaka" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mhk" + }, + { + "Type": 1, + "SubTag": "mhl", + "Description": [ + "Mauwake" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mhl" + }, + { + "Type": 1, + "SubTag": "mhm", + "Description": [ + "Makhuwa-Moniga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mhm" + }, + { + "Type": 1, + "SubTag": "mhn", + "Description": [ + "M\u00F3cheno" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mhn" + }, + { + "Type": 1, + "SubTag": "mho", + "Description": [ + "Mashi (Zambia)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mho" + }, + { + "Type": 1, + "SubTag": "mhp", + "Description": [ + "Balinese Malay" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mhp" + }, + { + "Type": 1, + "SubTag": "mhq", + "Description": [ + "Mandan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mhq" + }, + { + "Type": 1, + "SubTag": "mhr", + "Description": [ + "Eastern Mari" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "chm", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mhr" + }, + { + "Type": 1, + "SubTag": "mhs", + "Description": [ + "Buru (Indonesia)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mhs" + }, + { + "Type": 1, + "SubTag": "mht", + "Description": [ + "Mandahuaca" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mht" + }, + { + "Type": 1, + "SubTag": "mhu", + "Description": [ + "Digaro-Mishmi", + "Darang Deng" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mhu" + }, + { + "Type": 1, + "SubTag": "mhw", + "Description": [ + "Mbukushu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mhw" + }, + { + "Type": 1, + "SubTag": "mhx", + "Description": [ + "Maru", + "Lhaovo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mhx" + }, + { + "Type": 1, + "SubTag": "mhy", + "Description": [ + "Ma\u0027anyan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mhy" + }, + { + "Type": 1, + "SubTag": "mhz", + "Description": [ + "Mor (Mor Islands)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mhz" + }, + { + "Type": 1, + "SubTag": "mia", + "Description": [ + "Miami" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mia" + }, + { + "Type": 1, + "SubTag": "mib", + "Description": [ + "Atatl\u00E1huca Mixtec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mib" + }, + { + "Type": 1, + "SubTag": "mic", + "Description": [ + "Mi\u0027kmaq", + "Micmac" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mic" + }, + { + "Type": 1, + "SubTag": "mid", + "Description": [ + "Mandaic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mid" + }, + { + "Type": 1, + "SubTag": "mie", + "Description": [ + "Ocotepec Mixtec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mie" + }, + { + "Type": 1, + "SubTag": "mif", + "Description": [ + "Mofu-Gudur" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mif" + }, + { + "Type": 1, + "SubTag": "mig", + "Description": [ + "San Miguel El Grande Mixtec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mig" + }, + { + "Type": 1, + "SubTag": "mih", + "Description": [ + "Chayuco Mixtec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mih" + }, + { + "Type": 1, + "SubTag": "mii", + "Description": [ + "Chigmecatitl\u00E1n Mixtec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mii" + }, + { + "Type": 1, + "SubTag": "mij", + "Description": [ + "Abar", + "Mungbam" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mij" + }, + { + "Type": 1, + "SubTag": "mik", + "Description": [ + "Mikasuki" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mik" + }, + { + "Type": 1, + "SubTag": "mil", + "Description": [ + "Pe\u00F1oles Mixtec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mil" + }, + { + "Type": 1, + "SubTag": "mim", + "Description": [ + "Alacatlatzala Mixtec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mim" + }, + { + "Type": 1, + "SubTag": "min", + "Description": [ + "Minangkabau" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ms", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "min" + }, + { + "Type": 1, + "SubTag": "mio", + "Description": [ + "Pinotepa Nacional Mixtec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mio" + }, + { + "Type": 1, + "SubTag": "mip", + "Description": [ + "Apasco-Apoala Mixtec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mip" + }, + { + "Type": 1, + "SubTag": "miq", + "Description": [ + "M\u00EDskito" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "miq" + }, + { + "Type": 1, + "SubTag": "mir", + "Description": [ + "Isthmus Mixe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mir" + }, + { + "Type": 1, + "SubTag": "mis", + "Description": [ + "Uncoded languages" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "special", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mis" + }, + { + "Type": 1, + "SubTag": "mit", + "Description": [ + "Southern Puebla Mixtec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mit" + }, + { + "Type": 1, + "SubTag": "miu", + "Description": [ + "Cacaloxtepec Mixtec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "miu" + }, + { + "Type": 1, + "SubTag": "miw", + "Description": [ + "Akoye" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "miw" + }, + { + "Type": 1, + "SubTag": "mix", + "Description": [ + "Mixtepec Mixtec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mix" + }, + { + "Type": 1, + "SubTag": "miy", + "Description": [ + "Ayutla Mixtec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "miy" + }, + { + "Type": 1, + "SubTag": "miz", + "Description": [ + "Coatzospan Mixtec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "miz" + }, + { + "Type": 1, + "SubTag": "mja", + "Description": [ + "Mahei" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2011-08-16", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mja" + }, + { + "Type": 1, + "SubTag": "mjb", + "Description": [ + "Makalero" + ], + "Added": "2016-05-30", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mjb" + }, + { + "Type": 1, + "SubTag": "mjc", + "Description": [ + "San Juan Colorado Mixtec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mjc" + }, + { + "Type": 1, + "SubTag": "mjd", + "Description": [ + "Northwest Maidu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mjd" + }, + { + "Type": 1, + "SubTag": "mje", + "Description": [ + "Muskum" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mje" + }, + { + "Type": 1, + "SubTag": "mjg", + "Description": [ + "Tu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mjg" + }, + { + "Type": 1, + "SubTag": "mjh", + "Description": [ + "Mwera (Nyasa)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mjh" + }, + { + "Type": 1, + "SubTag": "mji", + "Description": [ + "Kim Mun" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mji" + }, + { + "Type": 1, + "SubTag": "mjj", + "Description": [ + "Mawak" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mjj" + }, + { + "Type": 1, + "SubTag": "mjk", + "Description": [ + "Matukar" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mjk" + }, + { + "Type": 1, + "SubTag": "mjl", + "Description": [ + "Mandeali" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mjl" + }, + { + "Type": 1, + "SubTag": "mjm", + "Description": [ + "Medebur" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mjm" + }, + { + "Type": 1, + "SubTag": "mjn", + "Description": [ + "Ma (Papua New Guinea)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mjn" + }, + { + "Type": 1, + "SubTag": "mjo", + "Description": [ + "Malankuravan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mjo" + }, + { + "Type": 1, + "SubTag": "mjp", + "Description": [ + "Malapandaram" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mjp" + }, + { + "Type": 1, + "SubTag": "mjq", + "Description": [ + "Malaryan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mjq" + }, + { + "Type": 1, + "SubTag": "mjr", + "Description": [ + "Malavedan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mjr" + }, + { + "Type": 1, + "SubTag": "mjs", + "Description": [ + "Miship" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mjs" + }, + { + "Type": 1, + "SubTag": "mjt", + "Description": [ + "Sauria Paharia" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mjt" + }, + { + "Type": 1, + "SubTag": "mju", + "Description": [ + "Manna-Dora" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mju" + }, + { + "Type": 1, + "SubTag": "mjv", + "Description": [ + "Mannan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mjv" + }, + { + "Type": 1, + "SubTag": "mjw", + "Description": [ + "Karbi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mjw" + }, + { + "Type": 1, + "SubTag": "mjx", + "Description": [ + "Mahali" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mjx" + }, + { + "Type": 1, + "SubTag": "mjy", + "Description": [ + "Mahican" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mjy" + }, + { + "Type": 1, + "SubTag": "mjz", + "Description": [ + "Majhi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mjz" + }, + { + "Type": 1, + "SubTag": "mka", + "Description": [ + "Mbre" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mka" + }, + { + "Type": 1, + "SubTag": "mkb", + "Description": [ + "Mal Paharia" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mkb" + }, + { + "Type": 1, + "SubTag": "mkc", + "Description": [ + "Siliput" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mkc" + }, + { + "Type": 1, + "SubTag": "mke", + "Description": [ + "Mawchi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mke" + }, + { + "Type": 1, + "SubTag": "mkf", + "Description": [ + "Miya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mkf" + }, + { + "Type": 1, + "SubTag": "mkg", + "Description": [ + "Mak (China)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mkg" + }, + { + "Type": 1, + "SubTag": "mkh", + "Description": [ + "Mon-Khmer languages" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mkh" + }, + { + "Type": 1, + "SubTag": "mki", + "Description": [ + "Dhatki" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mki" + }, + { + "Type": 1, + "SubTag": "mkj", + "Description": [ + "Mokilese" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mkj" + }, + { + "Type": 1, + "SubTag": "mkk", + "Description": [ + "Byep" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mkk" + }, + { + "Type": 1, + "SubTag": "mkl", + "Description": [ + "Mokole" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mkl" + }, + { + "Type": 1, + "SubTag": "mkm", + "Description": [ + "Moklen" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mkm" + }, + { + "Type": 1, + "SubTag": "mkn", + "Description": [ + "Kupang Malay" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mkn" + }, + { + "Type": 1, + "SubTag": "mko", + "Description": [ + "Mingang Doso" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mko" + }, + { + "Type": 1, + "SubTag": "mkp", + "Description": [ + "Moikodi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mkp" + }, + { + "Type": 1, + "SubTag": "mkq", + "Description": [ + "Bay Miwok" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mkq" + }, + { + "Type": 1, + "SubTag": "mkr", + "Description": [ + "Malas" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mkr" + }, + { + "Type": 1, + "SubTag": "mks", + "Description": [ + "Silacayoapan Mixtec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mks" + }, + { + "Type": 1, + "SubTag": "mkt", + "Description": [ + "Vamale" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mkt" + }, + { + "Type": 1, + "SubTag": "mku", + "Description": [ + "Konyanka Maninka" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "man", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mku" + }, + { + "Type": 1, + "SubTag": "mkv", + "Description": [ + "Mafea" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mkv" + }, + { + "Type": 1, + "SubTag": "mkw", + "Description": [ + "Kituba (Congo)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mkw" + }, + { + "Type": 1, + "SubTag": "mkx", + "Description": [ + "Kinamiging Manobo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mkx" + }, + { + "Type": 1, + "SubTag": "mky", + "Description": [ + "East Makian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mky" + }, + { + "Type": 1, + "SubTag": "mkz", + "Description": [ + "Makasae" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mkz" + }, + { + "Type": 1, + "SubTag": "mla", + "Description": [ + "Malo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mla" + }, + { + "Type": 1, + "SubTag": "mlb", + "Description": [ + "Mbule" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mlb" + }, + { + "Type": 1, + "SubTag": "mlc", + "Description": [ + "Cao Lan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mlc" + }, + { + "Type": 1, + "SubTag": "mld", + "Description": [ + "Malakhel" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2013-09-10", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mld" + }, + { + "Type": 1, + "SubTag": "mle", + "Description": [ + "Manambu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mle" + }, + { + "Type": 1, + "SubTag": "mlf", + "Description": [ + "Mal" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mlf" + }, + { + "Type": 1, + "SubTag": "mlh", + "Description": [ + "Mape" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mlh" + }, + { + "Type": 1, + "SubTag": "mli", + "Description": [ + "Malimpung" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mli" + }, + { + "Type": 1, + "SubTag": "mlj", + "Description": [ + "Miltu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mlj" + }, + { + "Type": 1, + "SubTag": "mlk", + "Description": [ + "Ilwana", + "Kiwilwana" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mlk" + }, + { + "Type": 1, + "SubTag": "mll", + "Description": [ + "Malua Bay" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mll" + }, + { + "Type": 1, + "SubTag": "mlm", + "Description": [ + "Mulam" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mlm" + }, + { + "Type": 1, + "SubTag": "mln", + "Description": [ + "Malango" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mln" + }, + { + "Type": 1, + "SubTag": "mlo", + "Description": [ + "Mlomp" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mlo" + }, + { + "Type": 1, + "SubTag": "mlp", + "Description": [ + "Bargam" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mlp" + }, + { + "Type": 1, + "SubTag": "mlq", + "Description": [ + "Western Maninkakan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "man", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mlq" + }, + { + "Type": 1, + "SubTag": "mlr", + "Description": [ + "Vame" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mlr" + }, + { + "Type": 1, + "SubTag": "mls", + "Description": [ + "Masalit" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mls" + }, + { + "Type": 1, + "SubTag": "mlu", + "Description": [ + "To\u0027abaita" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mlu" + }, + { + "Type": 1, + "SubTag": "mlv", + "Description": [ + "Motlav", + "Mwotlap" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mlv" + }, + { + "Type": 1, + "SubTag": "mlw", + "Description": [ + "Moloko" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mlw" + }, + { + "Type": 1, + "SubTag": "mlx", + "Description": [ + "Malfaxal", + "Naha\u0027ai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mlx" + }, + { + "Type": 1, + "SubTag": "mlz", + "Description": [ + "Malaynon" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mlz" + }, + { + "Type": 1, + "SubTag": "mma", + "Description": [ + "Mama" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mma" + }, + { + "Type": 1, + "SubTag": "mmb", + "Description": [ + "Momina" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mmb" + }, + { + "Type": 1, + "SubTag": "mmc", + "Description": [ + "Michoac\u00E1n Mazahua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mmc" + }, + { + "Type": 1, + "SubTag": "mmd", + "Description": [ + "Maonan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mmd" + }, + { + "Type": 1, + "SubTag": "mme", + "Description": [ + "Mae" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mme" + }, + { + "Type": 1, + "SubTag": "mmf", + "Description": [ + "Mundat" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mmf" + }, + { + "Type": 1, + "SubTag": "mmg", + "Description": [ + "North Ambrym" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mmg" + }, + { + "Type": 1, + "SubTag": "mmh", + "Description": [ + "Mehin\u00E1ku" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mmh" + }, + { + "Type": 1, + "SubTag": "mmi", + "Description": [ + "Hember Avu", + "Amben", + "Musar" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mmi" + }, + { + "Type": 1, + "SubTag": "mmj", + "Description": [ + "Majhwar" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mmj" + }, + { + "Type": 1, + "SubTag": "mmk", + "Description": [ + "Mukha-Dora" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mmk" + }, + { + "Type": 1, + "SubTag": "mml", + "Description": [ + "Man Met" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mml" + }, + { + "Type": 1, + "SubTag": "mmm", + "Description": [ + "Maii" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mmm" + }, + { + "Type": 1, + "SubTag": "mmn", + "Description": [ + "Mamanwa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mmn" + }, + { + "Type": 1, + "SubTag": "mmo", + "Description": [ + "Mangga Buang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mmo" + }, + { + "Type": 1, + "SubTag": "mmp", + "Description": [ + "Siawi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mmp" + }, + { + "Type": 1, + "SubTag": "mmq", + "Description": [ + "Musak" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mmq" + }, + { + "Type": 1, + "SubTag": "mmr", + "Description": [ + "Western Xiangxi Miao" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "hmn", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mmr" + }, + { + "Type": 1, + "SubTag": "mmt", + "Description": [ + "Malalamai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mmt" + }, + { + "Type": 1, + "SubTag": "mmu", + "Description": [ + "Mmaala" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mmu" + }, + { + "Type": 1, + "SubTag": "mmv", + "Description": [ + "Miriti" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mmv" + }, + { + "Type": 1, + "SubTag": "mmw", + "Description": [ + "Emae" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mmw" + }, + { + "Type": 1, + "SubTag": "mmx", + "Description": [ + "Madak" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mmx" + }, + { + "Type": 1, + "SubTag": "mmy", + "Description": [ + "Migaama" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mmy" + }, + { + "Type": 1, + "SubTag": "mmz", + "Description": [ + "Mabaale" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mmz" + }, + { + "Type": 1, + "SubTag": "mna", + "Description": [ + "Mbula" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mna" + }, + { + "Type": 1, + "SubTag": "mnb", + "Description": [ + "Muna" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mnb" + }, + { + "Type": 1, + "SubTag": "mnc", + "Description": [ + "Manchu" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mnc" + }, + { + "Type": 1, + "SubTag": "mnd", + "Description": [ + "Mond\u00E9" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mnd" + }, + { + "Type": 1, + "SubTag": "mne", + "Description": [ + "Naba" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mne" + }, + { + "Type": 1, + "SubTag": "mnf", + "Description": [ + "Mundani" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mnf" + }, + { + "Type": 1, + "SubTag": "mng", + "Description": [ + "Eastern Mnong" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mng" + }, + { + "Type": 1, + "SubTag": "mnh", + "Description": [ + "Mono (Democratic Republic of Congo)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mnh" + }, + { + "Type": 1, + "SubTag": "mni", + "Description": [ + "Manipuri" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mni" + }, + { + "Type": 1, + "SubTag": "mnj", + "Description": [ + "Munji" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mnj" + }, + { + "Type": 1, + "SubTag": "mnk", + "Description": [ + "Mandinka" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "man", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mnk" + }, + { + "Type": 1, + "SubTag": "mnl", + "Description": [ + "Tiale" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mnl" + }, + { + "Type": 1, + "SubTag": "mnm", + "Description": [ + "Mapena" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mnm" + }, + { + "Type": 1, + "SubTag": "mnn", + "Description": [ + "Southern Mnong" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mnn" + }, + { + "Type": 1, + "SubTag": "mno", + "Description": [ + "Manobo languages" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mno" + }, + { + "Type": 1, + "SubTag": "mnp", + "Description": [ + "Min Bei Chinese" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zh", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mnp" + }, + { + "Type": 1, + "SubTag": "mnq", + "Description": [ + "Minriq" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mnq" + }, + { + "Type": 1, + "SubTag": "mnr", + "Description": [ + "Mono (USA)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mnr" + }, + { + "Type": 1, + "SubTag": "mns", + "Description": [ + "Mansi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mns" + }, + { + "Type": 1, + "SubTag": "mnt", + "Description": [ + "Maykulan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2013-09-10", + "Comments": [ + "see wnn, xyj, xyk, xyt" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mnt" + }, + { + "Type": 1, + "SubTag": "mnu", + "Description": [ + "Mer" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mnu" + }, + { + "Type": 1, + "SubTag": "mnv", + "Description": [ + "Rennell-Bellona" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mnv" + }, + { + "Type": 1, + "SubTag": "mnw", + "Description": [ + "Mon" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mnw" + }, + { + "Type": 1, + "SubTag": "mnx", + "Description": [ + "Manikion" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mnx" + }, + { + "Type": 1, + "SubTag": "mny", + "Description": [ + "Manyawa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mny" + }, + { + "Type": 1, + "SubTag": "mnz", + "Description": [ + "Moni" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mnz" + }, + { + "Type": 1, + "SubTag": "moa", + "Description": [ + "Mwan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "moa" + }, + { + "Type": 1, + "SubTag": "moc", + "Description": [ + "Mocov\u00ED" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "moc" + }, + { + "Type": 1, + "SubTag": "mod", + "Description": [ + "Mobilian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mod" + }, + { + "Type": 1, + "SubTag": "moe", + "Description": [ + "Innu", + "Montagnais" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "moe" + }, + { + "Type": 1, + "SubTag": "mof", + "Description": [ + "Mohegan-Montauk-Narragansett" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2010-03-11", + "Comments": [ + "see xnt, xpq" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mof" + }, + { + "Type": 1, + "SubTag": "mog", + "Description": [ + "Mongondow" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mog" + }, + { + "Type": 1, + "SubTag": "moh", + "Description": [ + "Mohawk" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "moh" + }, + { + "Type": 1, + "SubTag": "moi", + "Description": [ + "Mboi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "moi" + }, + { + "Type": 1, + "SubTag": "moj", + "Description": [ + "Monzombo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "moj" + }, + { + "Type": 1, + "SubTag": "mok", + "Description": [ + "Morori" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mok" + }, + { + "Type": 1, + "SubTag": "mom", + "Description": [ + "Mangue" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mom" + }, + { + "Type": 1, + "SubTag": "moo", + "Description": [ + "Monom" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "moo" + }, + { + "Type": 1, + "SubTag": "mop", + "Description": [ + "Mop\u00E1n Maya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mop" + }, + { + "Type": 1, + "SubTag": "moq", + "Description": [ + "Mor (Bomberai Peninsula)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "moq" + }, + { + "Type": 1, + "SubTag": "mor", + "Description": [ + "Moro" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mor" + }, + { + "Type": 1, + "SubTag": "mos", + "Description": [ + "Mossi" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mos" + }, + { + "Type": 1, + "SubTag": "mot", + "Description": [ + "Bar\u00ED" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mot" + }, + { + "Type": 1, + "SubTag": "mou", + "Description": [ + "Mogum" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mou" + }, + { + "Type": 1, + "SubTag": "mov", + "Description": [ + "Mohave" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mov" + }, + { + "Type": 1, + "SubTag": "mow", + "Description": [ + "Moi (Congo)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mow" + }, + { + "Type": 1, + "SubTag": "mox", + "Description": [ + "Molima" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mox" + }, + { + "Type": 1, + "SubTag": "moy", + "Description": [ + "Shekkacho" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "moy" + }, + { + "Type": 1, + "SubTag": "moz", + "Description": [ + "Mukulu", + "Gergiko" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "moz" + }, + { + "Type": 1, + "SubTag": "mpa", + "Description": [ + "Mpoto" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mpa" + }, + { + "Type": 1, + "SubTag": "mpb", + "Description": [ + "Malak Malak", + "Mullukmulluk" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mpb" + }, + { + "Type": 1, + "SubTag": "mpc", + "Description": [ + "Mangarrayi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mpc" + }, + { + "Type": 1, + "SubTag": "mpd", + "Description": [ + "Machinere" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mpd" + }, + { + "Type": 1, + "SubTag": "mpe", + "Description": [ + "Majang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mpe" + }, + { + "Type": 1, + "SubTag": "mpg", + "Description": [ + "Marba" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mpg" + }, + { + "Type": 1, + "SubTag": "mph", + "Description": [ + "Maung" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mph" + }, + { + "Type": 1, + "SubTag": "mpi", + "Description": [ + "Mpade" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mpi" + }, + { + "Type": 1, + "SubTag": "mpj", + "Description": [ + "Martu Wangka", + "Wangkajunga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mpj" + }, + { + "Type": 1, + "SubTag": "mpk", + "Description": [ + "Mbara (Chad)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mpk" + }, + { + "Type": 1, + "SubTag": "mpl", + "Description": [ + "Middle Watut" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mpl" + }, + { + "Type": 1, + "SubTag": "mpm", + "Description": [ + "Yosond\u00FAa Mixtec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mpm" + }, + { + "Type": 1, + "SubTag": "mpn", + "Description": [ + "Mindiri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mpn" + }, + { + "Type": 1, + "SubTag": "mpo", + "Description": [ + "Miu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mpo" + }, + { + "Type": 1, + "SubTag": "mpp", + "Description": [ + "Migabac" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mpp" + }, + { + "Type": 1, + "SubTag": "mpq", + "Description": [ + "Mat\u00EDs" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mpq" + }, + { + "Type": 1, + "SubTag": "mpr", + "Description": [ + "Vangunu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mpr" + }, + { + "Type": 1, + "SubTag": "mps", + "Description": [ + "Dadibi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mps" + }, + { + "Type": 1, + "SubTag": "mpt", + "Description": [ + "Mian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mpt" + }, + { + "Type": 1, + "SubTag": "mpu", + "Description": [ + "Makur\u00E1p" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mpu" + }, + { + "Type": 1, + "SubTag": "mpv", + "Description": [ + "Mungkip" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mpv" + }, + { + "Type": 1, + "SubTag": "mpw", + "Description": [ + "Mapidian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mpw" + }, + { + "Type": 1, + "SubTag": "mpx", + "Description": [ + "Misima-Panaeati" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mpx" + }, + { + "Type": 1, + "SubTag": "mpy", + "Description": [ + "Mapia" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mpy" + }, + { + "Type": 1, + "SubTag": "mpz", + "Description": [ + "Mpi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mpz" + }, + { + "Type": 1, + "SubTag": "mqa", + "Description": [ + "Maba (Indonesia)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mqa" + }, + { + "Type": 1, + "SubTag": "mqb", + "Description": [ + "Mbuko" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mqb" + }, + { + "Type": 1, + "SubTag": "mqc", + "Description": [ + "Mangole" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mqc" + }, + { + "Type": 1, + "SubTag": "mqe", + "Description": [ + "Matepi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mqe" + }, + { + "Type": 1, + "SubTag": "mqf", + "Description": [ + "Momuna" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mqf" + }, + { + "Type": 1, + "SubTag": "mqg", + "Description": [ + "Kota Bangun Kutai Malay" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ms", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mqg" + }, + { + "Type": 1, + "SubTag": "mqh", + "Description": [ + "Tlazoyaltepec Mixtec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mqh" + }, + { + "Type": 1, + "SubTag": "mqi", + "Description": [ + "Mariri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mqi" + }, + { + "Type": 1, + "SubTag": "mqj", + "Description": [ + "Mamasa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mqj" + }, + { + "Type": 1, + "SubTag": "mqk", + "Description": [ + "Rajah Kabunsuwan Manobo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mqk" + }, + { + "Type": 1, + "SubTag": "mql", + "Description": [ + "Mbelime" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mql" + }, + { + "Type": 1, + "SubTag": "mqm", + "Description": [ + "South Marquesan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mqm" + }, + { + "Type": 1, + "SubTag": "mqn", + "Description": [ + "Moronene" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mqn" + }, + { + "Type": 1, + "SubTag": "mqo", + "Description": [ + "Modole" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mqo" + }, + { + "Type": 1, + "SubTag": "mqp", + "Description": [ + "Manipa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mqp" + }, + { + "Type": 1, + "SubTag": "mqq", + "Description": [ + "Minokok" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mqq" + }, + { + "Type": 1, + "SubTag": "mqr", + "Description": [ + "Mander" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mqr" + }, + { + "Type": 1, + "SubTag": "mqs", + "Description": [ + "West Makian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mqs" + }, + { + "Type": 1, + "SubTag": "mqt", + "Description": [ + "Mok" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mqt" + }, + { + "Type": 1, + "SubTag": "mqu", + "Description": [ + "Mandari" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mqu" + }, + { + "Type": 1, + "SubTag": "mqv", + "Description": [ + "Mosimo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mqv" + }, + { + "Type": 1, + "SubTag": "mqw", + "Description": [ + "Murupi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mqw" + }, + { + "Type": 1, + "SubTag": "mqx", + "Description": [ + "Mamuju" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mqx" + }, + { + "Type": 1, + "SubTag": "mqy", + "Description": [ + "Manggarai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mqy" + }, + { + "Type": 1, + "SubTag": "mqz", + "Description": [ + "Pano" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mqz" + }, + { + "Type": 1, + "SubTag": "mra", + "Description": [ + "Mlabri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mra" + }, + { + "Type": 1, + "SubTag": "mrb", + "Description": [ + "Marino" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mrb" + }, + { + "Type": 1, + "SubTag": "mrc", + "Description": [ + "Maricopa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mrc" + }, + { + "Type": 1, + "SubTag": "mrd", + "Description": [ + "Western Magar" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mrd" + }, + { + "Type": 1, + "SubTag": "mre", + "Description": [ + "Martha\u0027s Vineyard Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mre" + }, + { + "Type": 1, + "SubTag": "mrf", + "Description": [ + "Elseng" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mrf" + }, + { + "Type": 1, + "SubTag": "mrg", + "Description": [ + "Mising" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mrg" + }, + { + "Type": 1, + "SubTag": "mrh", + "Description": [ + "Mara Chin" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mrh" + }, + { + "Type": 1, + "SubTag": "mrj", + "Description": [ + "Western Mari" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "chm", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mrj" + }, + { + "Type": 1, + "SubTag": "mrk", + "Description": [ + "Hmwaveke" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mrk" + }, + { + "Type": 1, + "SubTag": "mrl", + "Description": [ + "Mortlockese" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mrl" + }, + { + "Type": 1, + "SubTag": "mrm", + "Description": [ + "Merlav", + "Mwerlap" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mrm" + }, + { + "Type": 1, + "SubTag": "mrn", + "Description": [ + "Cheke Holo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mrn" + }, + { + "Type": 1, + "SubTag": "mro", + "Description": [ + "Mru" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mro" + }, + { + "Type": 1, + "SubTag": "mrp", + "Description": [ + "Morouas" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mrp" + }, + { + "Type": 1, + "SubTag": "mrq", + "Description": [ + "North Marquesan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mrq" + }, + { + "Type": 1, + "SubTag": "mrr", + "Description": [ + "Maria (India)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mrr" + }, + { + "Type": 1, + "SubTag": "mrs", + "Description": [ + "Maragus" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mrs" + }, + { + "Type": 1, + "SubTag": "mrt", + "Description": [ + "Marghi Central" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mrt" + }, + { + "Type": 1, + "SubTag": "mru", + "Description": [ + "Mono (Cameroon)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mru" + }, + { + "Type": 1, + "SubTag": "mrv", + "Description": [ + "Mangareva" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mrv" + }, + { + "Type": 1, + "SubTag": "mrw", + "Description": [ + "Maranao" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mrw" + }, + { + "Type": 1, + "SubTag": "mrx", + "Description": [ + "Maremgi", + "Dineor" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mrx" + }, + { + "Type": 1, + "SubTag": "mry", + "Description": [ + "Mandaya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mry" + }, + { + "Type": 1, + "SubTag": "mrz", + "Description": [ + "Marind" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mrz" + }, + { + "Type": 1, + "SubTag": "msb", + "Description": [ + "Masbatenyo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "msb" + }, + { + "Type": 1, + "SubTag": "msc", + "Description": [ + "Sankaran Maninka" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "man", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "msc" + }, + { + "Type": 1, + "SubTag": "msd", + "Description": [ + "Yucatec Maya Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "msd" + }, + { + "Type": 1, + "SubTag": "mse", + "Description": [ + "Musey" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mse" + }, + { + "Type": 1, + "SubTag": "msf", + "Description": [ + "Mekwei" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "msf" + }, + { + "Type": 1, + "SubTag": "msg", + "Description": [ + "Moraid" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "msg" + }, + { + "Type": 1, + "SubTag": "msh", + "Description": [ + "Masikoro Malagasy" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "mg", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "msh" + }, + { + "Type": 1, + "SubTag": "msi", + "Description": [ + "Sabah Malay" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ms", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "msi" + }, + { + "Type": 1, + "SubTag": "msj", + "Description": [ + "Ma (Democratic Republic of Congo)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "msj" + }, + { + "Type": 1, + "SubTag": "msk", + "Description": [ + "Mansaka" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "msk" + }, + { + "Type": 1, + "SubTag": "msl", + "Description": [ + "Molof", + "Poule" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "msl" + }, + { + "Type": 1, + "SubTag": "msm", + "Description": [ + "Agusan Manobo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "msm" + }, + { + "Type": 1, + "SubTag": "msn", + "Description": [ + "Vur\u00EBs" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "msn" + }, + { + "Type": 1, + "SubTag": "mso", + "Description": [ + "Mombum" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mso" + }, + { + "Type": 1, + "SubTag": "msp", + "Description": [ + "Maritsau\u00E1" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "msp" + }, + { + "Type": 1, + "SubTag": "msq", + "Description": [ + "Caac" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "msq" + }, + { + "Type": 1, + "SubTag": "msr", + "Description": [ + "Mongolian Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "msr" + }, + { + "Type": 1, + "SubTag": "mss", + "Description": [ + "West Masela" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mss" + }, + { + "Type": 1, + "SubTag": "mst", + "Description": [ + "Cataelano Mandaya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2010-03-11", + "Comments": [], + "Prefix": [], + "PreferredValue": "mry", + "Tag": "", + "TagAny": "mst" + }, + { + "Type": 1, + "SubTag": "msu", + "Description": [ + "Musom" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "msu" + }, + { + "Type": 1, + "SubTag": "msv", + "Description": [ + "Maslam" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "msv" + }, + { + "Type": 1, + "SubTag": "msw", + "Description": [ + "Mansoanka" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "msw" + }, + { + "Type": 1, + "SubTag": "msx", + "Description": [ + "Moresada" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "msx" + }, + { + "Type": 1, + "SubTag": "msy", + "Description": [ + "Aruamu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "msy" + }, + { + "Type": 1, + "SubTag": "msz", + "Description": [ + "Momare" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "msz" + }, + { + "Type": 1, + "SubTag": "mta", + "Description": [ + "Cotabato Manobo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mta" + }, + { + "Type": 1, + "SubTag": "mtb", + "Description": [ + "Anyin Morofo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mtb" + }, + { + "Type": 1, + "SubTag": "mtc", + "Description": [ + "Munit" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mtc" + }, + { + "Type": 1, + "SubTag": "mtd", + "Description": [ + "Mualang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mtd" + }, + { + "Type": 1, + "SubTag": "mte", + "Description": [ + "Mono (Solomon Islands)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mte" + }, + { + "Type": 1, + "SubTag": "mtf", + "Description": [ + "Murik (Papua New Guinea)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mtf" + }, + { + "Type": 1, + "SubTag": "mtg", + "Description": [ + "Una" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mtg" + }, + { + "Type": 1, + "SubTag": "mth", + "Description": [ + "Munggui" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mth" + }, + { + "Type": 1, + "SubTag": "mti", + "Description": [ + "Maiwa (Papua New Guinea)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mti" + }, + { + "Type": 1, + "SubTag": "mtj", + "Description": [ + "Moskona" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mtj" + }, + { + "Type": 1, + "SubTag": "mtk", + "Description": [ + "Mbe\u0027" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mtk" + }, + { + "Type": 1, + "SubTag": "mtl", + "Description": [ + "Montol" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mtl" + }, + { + "Type": 1, + "SubTag": "mtm", + "Description": [ + "Mator" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mtm" + }, + { + "Type": 1, + "SubTag": "mtn", + "Description": [ + "Matagalpa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mtn" + }, + { + "Type": 1, + "SubTag": "mto", + "Description": [ + "Totontepec Mixe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mto" + }, + { + "Type": 1, + "SubTag": "mtp", + "Description": [ + "Wich\u00ED Lhamt\u00E9s Nocten" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mtp" + }, + { + "Type": 1, + "SubTag": "mtq", + "Description": [ + "Muong" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mtq" + }, + { + "Type": 1, + "SubTag": "mtr", + "Description": [ + "Mewari" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "mwr", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mtr" + }, + { + "Type": 1, + "SubTag": "mts", + "Description": [ + "Yora" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mts" + }, + { + "Type": 1, + "SubTag": "mtt", + "Description": [ + "Mota" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mtt" + }, + { + "Type": 1, + "SubTag": "mtu", + "Description": [ + "Tututepec Mixtec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mtu" + }, + { + "Type": 1, + "SubTag": "mtv", + "Description": [ + "Asaro\u0027o" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mtv" + }, + { + "Type": 1, + "SubTag": "mtw", + "Description": [ + "Southern Binukidnon" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mtw" + }, + { + "Type": 1, + "SubTag": "mtx", + "Description": [ + "Tida\u00E1 Mixtec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mtx" + }, + { + "Type": 1, + "SubTag": "mty", + "Description": [ + "Nabi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mty" + }, + { + "Type": 1, + "SubTag": "mua", + "Description": [ + "Mundang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mua" + }, + { + "Type": 1, + "SubTag": "mub", + "Description": [ + "Mubi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mub" + }, + { + "Type": 1, + "SubTag": "muc", + "Description": [ + "Ajumbu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "muc" + }, + { + "Type": 1, + "SubTag": "mud", + "Description": [ + "Mednyj Aleut" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mud" + }, + { + "Type": 1, + "SubTag": "mue", + "Description": [ + "Media Lengua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mue" + }, + { + "Type": 1, + "SubTag": "mug", + "Description": [ + "Musgu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mug" + }, + { + "Type": 1, + "SubTag": "muh", + "Description": [ + "M\u00FCnd\u00FC" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "muh" + }, + { + "Type": 1, + "SubTag": "mui", + "Description": [ + "Musi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ms", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mui" + }, + { + "Type": 1, + "SubTag": "muj", + "Description": [ + "Mabire" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "muj" + }, + { + "Type": 1, + "SubTag": "muk", + "Description": [ + "Mugom" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "muk" + }, + { + "Type": 1, + "SubTag": "mul", + "Description": [ + "Multiple languages" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "special", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mul" + }, + { + "Type": 1, + "SubTag": "mum", + "Description": [ + "Maiwala" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mum" + }, + { + "Type": 1, + "SubTag": "mun", + "Description": [ + "Munda languages" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mun" + }, + { + "Type": 1, + "SubTag": "muo", + "Description": [ + "Nyong" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "muo" + }, + { + "Type": 1, + "SubTag": "mup", + "Description": [ + "Malvi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "raj", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mup" + }, + { + "Type": 1, + "SubTag": "muq", + "Description": [ + "Eastern Xiangxi Miao" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "hmn", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "muq" + }, + { + "Type": 1, + "SubTag": "mur", + "Description": [ + "Murle" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mur" + }, + { + "Type": 1, + "SubTag": "mus", + "Description": [ + "Creek" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mus" + }, + { + "Type": 1, + "SubTag": "mut", + "Description": [ + "Western Muria" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mut" + }, + { + "Type": 1, + "SubTag": "muu", + "Description": [ + "Yaaku" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "muu" + }, + { + "Type": 1, + "SubTag": "muv", + "Description": [ + "Muthuvan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "muv" + }, + { + "Type": 1, + "SubTag": "mux", + "Description": [ + "Bo-Ung" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mux" + }, + { + "Type": 1, + "SubTag": "muy", + "Description": [ + "Muyang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "muy" + }, + { + "Type": 1, + "SubTag": "muz", + "Description": [ + "Mursi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "muz" + }, + { + "Type": 1, + "SubTag": "mva", + "Description": [ + "Manam" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mva" + }, + { + "Type": 1, + "SubTag": "mvb", + "Description": [ + "Mattole" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mvb" + }, + { + "Type": 1, + "SubTag": "mvd", + "Description": [ + "Mamboru" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mvd" + }, + { + "Type": 1, + "SubTag": "mve", + "Description": [ + "Marwari (Pakistan)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "mwr", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mve" + }, + { + "Type": 1, + "SubTag": "mvf", + "Description": [ + "Peripheral Mongolian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "mn", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mvf" + }, + { + "Type": 1, + "SubTag": "mvg", + "Description": [ + "Yucua\u00F1e Mixtec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mvg" + }, + { + "Type": 1, + "SubTag": "mvh", + "Description": [ + "Mulgi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mvh" + }, + { + "Type": 1, + "SubTag": "mvi", + "Description": [ + "Miyako" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mvi" + }, + { + "Type": 1, + "SubTag": "mvk", + "Description": [ + "Mekmek" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mvk" + }, + { + "Type": 1, + "SubTag": "mvl", + "Description": [ + "Mbara (Australia)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mvl" + }, + { + "Type": 1, + "SubTag": "mvm", + "Description": [ + "Muya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2021-02-20", + "Comments": [ + "see emq, wmg" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mvm" + }, + { + "Type": 1, + "SubTag": "mvn", + "Description": [ + "Minaveha" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mvn" + }, + { + "Type": 1, + "SubTag": "mvo", + "Description": [ + "Marovo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mvo" + }, + { + "Type": 1, + "SubTag": "mvp", + "Description": [ + "Duri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mvp" + }, + { + "Type": 1, + "SubTag": "mvq", + "Description": [ + "Moere" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mvq" + }, + { + "Type": 1, + "SubTag": "mvr", + "Description": [ + "Marau" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mvr" + }, + { + "Type": 1, + "SubTag": "mvs", + "Description": [ + "Massep" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mvs" + }, + { + "Type": 1, + "SubTag": "mvt", + "Description": [ + "Mpotovoro" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mvt" + }, + { + "Type": 1, + "SubTag": "mvu", + "Description": [ + "Marfa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mvu" + }, + { + "Type": 1, + "SubTag": "mvv", + "Description": [ + "Tagal Murut" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mvv" + }, + { + "Type": 1, + "SubTag": "mvw", + "Description": [ + "Machinga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mvw" + }, + { + "Type": 1, + "SubTag": "mvx", + "Description": [ + "Meoswar" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mvx" + }, + { + "Type": 1, + "SubTag": "mvy", + "Description": [ + "Indus Kohistani" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mvy" + }, + { + "Type": 1, + "SubTag": "mvz", + "Description": [ + "Mesqan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mvz" + }, + { + "Type": 1, + "SubTag": "mwa", + "Description": [ + "Mwatebu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mwa" + }, + { + "Type": 1, + "SubTag": "mwb", + "Description": [ + "Juwal" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mwb" + }, + { + "Type": 1, + "SubTag": "mwc", + "Description": [ + "Are" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mwc" + }, + { + "Type": 1, + "SubTag": "mwd", + "Description": [ + "Mudbura" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2013-09-10", + "Comments": [ + "see dmw, xrq" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mwd" + }, + { + "Type": 1, + "SubTag": "mwe", + "Description": [ + "Mwera (Chimwera)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mwe" + }, + { + "Type": 1, + "SubTag": "mwf", + "Description": [ + "Murrinh-Patha" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mwf" + }, + { + "Type": 1, + "SubTag": "mwg", + "Description": [ + "Aiklep" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mwg" + }, + { + "Type": 1, + "SubTag": "mwh", + "Description": [ + "Mouk-Aria" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mwh" + }, + { + "Type": 1, + "SubTag": "mwi", + "Description": [ + "Labo", + "Ninde" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mwi" + }, + { + "Type": 1, + "SubTag": "mwj", + "Description": [ + "Maligo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2015-02-12", + "Comments": [], + "Prefix": [], + "PreferredValue": "vaj", + "Tag": "", + "TagAny": "mwj" + }, + { + "Type": 1, + "SubTag": "mwk", + "Description": [ + "Kita Maninkakan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "man", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mwk" + }, + { + "Type": 1, + "SubTag": "mwl", + "Description": [ + "Mirandese" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mwl" + }, + { + "Type": 1, + "SubTag": "mwm", + "Description": [ + "Sar" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mwm" + }, + { + "Type": 1, + "SubTag": "mwn", + "Description": [ + "Nyamwanga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mwn" + }, + { + "Type": 1, + "SubTag": "mwo", + "Description": [ + "Central Maewo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mwo" + }, + { + "Type": 1, + "SubTag": "mwp", + "Description": [ + "Kala Lagaw Ya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mwp" + }, + { + "Type": 1, + "SubTag": "mwq", + "Description": [ + "M\u00FCn Chin" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mwq" + }, + { + "Type": 1, + "SubTag": "mwr", + "Description": [ + "Marwari" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "macrolanguage", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mwr" + }, + { + "Type": 1, + "SubTag": "mws", + "Description": [ + "Mwimbi-Muthambi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mws" + }, + { + "Type": 1, + "SubTag": "mwt", + "Description": [ + "Moken" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mwt" + }, + { + "Type": 1, + "SubTag": "mwu", + "Description": [ + "Mittu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mwu" + }, + { + "Type": 1, + "SubTag": "mwv", + "Description": [ + "Mentawai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mwv" + }, + { + "Type": 1, + "SubTag": "mww", + "Description": [ + "Hmong Daw" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "hmn", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mww" + }, + { + "Type": 1, + "SubTag": "mwx", + "Description": [ + "Mediak" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2018-03-08", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mwx" + }, + { + "Type": 1, + "SubTag": "mwy", + "Description": [ + "Mosiro" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2018-03-08", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mwy" + }, + { + "Type": 1, + "SubTag": "mwz", + "Description": [ + "Moingi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mwz" + }, + { + "Type": 1, + "SubTag": "mxa", + "Description": [ + "Northwest Oaxaca Mixtec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mxa" + }, + { + "Type": 1, + "SubTag": "mxb", + "Description": [ + "Tezoatl\u00E1n Mixtec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mxb" + }, + { + "Type": 1, + "SubTag": "mxc", + "Description": [ + "Manyika" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mxc" + }, + { + "Type": 1, + "SubTag": "mxd", + "Description": [ + "Modang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mxd" + }, + { + "Type": 1, + "SubTag": "mxe", + "Description": [ + "Mele-Fila" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mxe" + }, + { + "Type": 1, + "SubTag": "mxf", + "Description": [ + "Malgbe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mxf" + }, + { + "Type": 1, + "SubTag": "mxg", + "Description": [ + "Mbangala" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mxg" + }, + { + "Type": 1, + "SubTag": "mxh", + "Description": [ + "Mvuba" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mxh" + }, + { + "Type": 1, + "SubTag": "mxi", + "Description": [ + "Mozarabic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mxi" + }, + { + "Type": 1, + "SubTag": "mxj", + "Description": [ + "Miju-Mishmi", + "Geman Deng" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mxj" + }, + { + "Type": 1, + "SubTag": "mxk", + "Description": [ + "Monumbo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mxk" + }, + { + "Type": 1, + "SubTag": "mxl", + "Description": [ + "Maxi Gbe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mxl" + }, + { + "Type": 1, + "SubTag": "mxm", + "Description": [ + "Meramera" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mxm" + }, + { + "Type": 1, + "SubTag": "mxn", + "Description": [ + "Moi (Indonesia)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mxn" + }, + { + "Type": 1, + "SubTag": "mxo", + "Description": [ + "Mbowe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mxo" + }, + { + "Type": 1, + "SubTag": "mxp", + "Description": [ + "Tlahuitoltepec Mixe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mxp" + }, + { + "Type": 1, + "SubTag": "mxq", + "Description": [ + "Juquila Mixe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mxq" + }, + { + "Type": 1, + "SubTag": "mxr", + "Description": [ + "Murik (Malaysia)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mxr" + }, + { + "Type": 1, + "SubTag": "mxs", + "Description": [ + "Huitepec Mixtec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mxs" + }, + { + "Type": 1, + "SubTag": "mxt", + "Description": [ + "Jamiltepec Mixtec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mxt" + }, + { + "Type": 1, + "SubTag": "mxu", + "Description": [ + "Mada (Cameroon)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mxu" + }, + { + "Type": 1, + "SubTag": "mxv", + "Description": [ + "Metlat\u00F3noc Mixtec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mxv" + }, + { + "Type": 1, + "SubTag": "mxw", + "Description": [ + "Namo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mxw" + }, + { + "Type": 1, + "SubTag": "mxx", + "Description": [ + "Mahou", + "Mawukakan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mxx" + }, + { + "Type": 1, + "SubTag": "mxy", + "Description": [ + "Southeastern Nochixtl\u00E1n Mixtec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mxy" + }, + { + "Type": 1, + "SubTag": "mxz", + "Description": [ + "Central Masela" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mxz" + }, + { + "Type": 1, + "SubTag": "myb", + "Description": [ + "Mbay" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "myb" + }, + { + "Type": 1, + "SubTag": "myc", + "Description": [ + "Mayeka" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "myc" + }, + { + "Type": 1, + "SubTag": "myd", + "Description": [ + "Maramba" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2019-04-16", + "Comments": [], + "Prefix": [], + "PreferredValue": "aog", + "Tag": "", + "TagAny": "myd" + }, + { + "Type": 1, + "SubTag": "mye", + "Description": [ + "Myene" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mye" + }, + { + "Type": 1, + "SubTag": "myf", + "Description": [ + "Bambassi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "myf" + }, + { + "Type": 1, + "SubTag": "myg", + "Description": [ + "Manta" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "myg" + }, + { + "Type": 1, + "SubTag": "myh", + "Description": [ + "Makah" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "myh" + }, + { + "Type": 1, + "SubTag": "myi", + "Description": [ + "Mina (India)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2019-04-16", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "myi" + }, + { + "Type": 1, + "SubTag": "myj", + "Description": [ + "Mangayat" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "myj" + }, + { + "Type": 1, + "SubTag": "myk", + "Description": [ + "Mamara Senoufo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "myk" + }, + { + "Type": 1, + "SubTag": "myl", + "Description": [ + "Moma" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "myl" + }, + { + "Type": 1, + "SubTag": "mym", + "Description": [ + "Me\u0027en" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mym" + }, + { + "Type": 1, + "SubTag": "myn", + "Description": [ + "Mayan languages" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "myn" + }, + { + "Type": 1, + "SubTag": "myo", + "Description": [ + "Anfillo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "myo" + }, + { + "Type": 1, + "SubTag": "myp", + "Description": [ + "Pirah\u00E3" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "myp" + }, + { + "Type": 1, + "SubTag": "myq", + "Description": [ + "Forest Maninka" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "man", + "Deprecated": "2013-09-10", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "myq" + }, + { + "Type": 1, + "SubTag": "myr", + "Description": [ + "Muniche" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "myr" + }, + { + "Type": 1, + "SubTag": "mys", + "Description": [ + "Mesmes" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mys" + }, + { + "Type": 1, + "SubTag": "myt", + "Description": [ + "Sangab Mandaya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2010-03-11", + "Comments": [], + "Prefix": [], + "PreferredValue": "mry", + "Tag": "", + "TagAny": "myt" + }, + { + "Type": 1, + "SubTag": "myu", + "Description": [ + "Munduruk\u00FA" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "myu" + }, + { + "Type": 1, + "SubTag": "myv", + "Description": [ + "Erzya" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "myv" + }, + { + "Type": 1, + "SubTag": "myw", + "Description": [ + "Muyuw" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "myw" + }, + { + "Type": 1, + "SubTag": "myx", + "Description": [ + "Masaaba" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "myx" + }, + { + "Type": 1, + "SubTag": "myy", + "Description": [ + "Macuna" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "myy" + }, + { + "Type": 1, + "SubTag": "myz", + "Description": [ + "Classical Mandaic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "myz" + }, + { + "Type": 1, + "SubTag": "mza", + "Description": [ + "Santa Mar\u00EDa Zacatepec Mixtec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mza" + }, + { + "Type": 1, + "SubTag": "mzb", + "Description": [ + "Tumzabt" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mzb" + }, + { + "Type": 1, + "SubTag": "mzc", + "Description": [ + "Madagascar Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mzc" + }, + { + "Type": 1, + "SubTag": "mzd", + "Description": [ + "Malimba" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mzd" + }, + { + "Type": 1, + "SubTag": "mze", + "Description": [ + "Morawa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mze" + }, + { + "Type": 1, + "SubTag": "mzg", + "Description": [ + "Monastic Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mzg" + }, + { + "Type": 1, + "SubTag": "mzh", + "Description": [ + "Wich\u00ED Lhamt\u00E9s G\u00FCisnay" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mzh" + }, + { + "Type": 1, + "SubTag": "mzi", + "Description": [ + "Ixcatl\u00E1n Mazatec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mzi" + }, + { + "Type": 1, + "SubTag": "mzj", + "Description": [ + "Manya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mzj" + }, + { + "Type": 1, + "SubTag": "mzk", + "Description": [ + "Nigeria Mambila" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mzk" + }, + { + "Type": 1, + "SubTag": "mzl", + "Description": [ + "Mazatl\u00E1n Mixe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mzl" + }, + { + "Type": 1, + "SubTag": "mzm", + "Description": [ + "Mumuye" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mzm" + }, + { + "Type": 1, + "SubTag": "mzn", + "Description": [ + "Mazanderani" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mzn" + }, + { + "Type": 1, + "SubTag": "mzo", + "Description": [ + "Matipuhy" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mzo" + }, + { + "Type": 1, + "SubTag": "mzp", + "Description": [ + "Movima" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mzp" + }, + { + "Type": 1, + "SubTag": "mzq", + "Description": [ + "Mori Atas" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mzq" + }, + { + "Type": 1, + "SubTag": "mzr", + "Description": [ + "Mar\u00FAbo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mzr" + }, + { + "Type": 1, + "SubTag": "mzs", + "Description": [ + "Macanese" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mzs" + }, + { + "Type": 1, + "SubTag": "mzt", + "Description": [ + "Mintil" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mzt" + }, + { + "Type": 1, + "SubTag": "mzu", + "Description": [ + "Inapang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mzu" + }, + { + "Type": 1, + "SubTag": "mzv", + "Description": [ + "Manza" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mzv" + }, + { + "Type": 1, + "SubTag": "mzw", + "Description": [ + "Deg" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mzw" + }, + { + "Type": 1, + "SubTag": "mzx", + "Description": [ + "Mawayana" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mzx" + }, + { + "Type": 1, + "SubTag": "mzy", + "Description": [ + "Mozambican Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mzy" + }, + { + "Type": 1, + "SubTag": "mzz", + "Description": [ + "Maiadomu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "mzz" + }, + { + "Type": 1, + "SubTag": "naa", + "Description": [ + "Namla" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "naa" + }, + { + "Type": 1, + "SubTag": "nab", + "Description": [ + "Southern Nambiku\u00E1ra" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nab" + }, + { + "Type": 1, + "SubTag": "nac", + "Description": [ + "Narak" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nac" + }, + { + "Type": 1, + "SubTag": "nad", + "Description": [ + "Nijadali" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2016-05-30", + "Comments": [], + "Prefix": [], + "PreferredValue": "xny", + "Tag": "", + "TagAny": "nad" + }, + { + "Type": 1, + "SubTag": "nae", + "Description": [ + "Naka\u0027ela" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nae" + }, + { + "Type": 1, + "SubTag": "naf", + "Description": [ + "Nabak" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "naf" + }, + { + "Type": 1, + "SubTag": "nag", + "Description": [ + "Naga Pidgin" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nag" + }, + { + "Type": 1, + "SubTag": "nah", + "Description": [ + "Nahuatl languages" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nah" + }, + { + "Type": 1, + "SubTag": "nai", + "Description": [ + "North American Indian languages" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nai" + }, + { + "Type": 1, + "SubTag": "naj", + "Description": [ + "Nalu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "naj" + }, + { + "Type": 1, + "SubTag": "nak", + "Description": [ + "Nakanai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nak" + }, + { + "Type": 1, + "SubTag": "nal", + "Description": [ + "Nalik" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nal" + }, + { + "Type": 1, + "SubTag": "nam", + "Description": [ + "Ngan\u0027gityemerri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nam" + }, + { + "Type": 1, + "SubTag": "nan", + "Description": [ + "Min Nan Chinese" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zh", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nan" + }, + { + "Type": 1, + "SubTag": "nao", + "Description": [ + "Naaba" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nao" + }, + { + "Type": 1, + "SubTag": "nap", + "Description": [ + "Neapolitan" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nap" + }, + { + "Type": 1, + "SubTag": "naq", + "Description": [ + "Khoekhoe", + "Nama (Namibia)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "naq" + }, + { + "Type": 1, + "SubTag": "nar", + "Description": [ + "Iguta" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nar" + }, + { + "Type": 1, + "SubTag": "nas", + "Description": [ + "Naasioi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nas" + }, + { + "Type": 1, + "SubTag": "nat", + "Description": [ + "Ca\u0331hungwa\u0331rya\u0331", + "Hungworo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nat" + }, + { + "Type": 1, + "SubTag": "naw", + "Description": [ + "Nawuri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "naw" + }, + { + "Type": 1, + "SubTag": "nax", + "Description": [ + "Nakwi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nax" + }, + { + "Type": 1, + "SubTag": "nay", + "Description": [ + "Ngarrindjeri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nay" + }, + { + "Type": 1, + "SubTag": "naz", + "Description": [ + "Coatepec Nahuatl" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "naz" + }, + { + "Type": 1, + "SubTag": "nba", + "Description": [ + "Nyemba" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nba" + }, + { + "Type": 1, + "SubTag": "nbb", + "Description": [ + "Ndoe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nbb" + }, + { + "Type": 1, + "SubTag": "nbc", + "Description": [ + "Chang Naga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nbc" + }, + { + "Type": 1, + "SubTag": "nbd", + "Description": [ + "Ngbinda" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nbd" + }, + { + "Type": 1, + "SubTag": "nbe", + "Description": [ + "Konyak Naga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nbe" + }, + { + "Type": 1, + "SubTag": "nbf", + "Description": [ + "Naxi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2011-08-16", + "Comments": [ + "see nru, nxq" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nbf" + }, + { + "Type": 1, + "SubTag": "nbg", + "Description": [ + "Nagarchal" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nbg" + }, + { + "Type": 1, + "SubTag": "nbh", + "Description": [ + "Ngamo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nbh" + }, + { + "Type": 1, + "SubTag": "nbi", + "Description": [ + "Mao Naga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nbi" + }, + { + "Type": 1, + "SubTag": "nbj", + "Description": [ + "Ngarinyman" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nbj" + }, + { + "Type": 1, + "SubTag": "nbk", + "Description": [ + "Nake" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nbk" + }, + { + "Type": 1, + "SubTag": "nbm", + "Description": [ + "Ngbaka Ma\u0027bo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nbm" + }, + { + "Type": 1, + "SubTag": "nbn", + "Description": [ + "Kuri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nbn" + }, + { + "Type": 1, + "SubTag": "nbo", + "Description": [ + "Nkukoli" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nbo" + }, + { + "Type": 1, + "SubTag": "nbp", + "Description": [ + "Nnam" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nbp" + }, + { + "Type": 1, + "SubTag": "nbq", + "Description": [ + "Nggem" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nbq" + }, + { + "Type": 1, + "SubTag": "nbr", + "Description": [ + "Numana" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nbr" + }, + { + "Type": 1, + "SubTag": "nbs", + "Description": [ + "Namibian Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nbs" + }, + { + "Type": 1, + "SubTag": "nbt", + "Description": [ + "Na" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nbt" + }, + { + "Type": 1, + "SubTag": "nbu", + "Description": [ + "Rongmei Naga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nbu" + }, + { + "Type": 1, + "SubTag": "nbv", + "Description": [ + "Ngamambo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nbv" + }, + { + "Type": 1, + "SubTag": "nbw", + "Description": [ + "Southern Ngbandi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nbw" + }, + { + "Type": 1, + "SubTag": "nbx", + "Description": [ + "Ngura" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2013-09-10", + "Comments": [ + "see ekc, gll, jbi, xpt, xwk" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nbx" + }, + { + "Type": 1, + "SubTag": "nby", + "Description": [ + "Ningera" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nby" + }, + { + "Type": 1, + "SubTag": "nca", + "Description": [ + "Iyo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nca" + }, + { + "Type": 1, + "SubTag": "ncb", + "Description": [ + "Central Nicobarese" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ncb" + }, + { + "Type": 1, + "SubTag": "ncc", + "Description": [ + "Ponam" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ncc" + }, + { + "Type": 1, + "SubTag": "ncd", + "Description": [ + "Nachering" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ncd" + }, + { + "Type": 1, + "SubTag": "nce", + "Description": [ + "Yale" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nce" + }, + { + "Type": 1, + "SubTag": "ncf", + "Description": [ + "Notsi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ncf" + }, + { + "Type": 1, + "SubTag": "ncg", + "Description": [ + "Nisga\u0027a" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ncg" + }, + { + "Type": 1, + "SubTag": "nch", + "Description": [ + "Central Huasteca Nahuatl" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nch" + }, + { + "Type": 1, + "SubTag": "nci", + "Description": [ + "Classical Nahuatl" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nci" + }, + { + "Type": 1, + "SubTag": "ncj", + "Description": [ + "Northern Puebla Nahuatl" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ncj" + }, + { + "Type": 1, + "SubTag": "nck", + "Description": [ + "Na-kara" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nck" + }, + { + "Type": 1, + "SubTag": "ncl", + "Description": [ + "Michoac\u00E1n Nahuatl" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ncl" + }, + { + "Type": 1, + "SubTag": "ncm", + "Description": [ + "Nambo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ncm" + }, + { + "Type": 1, + "SubTag": "ncn", + "Description": [ + "Nauna" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ncn" + }, + { + "Type": 1, + "SubTag": "nco", + "Description": [ + "Sibe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nco" + }, + { + "Type": 1, + "SubTag": "ncp", + "Description": [ + "Ndaktup" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2018-03-08", + "Comments": [], + "Prefix": [], + "PreferredValue": "kdz", + "Tag": "", + "TagAny": "ncp" + }, + { + "Type": 1, + "SubTag": "ncq", + "Description": [ + "Northern Katang" + ], + "Added": "2017-02-23", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ncq" + }, + { + "Type": 1, + "SubTag": "ncr", + "Description": [ + "Ncane" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ncr" + }, + { + "Type": 1, + "SubTag": "ncs", + "Description": [ + "Nicaraguan Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ncs" + }, + { + "Type": 1, + "SubTag": "nct", + "Description": [ + "Chothe Naga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nct" + }, + { + "Type": 1, + "SubTag": "ncu", + "Description": [ + "Chumburung" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ncu" + }, + { + "Type": 1, + "SubTag": "ncx", + "Description": [ + "Central Puebla Nahuatl" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ncx" + }, + { + "Type": 1, + "SubTag": "ncz", + "Description": [ + "Natchez" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ncz" + }, + { + "Type": 1, + "SubTag": "nda", + "Description": [ + "Ndasa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nda" + }, + { + "Type": 1, + "SubTag": "ndb", + "Description": [ + "Kenswei Nsei" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ndb" + }, + { + "Type": 1, + "SubTag": "ndc", + "Description": [ + "Ndau" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ndc" + }, + { + "Type": 1, + "SubTag": "ndd", + "Description": [ + "Nde-Nsele-Nta" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ndd" + }, + { + "Type": 1, + "SubTag": "ndf", + "Description": [ + "Nadruvian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ndf" + }, + { + "Type": 1, + "SubTag": "ndg", + "Description": [ + "Ndengereko" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ndg" + }, + { + "Type": 1, + "SubTag": "ndh", + "Description": [ + "Ndali" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ndh" + }, + { + "Type": 1, + "SubTag": "ndi", + "Description": [ + "Samba Leko" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ndi" + }, + { + "Type": 1, + "SubTag": "ndj", + "Description": [ + "Ndamba" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ndj" + }, + { + "Type": 1, + "SubTag": "ndk", + "Description": [ + "Ndaka" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ndk" + }, + { + "Type": 1, + "SubTag": "ndl", + "Description": [ + "Ndolo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ndl" + }, + { + "Type": 1, + "SubTag": "ndm", + "Description": [ + "Ndam" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ndm" + }, + { + "Type": 1, + "SubTag": "ndn", + "Description": [ + "Ngundi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ndn" + }, + { + "Type": 1, + "SubTag": "ndp", + "Description": [ + "Ndo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ndp" + }, + { + "Type": 1, + "SubTag": "ndq", + "Description": [ + "Ndombe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ndq" + }, + { + "Type": 1, + "SubTag": "ndr", + "Description": [ + "Ndoola" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ndr" + }, + { + "Type": 1, + "SubTag": "nds", + "Description": [ + "Low German", + "Low Saxon" + ], + "Added": "2005-10-16", + "SuppressScript": "Latn", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nds" + }, + { + "Type": 1, + "SubTag": "ndt", + "Description": [ + "Ndunga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ndt" + }, + { + "Type": 1, + "SubTag": "ndu", + "Description": [ + "Dugun" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ndu" + }, + { + "Type": 1, + "SubTag": "ndv", + "Description": [ + "Ndut" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ndv" + }, + { + "Type": 1, + "SubTag": "ndw", + "Description": [ + "Ndobo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ndw" + }, + { + "Type": 1, + "SubTag": "ndx", + "Description": [ + "Nduga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ndx" + }, + { + "Type": 1, + "SubTag": "ndy", + "Description": [ + "Lutos" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ndy" + }, + { + "Type": 1, + "SubTag": "ndz", + "Description": [ + "Ndogo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ndz" + }, + { + "Type": 1, + "SubTag": "nea", + "Description": [ + "Eastern Ngad\u0027a" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nea" + }, + { + "Type": 1, + "SubTag": "neb", + "Description": [ + "Toura (C\u00F4te d\u0027Ivoire)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "neb" + }, + { + "Type": 1, + "SubTag": "nec", + "Description": [ + "Nedebang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nec" + }, + { + "Type": 1, + "SubTag": "ned", + "Description": [ + "Nde-Gbite" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ned" + }, + { + "Type": 1, + "SubTag": "nee", + "Description": [ + "N\u00EAl\u00EAmwa-Nixumwak" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nee" + }, + { + "Type": 1, + "SubTag": "nef", + "Description": [ + "Nefamese" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nef" + }, + { + "Type": 1, + "SubTag": "neg", + "Description": [ + "Negidal" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "neg" + }, + { + "Type": 1, + "SubTag": "neh", + "Description": [ + "Nyenkha" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "neh" + }, + { + "Type": 1, + "SubTag": "nei", + "Description": [ + "Neo-Hittite" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nei" + }, + { + "Type": 1, + "SubTag": "nej", + "Description": [ + "Neko" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nej" + }, + { + "Type": 1, + "SubTag": "nek", + "Description": [ + "Neku" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nek" + }, + { + "Type": 1, + "SubTag": "nem", + "Description": [ + "Nemi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nem" + }, + { + "Type": 1, + "SubTag": "nen", + "Description": [ + "Nengone" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nen" + }, + { + "Type": 1, + "SubTag": "neo", + "Description": [ + "N\u00E1-Meo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "neo" + }, + { + "Type": 1, + "SubTag": "neq", + "Description": [ + "North Central Mixe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "neq" + }, + { + "Type": 1, + "SubTag": "ner", + "Description": [ + "Yahadian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ner" + }, + { + "Type": 1, + "SubTag": "nes", + "Description": [ + "Bhoti Kinnauri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nes" + }, + { + "Type": 1, + "SubTag": "net", + "Description": [ + "Nete" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "net" + }, + { + "Type": 1, + "SubTag": "neu", + "Description": [ + "Neo" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "neu" + }, + { + "Type": 1, + "SubTag": "nev", + "Description": [ + "Nyaheun" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nev" + }, + { + "Type": 1, + "SubTag": "new", + "Description": [ + "Nepal Bhasa", + "Newar", + "Newari" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "new" + }, + { + "Type": 1, + "SubTag": "nex", + "Description": [ + "Neme" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nex" + }, + { + "Type": 1, + "SubTag": "ney", + "Description": [ + "Neyo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ney" + }, + { + "Type": 1, + "SubTag": "nez", + "Description": [ + "Nez Perce" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nez" + }, + { + "Type": 1, + "SubTag": "nfa", + "Description": [ + "Dhao" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nfa" + }, + { + "Type": 1, + "SubTag": "nfd", + "Description": [ + "Ahwai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nfd" + }, + { + "Type": 1, + "SubTag": "nfl", + "Description": [ + "Ayiwo", + "\u00C4iwoo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nfl" + }, + { + "Type": 1, + "SubTag": "nfr", + "Description": [ + "Nafaanra" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nfr" + }, + { + "Type": 1, + "SubTag": "nfu", + "Description": [ + "Mfumte" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nfu" + }, + { + "Type": 1, + "SubTag": "nga", + "Description": [ + "Ngbaka" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nga" + }, + { + "Type": 1, + "SubTag": "ngb", + "Description": [ + "Northern Ngbandi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ngb" + }, + { + "Type": 1, + "SubTag": "ngc", + "Description": [ + "Ngombe (Democratic Republic of Congo)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ngc" + }, + { + "Type": 1, + "SubTag": "ngd", + "Description": [ + "Ngando (Central African Republic)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ngd" + }, + { + "Type": 1, + "SubTag": "nge", + "Description": [ + "Ngemba" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nge" + }, + { + "Type": 1, + "SubTag": "ngf", + "Description": [ + "Trans-New Guinea languages" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ngf" + }, + { + "Type": 1, + "SubTag": "ngg", + "Description": [ + "Ngbaka Manza" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ngg" + }, + { + "Type": 1, + "SubTag": "ngh", + "Description": [ + "N\u01C1ng" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ngh" + }, + { + "Type": 1, + "SubTag": "ngi", + "Description": [ + "Ngizim" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ngi" + }, + { + "Type": 1, + "SubTag": "ngj", + "Description": [ + "Ngie" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ngj" + }, + { + "Type": 1, + "SubTag": "ngk", + "Description": [ + "Dalabon" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ngk" + }, + { + "Type": 1, + "SubTag": "ngl", + "Description": [ + "Lomwe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ngl" + }, + { + "Type": 1, + "SubTag": "ngm", + "Description": [ + "Ngatik Men\u0027s Creole" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ngm" + }, + { + "Type": 1, + "SubTag": "ngn", + "Description": [ + "Ngwo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ngn" + }, + { + "Type": 1, + "SubTag": "ngo", + "Description": [ + "Ngoni" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2021-02-20", + "Comments": [ + "see xnj, xnq" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ngo" + }, + { + "Type": 1, + "SubTag": "ngp", + "Description": [ + "Ngulu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ngp" + }, + { + "Type": 1, + "SubTag": "ngq", + "Description": [ + "Ngurimi", + "Ngoreme" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ngq" + }, + { + "Type": 1, + "SubTag": "ngr", + "Description": [ + "Engdewu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ngr" + }, + { + "Type": 1, + "SubTag": "ngs", + "Description": [ + "Gvoko" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ngs" + }, + { + "Type": 1, + "SubTag": "ngt", + "Description": [ + "Kriang", + "Ngeq" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ngt" + }, + { + "Type": 1, + "SubTag": "ngu", + "Description": [ + "Guerrero Nahuatl" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ngu" + }, + { + "Type": 1, + "SubTag": "ngv", + "Description": [ + "Nagumi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ngv" + }, + { + "Type": 1, + "SubTag": "ngw", + "Description": [ + "Ngwaba" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ngw" + }, + { + "Type": 1, + "SubTag": "ngx", + "Description": [ + "Nggwahyi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ngx" + }, + { + "Type": 1, + "SubTag": "ngy", + "Description": [ + "Tibea" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ngy" + }, + { + "Type": 1, + "SubTag": "ngz", + "Description": [ + "Ngungwel" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ngz" + }, + { + "Type": 1, + "SubTag": "nha", + "Description": [ + "Nhanda" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nha" + }, + { + "Type": 1, + "SubTag": "nhb", + "Description": [ + "Beng" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nhb" + }, + { + "Type": 1, + "SubTag": "nhc", + "Description": [ + "Tabasco Nahuatl" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nhc" + }, + { + "Type": 1, + "SubTag": "nhd", + "Description": [ + "Chirip\u00E1", + "Ava Guaran\u00ED" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "gn", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nhd" + }, + { + "Type": 1, + "SubTag": "nhe", + "Description": [ + "Eastern Huasteca Nahuatl" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nhe" + }, + { + "Type": 1, + "SubTag": "nhf", + "Description": [ + "Nhuwala" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nhf" + }, + { + "Type": 1, + "SubTag": "nhg", + "Description": [ + "Tetelcingo Nahuatl" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nhg" + }, + { + "Type": 1, + "SubTag": "nhh", + "Description": [ + "Nahari" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nhh" + }, + { + "Type": 1, + "SubTag": "nhi", + "Description": [ + "Zacatl\u00E1n-Ahuacatl\u00E1n-Tepetzintla Nahuatl" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nhi" + }, + { + "Type": 1, + "SubTag": "nhk", + "Description": [ + "Isthmus-Cosoleacaque Nahuatl" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nhk" + }, + { + "Type": 1, + "SubTag": "nhm", + "Description": [ + "Morelos Nahuatl" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nhm" + }, + { + "Type": 1, + "SubTag": "nhn", + "Description": [ + "Central Nahuatl" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nhn" + }, + { + "Type": 1, + "SubTag": "nho", + "Description": [ + "Takuu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nho" + }, + { + "Type": 1, + "SubTag": "nhp", + "Description": [ + "Isthmus-Pajapan Nahuatl" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nhp" + }, + { + "Type": 1, + "SubTag": "nhq", + "Description": [ + "Huaxcaleca Nahuatl" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nhq" + }, + { + "Type": 1, + "SubTag": "nhr", + "Description": [ + "Naro" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nhr" + }, + { + "Type": 1, + "SubTag": "nht", + "Description": [ + "Ometepec Nahuatl" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nht" + }, + { + "Type": 1, + "SubTag": "nhu", + "Description": [ + "Noone" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nhu" + }, + { + "Type": 1, + "SubTag": "nhv", + "Description": [ + "Temascaltepec Nahuatl" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nhv" + }, + { + "Type": 1, + "SubTag": "nhw", + "Description": [ + "Western Huasteca Nahuatl" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nhw" + }, + { + "Type": 1, + "SubTag": "nhx", + "Description": [ + "Isthmus-Mecayapan Nahuatl" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nhx" + }, + { + "Type": 1, + "SubTag": "nhy", + "Description": [ + "Northern Oaxaca Nahuatl" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nhy" + }, + { + "Type": 1, + "SubTag": "nhz", + "Description": [ + "Santa Mar\u00EDa La Alta Nahuatl" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nhz" + }, + { + "Type": 1, + "SubTag": "nia", + "Description": [ + "Nias" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nia" + }, + { + "Type": 1, + "SubTag": "nib", + "Description": [ + "Nakame" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nib" + }, + { + "Type": 1, + "SubTag": "nic", + "Description": [ + "Niger-Kordofanian languages" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nic" + }, + { + "Type": 1, + "SubTag": "nid", + "Description": [ + "Ngandi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nid" + }, + { + "Type": 1, + "SubTag": "nie", + "Description": [ + "Niellim" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nie" + }, + { + "Type": 1, + "SubTag": "nif", + "Description": [ + "Nek" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nif" + }, + { + "Type": 1, + "SubTag": "nig", + "Description": [ + "Ngalakgan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nig" + }, + { + "Type": 1, + "SubTag": "nih", + "Description": [ + "Nyiha (Tanzania)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nih" + }, + { + "Type": 1, + "SubTag": "nii", + "Description": [ + "Nii" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nii" + }, + { + "Type": 1, + "SubTag": "nij", + "Description": [ + "Ngaju" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nij" + }, + { + "Type": 1, + "SubTag": "nik", + "Description": [ + "Southern Nicobarese" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nik" + }, + { + "Type": 1, + "SubTag": "nil", + "Description": [ + "Nila" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nil" + }, + { + "Type": 1, + "SubTag": "nim", + "Description": [ + "Nilamba" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nim" + }, + { + "Type": 1, + "SubTag": "nin", + "Description": [ + "Ninzo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nin" + }, + { + "Type": 1, + "SubTag": "nio", + "Description": [ + "Nganasan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nio" + }, + { + "Type": 1, + "SubTag": "niq", + "Description": [ + "Nandi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "kln", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "niq" + }, + { + "Type": 1, + "SubTag": "nir", + "Description": [ + "Nimboran" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nir" + }, + { + "Type": 1, + "SubTag": "nis", + "Description": [ + "Nimi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nis" + }, + { + "Type": 1, + "SubTag": "nit", + "Description": [ + "Southeastern Kolami" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nit" + }, + { + "Type": 1, + "SubTag": "niu", + "Description": [ + "Niuean" + ], + "Added": "2005-10-16", + "SuppressScript": "Latn", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "niu" + }, + { + "Type": 1, + "SubTag": "niv", + "Description": [ + "Gilyak" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "niv" + }, + { + "Type": 1, + "SubTag": "niw", + "Description": [ + "Nimo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "niw" + }, + { + "Type": 1, + "SubTag": "nix", + "Description": [ + "Hema" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nix" + }, + { + "Type": 1, + "SubTag": "niy", + "Description": [ + "Ngiti" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "niy" + }, + { + "Type": 1, + "SubTag": "niz", + "Description": [ + "Ningil" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "niz" + }, + { + "Type": 1, + "SubTag": "nja", + "Description": [ + "Nzanyi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nja" + }, + { + "Type": 1, + "SubTag": "njb", + "Description": [ + "Nocte Naga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "njb" + }, + { + "Type": 1, + "SubTag": "njd", + "Description": [ + "Ndonde Hamba" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "njd" + }, + { + "Type": 1, + "SubTag": "njh", + "Description": [ + "Lotha Naga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "njh" + }, + { + "Type": 1, + "SubTag": "nji", + "Description": [ + "Gudanji" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nji" + }, + { + "Type": 1, + "SubTag": "njj", + "Description": [ + "Njen" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "njj" + }, + { + "Type": 1, + "SubTag": "njl", + "Description": [ + "Njalgulgule" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "njl" + }, + { + "Type": 1, + "SubTag": "njm", + "Description": [ + "Angami Naga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "njm" + }, + { + "Type": 1, + "SubTag": "njn", + "Description": [ + "Liangmai Naga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "njn" + }, + { + "Type": 1, + "SubTag": "njo", + "Description": [ + "Ao Naga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "njo" + }, + { + "Type": 1, + "SubTag": "njr", + "Description": [ + "Njerep" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "njr" + }, + { + "Type": 1, + "SubTag": "njs", + "Description": [ + "Nisa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "njs" + }, + { + "Type": 1, + "SubTag": "njt", + "Description": [ + "Ndyuka-Trio Pidgin" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "njt" + }, + { + "Type": 1, + "SubTag": "nju", + "Description": [ + "Ngadjunmaya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nju" + }, + { + "Type": 1, + "SubTag": "njx", + "Description": [ + "Kunyi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "njx" + }, + { + "Type": 1, + "SubTag": "njy", + "Description": [ + "Njyem" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "njy" + }, + { + "Type": 1, + "SubTag": "njz", + "Description": [ + "Nyishi" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "njz" + }, + { + "Type": 1, + "SubTag": "nka", + "Description": [ + "Nkoya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nka" + }, + { + "Type": 1, + "SubTag": "nkb", + "Description": [ + "Khoibu Naga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nkb" + }, + { + "Type": 1, + "SubTag": "nkc", + "Description": [ + "Nkongho" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nkc" + }, + { + "Type": 1, + "SubTag": "nkd", + "Description": [ + "Koireng" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nkd" + }, + { + "Type": 1, + "SubTag": "nke", + "Description": [ + "Duke" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nke" + }, + { + "Type": 1, + "SubTag": "nkf", + "Description": [ + "Inpui Naga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nkf" + }, + { + "Type": 1, + "SubTag": "nkg", + "Description": [ + "Nekgini" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nkg" + }, + { + "Type": 1, + "SubTag": "nkh", + "Description": [ + "Khezha Naga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nkh" + }, + { + "Type": 1, + "SubTag": "nki", + "Description": [ + "Thangal Naga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nki" + }, + { + "Type": 1, + "SubTag": "nkj", + "Description": [ + "Nakai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nkj" + }, + { + "Type": 1, + "SubTag": "nkk", + "Description": [ + "Nokuku" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nkk" + }, + { + "Type": 1, + "SubTag": "nkm", + "Description": [ + "Namat" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nkm" + }, + { + "Type": 1, + "SubTag": "nkn", + "Description": [ + "Nkangala" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nkn" + }, + { + "Type": 1, + "SubTag": "nko", + "Description": [ + "Nkonya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nko" + }, + { + "Type": 1, + "SubTag": "nkp", + "Description": [ + "Niuatoputapu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nkp" + }, + { + "Type": 1, + "SubTag": "nkq", + "Description": [ + "Nkami" + ], + "Added": "2010-04-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nkq" + }, + { + "Type": 1, + "SubTag": "nkr", + "Description": [ + "Nukuoro" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nkr" + }, + { + "Type": 1, + "SubTag": "nks", + "Description": [ + "North Asmat" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nks" + }, + { + "Type": 1, + "SubTag": "nkt", + "Description": [ + "Nyika (Tanzania)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nkt" + }, + { + "Type": 1, + "SubTag": "nku", + "Description": [ + "Bouna Kulango" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nku" + }, + { + "Type": 1, + "SubTag": "nkv", + "Description": [ + "Nyika (Malawi and Zambia)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nkv" + }, + { + "Type": 1, + "SubTag": "nkw", + "Description": [ + "Nkutu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nkw" + }, + { + "Type": 1, + "SubTag": "nkx", + "Description": [ + "Nkoroo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nkx" + }, + { + "Type": 1, + "SubTag": "nkz", + "Description": [ + "Nkari" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nkz" + }, + { + "Type": 1, + "SubTag": "nla", + "Description": [ + "Ngombale" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nla" + }, + { + "Type": 1, + "SubTag": "nlc", + "Description": [ + "Nalca" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nlc" + }, + { + "Type": 1, + "SubTag": "nle", + "Description": [ + "East Nyala" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "luy", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nle" + }, + { + "Type": 1, + "SubTag": "nlg", + "Description": [ + "Gela" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nlg" + }, + { + "Type": 1, + "SubTag": "nli", + "Description": [ + "Grangali" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nli" + }, + { + "Type": 1, + "SubTag": "nlj", + "Description": [ + "Nyali" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nlj" + }, + { + "Type": 1, + "SubTag": "nlk", + "Description": [ + "Ninia Yali" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nlk" + }, + { + "Type": 1, + "SubTag": "nll", + "Description": [ + "Nihali" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nll" + }, + { + "Type": 1, + "SubTag": "nlm", + "Description": [ + "Mankiyali" + ], + "Added": "2018-03-08", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nlm" + }, + { + "Type": 1, + "SubTag": "nln", + "Description": [ + "Durango Nahuatl" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2012-08-12", + "Comments": [ + "see azd, azn" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nln" + }, + { + "Type": 1, + "SubTag": "nlo", + "Description": [ + "Ngul" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nlo" + }, + { + "Type": 1, + "SubTag": "nlq", + "Description": [ + "Lao Naga" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nlq" + }, + { + "Type": 1, + "SubTag": "nlr", + "Description": [ + "Ngarla" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2013-09-10", + "Comments": [ + "see nrk, ywg" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nlr" + }, + { + "Type": 1, + "SubTag": "nlu", + "Description": [ + "Nchumbulu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nlu" + }, + { + "Type": 1, + "SubTag": "nlv", + "Description": [ + "Orizaba Nahuatl" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nlv" + }, + { + "Type": 1, + "SubTag": "nlw", + "Description": [ + "Walangama" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nlw" + }, + { + "Type": 1, + "SubTag": "nlx", + "Description": [ + "Nahali" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nlx" + }, + { + "Type": 1, + "SubTag": "nly", + "Description": [ + "Nyamal" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nly" + }, + { + "Type": 1, + "SubTag": "nlz", + "Description": [ + "Nal\u00F6go" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nlz" + }, + { + "Type": 1, + "SubTag": "nma", + "Description": [ + "Maram Naga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nma" + }, + { + "Type": 1, + "SubTag": "nmb", + "Description": [ + "Big Nambas", + "V\u0027\u00EBnen Taut" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nmb" + }, + { + "Type": 1, + "SubTag": "nmc", + "Description": [ + "Ngam" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nmc" + }, + { + "Type": 1, + "SubTag": "nmd", + "Description": [ + "Ndumu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nmd" + }, + { + "Type": 1, + "SubTag": "nme", + "Description": [ + "Mzieme Naga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nme" + }, + { + "Type": 1, + "SubTag": "nmf", + "Description": [ + "Tangkhul Naga (India)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [ + "see ntx" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nmf" + }, + { + "Type": 1, + "SubTag": "nmg", + "Description": [ + "Kwasio" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nmg" + }, + { + "Type": 1, + "SubTag": "nmh", + "Description": [ + "Monsang Naga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nmh" + }, + { + "Type": 1, + "SubTag": "nmi", + "Description": [ + "Nyam" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nmi" + }, + { + "Type": 1, + "SubTag": "nmj", + "Description": [ + "Ngombe (Central African Republic)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nmj" + }, + { + "Type": 1, + "SubTag": "nmk", + "Description": [ + "Namakura" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nmk" + }, + { + "Type": 1, + "SubTag": "nml", + "Description": [ + "Ndemli" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nml" + }, + { + "Type": 1, + "SubTag": "nmm", + "Description": [ + "Manangba" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nmm" + }, + { + "Type": 1, + "SubTag": "nmn", + "Description": [ + "\u01C3X\u00F3\u00F5" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nmn" + }, + { + "Type": 1, + "SubTag": "nmo", + "Description": [ + "Moyon Naga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nmo" + }, + { + "Type": 1, + "SubTag": "nmp", + "Description": [ + "Nimanbur" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nmp" + }, + { + "Type": 1, + "SubTag": "nmq", + "Description": [ + "Nambya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nmq" + }, + { + "Type": 1, + "SubTag": "nmr", + "Description": [ + "Nimbari" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nmr" + }, + { + "Type": 1, + "SubTag": "nms", + "Description": [ + "Letemboi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nms" + }, + { + "Type": 1, + "SubTag": "nmt", + "Description": [ + "Namonuito" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nmt" + }, + { + "Type": 1, + "SubTag": "nmu", + "Description": [ + "Northeast Maidu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nmu" + }, + { + "Type": 1, + "SubTag": "nmv", + "Description": [ + "Ngamini" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nmv" + }, + { + "Type": 1, + "SubTag": "nmw", + "Description": [ + "Nimoa", + "Rifao" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nmw" + }, + { + "Type": 1, + "SubTag": "nmx", + "Description": [ + "Nama (Papua New Guinea)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nmx" + }, + { + "Type": 1, + "SubTag": "nmy", + "Description": [ + "Namuyi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nmy" + }, + { + "Type": 1, + "SubTag": "nmz", + "Description": [ + "Nawdm" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nmz" + }, + { + "Type": 1, + "SubTag": "nna", + "Description": [ + "Nyangumarta" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nna" + }, + { + "Type": 1, + "SubTag": "nnb", + "Description": [ + "Nande" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nnb" + }, + { + "Type": 1, + "SubTag": "nnc", + "Description": [ + "Nancere" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nnc" + }, + { + "Type": 1, + "SubTag": "nnd", + "Description": [ + "West Ambae" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nnd" + }, + { + "Type": 1, + "SubTag": "nne", + "Description": [ + "Ngandyera" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nne" + }, + { + "Type": 1, + "SubTag": "nnf", + "Description": [ + "Ngaing" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nnf" + }, + { + "Type": 1, + "SubTag": "nng", + "Description": [ + "Maring Naga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nng" + }, + { + "Type": 1, + "SubTag": "nnh", + "Description": [ + "Ngiemboon" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nnh" + }, + { + "Type": 1, + "SubTag": "nni", + "Description": [ + "North Nuaulu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nni" + }, + { + "Type": 1, + "SubTag": "nnj", + "Description": [ + "Nyangatom" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nnj" + }, + { + "Type": 1, + "SubTag": "nnk", + "Description": [ + "Nankina" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nnk" + }, + { + "Type": 1, + "SubTag": "nnl", + "Description": [ + "Northern Rengma Naga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nnl" + }, + { + "Type": 1, + "SubTag": "nnm", + "Description": [ + "Namia" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nnm" + }, + { + "Type": 1, + "SubTag": "nnn", + "Description": [ + "Ngete" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nnn" + }, + { + "Type": 1, + "SubTag": "nnp", + "Description": [ + "Wancho Naga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nnp" + }, + { + "Type": 1, + "SubTag": "nnq", + "Description": [ + "Ngindo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nnq" + }, + { + "Type": 1, + "SubTag": "nnr", + "Description": [ + "Narungga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nnr" + }, + { + "Type": 1, + "SubTag": "nns", + "Description": [ + "Ningye" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2019-04-16", + "Comments": [], + "Prefix": [], + "PreferredValue": "nbr", + "Tag": "", + "TagAny": "nns" + }, + { + "Type": 1, + "SubTag": "nnt", + "Description": [ + "Nanticoke" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nnt" + }, + { + "Type": 1, + "SubTag": "nnu", + "Description": [ + "Dwang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nnu" + }, + { + "Type": 1, + "SubTag": "nnv", + "Description": [ + "Nugunu (Australia)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nnv" + }, + { + "Type": 1, + "SubTag": "nnw", + "Description": [ + "Southern Nuni" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nnw" + }, + { + "Type": 1, + "SubTag": "nnx", + "Description": [ + "Ngong" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2015-02-12", + "Comments": [], + "Prefix": [], + "PreferredValue": "ngv", + "Tag": "", + "TagAny": "nnx" + }, + { + "Type": 1, + "SubTag": "nny", + "Description": [ + "Nyangga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nny" + }, + { + "Type": 1, + "SubTag": "nnz", + "Description": [ + "Nda\u0027nda\u0027" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nnz" + }, + { + "Type": 1, + "SubTag": "noa", + "Description": [ + "Woun Meu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "noa" + }, + { + "Type": 1, + "SubTag": "noc", + "Description": [ + "Nuk" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "noc" + }, + { + "Type": 1, + "SubTag": "nod", + "Description": [ + "Northern Thai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nod" + }, + { + "Type": 1, + "SubTag": "noe", + "Description": [ + "Nimadi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "noe" + }, + { + "Type": 1, + "SubTag": "nof", + "Description": [ + "Nomane" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nof" + }, + { + "Type": 1, + "SubTag": "nog", + "Description": [ + "Nogai" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nog" + }, + { + "Type": 1, + "SubTag": "noh", + "Description": [ + "Nomu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "noh" + }, + { + "Type": 1, + "SubTag": "noi", + "Description": [ + "Noiri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "noi" + }, + { + "Type": 1, + "SubTag": "noj", + "Description": [ + "Nonuya" + ], + "Added": "2010-03-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "noj" + }, + { + "Type": 1, + "SubTag": "nok", + "Description": [ + "Nooksack" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nok" + }, + { + "Type": 1, + "SubTag": "nol", + "Description": [ + "Nomlaki" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nol" + }, + { + "Type": 1, + "SubTag": "nom", + "Description": [ + "Nocam\u00E1n" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2023-03-17", + "Comments": [], + "Prefix": [], + "PreferredValue": "cbr", + "Tag": "", + "TagAny": "nom" + }, + { + "Type": 1, + "SubTag": "non", + "Description": [ + "Old Norse" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "non" + }, + { + "Type": 1, + "SubTag": "noo", + "Description": [ + "Nootka" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2011-08-16", + "Comments": [ + "see dtd, nuk" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "noo" + }, + { + "Type": 1, + "SubTag": "nop", + "Description": [ + "Numanggang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nop" + }, + { + "Type": 1, + "SubTag": "noq", + "Description": [ + "Ngongo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "noq" + }, + { + "Type": 1, + "SubTag": "nos", + "Description": [ + "Eastern Nisu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nos" + }, + { + "Type": 1, + "SubTag": "not", + "Description": [ + "Nomatsiguenga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "not" + }, + { + "Type": 1, + "SubTag": "nou", + "Description": [ + "Ewage-Notu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nou" + }, + { + "Type": 1, + "SubTag": "nov", + "Description": [ + "Novial" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nov" + }, + { + "Type": 1, + "SubTag": "now", + "Description": [ + "Nyambo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "now" + }, + { + "Type": 1, + "SubTag": "noy", + "Description": [ + "Noy" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "noy" + }, + { + "Type": 1, + "SubTag": "noz", + "Description": [ + "Nayi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "noz" + }, + { + "Type": 1, + "SubTag": "npa", + "Description": [ + "Nar Phu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "npa" + }, + { + "Type": 1, + "SubTag": "npb", + "Description": [ + "Nupbikha" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "npb" + }, + { + "Type": 1, + "SubTag": "npg", + "Description": [ + "Ponyo-Gongwang Naga" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "npg" + }, + { + "Type": 1, + "SubTag": "nph", + "Description": [ + "Phom Naga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nph" + }, + { + "Type": 1, + "SubTag": "npi", + "Description": [ + "Nepali (individual language)" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ne", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "npi" + }, + { + "Type": 1, + "SubTag": "npl", + "Description": [ + "Southeastern Puebla Nahuatl" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "npl" + }, + { + "Type": 1, + "SubTag": "npn", + "Description": [ + "Mondropolon" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "npn" + }, + { + "Type": 1, + "SubTag": "npo", + "Description": [ + "Pochuri Naga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "npo" + }, + { + "Type": 1, + "SubTag": "nps", + "Description": [ + "Nipsan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nps" + }, + { + "Type": 1, + "SubTag": "npu", + "Description": [ + "Puimei Naga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "npu" + }, + { + "Type": 1, + "SubTag": "npx", + "Description": [ + "Noipx" + ], + "Added": "2017-02-23", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "npx" + }, + { + "Type": 1, + "SubTag": "npy", + "Description": [ + "Napu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "npy" + }, + { + "Type": 1, + "SubTag": "nqg", + "Description": [ + "Southern Nago" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nqg" + }, + { + "Type": 1, + "SubTag": "nqk", + "Description": [ + "Kura Ede Nago" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nqk" + }, + { + "Type": 1, + "SubTag": "nql", + "Description": [ + "Ngendelengo" + ], + "Added": "2017-02-23", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nql" + }, + { + "Type": 1, + "SubTag": "nqm", + "Description": [ + "Ndom" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nqm" + }, + { + "Type": 1, + "SubTag": "nqn", + "Description": [ + "Nen" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nqn" + }, + { + "Type": 1, + "SubTag": "nqo", + "Description": [ + "N\u0027Ko", + "N\u2019Ko" + ], + "Added": "2006-06-05", + "SuppressScript": "Nkoo", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nqo" + }, + { + "Type": 1, + "SubTag": "nqq", + "Description": [ + "Kyan-Karyaw Naga" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nqq" + }, + { + "Type": 1, + "SubTag": "nqt", + "Description": [ + "Nteng" + ], + "Added": "2021-02-20", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nqt" + }, + { + "Type": 1, + "SubTag": "nqy", + "Description": [ + "Akyaung Ari Naga" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nqy" + }, + { + "Type": 1, + "SubTag": "nra", + "Description": [ + "Ngom" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nra" + }, + { + "Type": 1, + "SubTag": "nrb", + "Description": [ + "Nara" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nrb" + }, + { + "Type": 1, + "SubTag": "nrc", + "Description": [ + "Noric" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nrc" + }, + { + "Type": 1, + "SubTag": "nre", + "Description": [ + "Southern Rengma Naga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nre" + }, + { + "Type": 1, + "SubTag": "nrf", + "Description": [ + "J\u00E8rriais", + "Guern\u00E9siais", + "Sercquiais" + ], + "Added": "2015-02-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nrf" + }, + { + "Type": 1, + "SubTag": "nrg", + "Description": [ + "Narango" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nrg" + }, + { + "Type": 1, + "SubTag": "nri", + "Description": [ + "Chokri Naga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nri" + }, + { + "Type": 1, + "SubTag": "nrk", + "Description": [ + "Ngarla" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nrk" + }, + { + "Type": 1, + "SubTag": "nrl", + "Description": [ + "Ngarluma" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nrl" + }, + { + "Type": 1, + "SubTag": "nrm", + "Description": [ + "Narom" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nrm" + }, + { + "Type": 1, + "SubTag": "nrn", + "Description": [ + "Norn" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nrn" + }, + { + "Type": 1, + "SubTag": "nrp", + "Description": [ + "North Picene" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nrp" + }, + { + "Type": 1, + "SubTag": "nrr", + "Description": [ + "Norra", + "Nora" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nrr" + }, + { + "Type": 1, + "SubTag": "nrt", + "Description": [ + "Northern Kalapuya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nrt" + }, + { + "Type": 1, + "SubTag": "nru", + "Description": [ + "Narua" + ], + "Added": "2011-08-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nru" + }, + { + "Type": 1, + "SubTag": "nrx", + "Description": [ + "Ngurmbur" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nrx" + }, + { + "Type": 1, + "SubTag": "nrz", + "Description": [ + "Lala" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nrz" + }, + { + "Type": 1, + "SubTag": "nsa", + "Description": [ + "Sangtam Naga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nsa" + }, + { + "Type": 1, + "SubTag": "nsb", + "Description": [ + "Lower Nossob" + ], + "Added": "2020-03-28", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nsb" + }, + { + "Type": 1, + "SubTag": "nsc", + "Description": [ + "Nshi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nsc" + }, + { + "Type": 1, + "SubTag": "nsd", + "Description": [ + "Southern Nisu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nsd" + }, + { + "Type": 1, + "SubTag": "nse", + "Description": [ + "Nsenga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nse" + }, + { + "Type": 1, + "SubTag": "nsf", + "Description": [ + "Northwestern Nisu" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nsf" + }, + { + "Type": 1, + "SubTag": "nsg", + "Description": [ + "Ngasa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nsg" + }, + { + "Type": 1, + "SubTag": "nsh", + "Description": [ + "Ngoshie" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nsh" + }, + { + "Type": 1, + "SubTag": "nsi", + "Description": [ + "Nigerian Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nsi" + }, + { + "Type": 1, + "SubTag": "nsk", + "Description": [ + "Naskapi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nsk" + }, + { + "Type": 1, + "SubTag": "nsl", + "Description": [ + "Norwegian Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nsl" + }, + { + "Type": 1, + "SubTag": "nsm", + "Description": [ + "Sumi Naga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nsm" + }, + { + "Type": 1, + "SubTag": "nsn", + "Description": [ + "Nehan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nsn" + }, + { + "Type": 1, + "SubTag": "nso", + "Description": [ + "Pedi", + "Northern Sotho", + "Sepedi" + ], + "Added": "2005-10-16", + "SuppressScript": "Latn", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nso" + }, + { + "Type": 1, + "SubTag": "nsp", + "Description": [ + "Nepalese Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nsp" + }, + { + "Type": 1, + "SubTag": "nsq", + "Description": [ + "Northern Sierra Miwok" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nsq" + }, + { + "Type": 1, + "SubTag": "nsr", + "Description": [ + "Maritime Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nsr" + }, + { + "Type": 1, + "SubTag": "nss", + "Description": [ + "Nali" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nss" + }, + { + "Type": 1, + "SubTag": "nst", + "Description": [ + "Tase Naga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nst" + }, + { + "Type": 1, + "SubTag": "nsu", + "Description": [ + "Sierra Negra Nahuatl" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nsu" + }, + { + "Type": 1, + "SubTag": "nsv", + "Description": [ + "Southwestern Nisu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nsv" + }, + { + "Type": 1, + "SubTag": "nsw", + "Description": [ + "Navut" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nsw" + }, + { + "Type": 1, + "SubTag": "nsx", + "Description": [ + "Nsongo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nsx" + }, + { + "Type": 1, + "SubTag": "nsy", + "Description": [ + "Nasal" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nsy" + }, + { + "Type": 1, + "SubTag": "nsz", + "Description": [ + "Nisenan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nsz" + }, + { + "Type": 1, + "SubTag": "ntd", + "Description": [ + "Northern Tidung" + ], + "Added": "2016-05-30", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ntd" + }, + { + "Type": 1, + "SubTag": "nte", + "Description": [ + "Nathembo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2024-12-12", + "Comments": [], + "Prefix": [], + "PreferredValue": "eko", + "Tag": "", + "TagAny": "nte" + }, + { + "Type": 1, + "SubTag": "ntg", + "Description": [ + "Ngantangarra" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ntg" + }, + { + "Type": 1, + "SubTag": "nti", + "Description": [ + "Natioro" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nti" + }, + { + "Type": 1, + "SubTag": "ntj", + "Description": [ + "Ngaanyatjarra" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ntj" + }, + { + "Type": 1, + "SubTag": "ntk", + "Description": [ + "Ikoma-Nata-Isenye" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ntk" + }, + { + "Type": 1, + "SubTag": "ntm", + "Description": [ + "Nateni" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ntm" + }, + { + "Type": 1, + "SubTag": "nto", + "Description": [ + "Ntomba" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nto" + }, + { + "Type": 1, + "SubTag": "ntp", + "Description": [ + "Northern Tepehuan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ntp" + }, + { + "Type": 1, + "SubTag": "ntr", + "Description": [ + "Delo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ntr" + }, + { + "Type": 1, + "SubTag": "nts", + "Description": [ + "Natagaimas" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2016-05-30", + "Comments": [], + "Prefix": [], + "PreferredValue": "pij", + "Tag": "", + "TagAny": "nts" + }, + { + "Type": 1, + "SubTag": "ntu", + "Description": [ + "Nat\u00FCgu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ntu" + }, + { + "Type": 1, + "SubTag": "ntw", + "Description": [ + "Nottoway" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ntw" + }, + { + "Type": 1, + "SubTag": "ntx", + "Description": [ + "Tangkhul Naga (Myanmar)" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [ + "see nmf" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ntx" + }, + { + "Type": 1, + "SubTag": "nty", + "Description": [ + "Mantsi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nty" + }, + { + "Type": 1, + "SubTag": "ntz", + "Description": [ + "Natanzi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ntz" + }, + { + "Type": 1, + "SubTag": "nua", + "Description": [ + "Yuanga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nua" + }, + { + "Type": 1, + "SubTag": "nub", + "Description": [ + "Nubian languages" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nub" + }, + { + "Type": 1, + "SubTag": "nuc", + "Description": [ + "Nukuini" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nuc" + }, + { + "Type": 1, + "SubTag": "nud", + "Description": [ + "Ngala" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nud" + }, + { + "Type": 1, + "SubTag": "nue", + "Description": [ + "Ngundu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nue" + }, + { + "Type": 1, + "SubTag": "nuf", + "Description": [ + "Nusu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nuf" + }, + { + "Type": 1, + "SubTag": "nug", + "Description": [ + "Nungali" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nug" + }, + { + "Type": 1, + "SubTag": "nuh", + "Description": [ + "Ndunda" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nuh" + }, + { + "Type": 1, + "SubTag": "nui", + "Description": [ + "Ngumbi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nui" + }, + { + "Type": 1, + "SubTag": "nuj", + "Description": [ + "Nyole" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nuj" + }, + { + "Type": 1, + "SubTag": "nuk", + "Description": [ + "Nuu-chah-nulth", + "Nuuchahnulth" + ], + "Added": "2011-08-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nuk" + }, + { + "Type": 1, + "SubTag": "nul", + "Description": [ + "Nusa Laut" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nul" + }, + { + "Type": 1, + "SubTag": "num", + "Description": [ + "Niuafo\u0027ou" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "num" + }, + { + "Type": 1, + "SubTag": "nun", + "Description": [ + "Anong" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nun" + }, + { + "Type": 1, + "SubTag": "nuo", + "Description": [ + "Ngu\u00F4n" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nuo" + }, + { + "Type": 1, + "SubTag": "nup", + "Description": [ + "Nupe-Nupe-Tako" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nup" + }, + { + "Type": 1, + "SubTag": "nuq", + "Description": [ + "Nukumanu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nuq" + }, + { + "Type": 1, + "SubTag": "nur", + "Description": [ + "Nukuria" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nur" + }, + { + "Type": 1, + "SubTag": "nus", + "Description": [ + "Nuer" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nus" + }, + { + "Type": 1, + "SubTag": "nut", + "Description": [ + "Nung (Viet Nam)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nut" + }, + { + "Type": 1, + "SubTag": "nuu", + "Description": [ + "Ngbundu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nuu" + }, + { + "Type": 1, + "SubTag": "nuv", + "Description": [ + "Northern Nuni" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nuv" + }, + { + "Type": 1, + "SubTag": "nuw", + "Description": [ + "Nguluwan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nuw" + }, + { + "Type": 1, + "SubTag": "nux", + "Description": [ + "Mehek" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nux" + }, + { + "Type": 1, + "SubTag": "nuy", + "Description": [ + "Nunggubuyu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nuy" + }, + { + "Type": 1, + "SubTag": "nuz", + "Description": [ + "Tlamacazapa Nahuatl" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nuz" + }, + { + "Type": 1, + "SubTag": "nvh", + "Description": [ + "Nasarian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nvh" + }, + { + "Type": 1, + "SubTag": "nvm", + "Description": [ + "Namiae" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nvm" + }, + { + "Type": 1, + "SubTag": "nvo", + "Description": [ + "Nyokon" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nvo" + }, + { + "Type": 1, + "SubTag": "nwa", + "Description": [ + "Nawathinehena" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nwa" + }, + { + "Type": 1, + "SubTag": "nwb", + "Description": [ + "Nyabwa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nwb" + }, + { + "Type": 1, + "SubTag": "nwc", + "Description": [ + "Classical Newari", + "Classical Nepal Bhasa", + "Old Newari" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nwc" + }, + { + "Type": 1, + "SubTag": "nwe", + "Description": [ + "Ngwe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nwe" + }, + { + "Type": 1, + "SubTag": "nwg", + "Description": [ + "Ngayawung" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nwg" + }, + { + "Type": 1, + "SubTag": "nwi", + "Description": [ + "Southwest Tanna" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nwi" + }, + { + "Type": 1, + "SubTag": "nwm", + "Description": [ + "Nyamusa-Molo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nwm" + }, + { + "Type": 1, + "SubTag": "nwo", + "Description": [ + "Nauo" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nwo" + }, + { + "Type": 1, + "SubTag": "nwr", + "Description": [ + "Nawaru" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nwr" + }, + { + "Type": 1, + "SubTag": "nww", + "Description": [ + "Ndwewe" + ], + "Added": "2022-02-25", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nww" + }, + { + "Type": 1, + "SubTag": "nwx", + "Description": [ + "Middle Newar" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nwx" + }, + { + "Type": 1, + "SubTag": "nwy", + "Description": [ + "Nottoway-Meherrin" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nwy" + }, + { + "Type": 1, + "SubTag": "nxa", + "Description": [ + "Nauete" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nxa" + }, + { + "Type": 1, + "SubTag": "nxd", + "Description": [ + "Ngando (Democratic Republic of Congo)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nxd" + }, + { + "Type": 1, + "SubTag": "nxe", + "Description": [ + "Nage" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nxe" + }, + { + "Type": 1, + "SubTag": "nxg", + "Description": [ + "Ngad\u0027a" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nxg" + }, + { + "Type": 1, + "SubTag": "nxi", + "Description": [ + "Nindi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nxi" + }, + { + "Type": 1, + "SubTag": "nxk", + "Description": [ + "Koki Naga" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nxk" + }, + { + "Type": 1, + "SubTag": "nxl", + "Description": [ + "South Nuaulu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nxl" + }, + { + "Type": 1, + "SubTag": "nxm", + "Description": [ + "Numidian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nxm" + }, + { + "Type": 1, + "SubTag": "nxn", + "Description": [ + "Ngawun" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nxn" + }, + { + "Type": 1, + "SubTag": "nxo", + "Description": [ + "Ndambomo" + ], + "Added": "2015-02-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nxo" + }, + { + "Type": 1, + "SubTag": "nxq", + "Description": [ + "Naxi" + ], + "Added": "2011-08-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nxq" + }, + { + "Type": 1, + "SubTag": "nxr", + "Description": [ + "Ninggerum" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nxr" + }, + { + "Type": 1, + "SubTag": "nxu", + "Description": [ + "Narau" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2020-03-28", + "Comments": [], + "Prefix": [], + "PreferredValue": "bpp", + "Tag": "", + "TagAny": "nxu" + }, + { + "Type": 1, + "SubTag": "nxx", + "Description": [ + "Nafri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nxx" + }, + { + "Type": 1, + "SubTag": "nyb", + "Description": [ + "Nyangbo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nyb" + }, + { + "Type": 1, + "SubTag": "nyc", + "Description": [ + "Nyanga-li" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nyc" + }, + { + "Type": 1, + "SubTag": "nyd", + "Description": [ + "Nyore", + "Olunyole" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "luy", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nyd" + }, + { + "Type": 1, + "SubTag": "nye", + "Description": [ + "Nyengo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nye" + }, + { + "Type": 1, + "SubTag": "nyf", + "Description": [ + "Giryama", + "Kigiryama" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nyf" + }, + { + "Type": 1, + "SubTag": "nyg", + "Description": [ + "Nyindu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nyg" + }, + { + "Type": 1, + "SubTag": "nyh", + "Description": [ + "Nyikina" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nyh" + }, + { + "Type": 1, + "SubTag": "nyi", + "Description": [ + "Ama (Sudan)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nyi" + }, + { + "Type": 1, + "SubTag": "nyj", + "Description": [ + "Nyanga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nyj" + }, + { + "Type": 1, + "SubTag": "nyk", + "Description": [ + "Nyaneka" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nyk" + }, + { + "Type": 1, + "SubTag": "nyl", + "Description": [ + "Nyeu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nyl" + }, + { + "Type": 1, + "SubTag": "nym", + "Description": [ + "Nyamwezi" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nym" + }, + { + "Type": 1, + "SubTag": "nyn", + "Description": [ + "Nyankole" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nyn" + }, + { + "Type": 1, + "SubTag": "nyo", + "Description": [ + "Nyoro" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nyo" + }, + { + "Type": 1, + "SubTag": "nyp", + "Description": [ + "Nyang\u0027i" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nyp" + }, + { + "Type": 1, + "SubTag": "nyq", + "Description": [ + "Nayini" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nyq" + }, + { + "Type": 1, + "SubTag": "nyr", + "Description": [ + "Nyiha (Malawi)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nyr" + }, + { + "Type": 1, + "SubTag": "nys", + "Description": [ + "Nyungar" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nys" + }, + { + "Type": 1, + "SubTag": "nyt", + "Description": [ + "Nyawaygi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nyt" + }, + { + "Type": 1, + "SubTag": "nyu", + "Description": [ + "Nyungwe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nyu" + }, + { + "Type": 1, + "SubTag": "nyv", + "Description": [ + "Nyulnyul" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nyv" + }, + { + "Type": 1, + "SubTag": "nyw", + "Description": [ + "Nyaw" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nyw" + }, + { + "Type": 1, + "SubTag": "nyx", + "Description": [ + "Nganyaywana" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nyx" + }, + { + "Type": 1, + "SubTag": "nyy", + "Description": [ + "Nyakyusa-Ngonde" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nyy" + }, + { + "Type": 1, + "SubTag": "nza", + "Description": [ + "Tigon Mbembe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nza" + }, + { + "Type": 1, + "SubTag": "nzb", + "Description": [ + "Njebi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nzb" + }, + { + "Type": 1, + "SubTag": "nzd", + "Description": [ + "Nzadi" + ], + "Added": "2018-03-08", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nzd" + }, + { + "Type": 1, + "SubTag": "nzi", + "Description": [ + "Nzima" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nzi" + }, + { + "Type": 1, + "SubTag": "nzk", + "Description": [ + "Nzakara" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nzk" + }, + { + "Type": 1, + "SubTag": "nzm", + "Description": [ + "Zeme Naga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nzm" + }, + { + "Type": 1, + "SubTag": "nzr", + "Description": [ + "Dir-Nyamzak-Mbarimi" + ], + "Added": "2023-03-17", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nzr" + }, + { + "Type": 1, + "SubTag": "nzs", + "Description": [ + "New Zealand Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nzs" + }, + { + "Type": 1, + "SubTag": "nzu", + "Description": [ + "Teke-Nzikou" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nzu" + }, + { + "Type": 1, + "SubTag": "nzy", + "Description": [ + "Nzakambay" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nzy" + }, + { + "Type": 1, + "SubTag": "nzz", + "Description": [ + "Nanga Dama Dogon" + ], + "Added": "2010-03-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "nzz" + }, + { + "Type": 1, + "SubTag": "oaa", + "Description": [ + "Orok" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "oaa" + }, + { + "Type": 1, + "SubTag": "oac", + "Description": [ + "Oroch" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "oac" + }, + { + "Type": 1, + "SubTag": "oak", + "Description": [ + "Noakhali", + "Noakhailla" + ], + "Added": "2025-05-14", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "oak" + }, + { + "Type": 1, + "SubTag": "oar", + "Description": [ + "Old Aramaic (up to 700 BCE)", + "Ancient Aramaic (up to 700 BCE)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "oar" + }, + { + "Type": 1, + "SubTag": "oav", + "Description": [ + "Old Avar" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "oav" + }, + { + "Type": 1, + "SubTag": "obi", + "Description": [ + "Obispe\u00F1o" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "obi" + }, + { + "Type": 1, + "SubTag": "obk", + "Description": [ + "Southern Bontok" + ], + "Added": "2010-03-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "bnc", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "obk" + }, + { + "Type": 1, + "SubTag": "obl", + "Description": [ + "Oblo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "obl" + }, + { + "Type": 1, + "SubTag": "obm", + "Description": [ + "Moabite" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "obm" + }, + { + "Type": 1, + "SubTag": "obo", + "Description": [ + "Obo Manobo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "obo" + }, + { + "Type": 1, + "SubTag": "obr", + "Description": [ + "Old Burmese" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "obr" + }, + { + "Type": 1, + "SubTag": "obt", + "Description": [ + "Old Breton" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "obt" + }, + { + "Type": 1, + "SubTag": "obu", + "Description": [ + "Obulom" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "obu" + }, + { + "Type": 1, + "SubTag": "oca", + "Description": [ + "Ocaina" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "oca" + }, + { + "Type": 1, + "SubTag": "och", + "Description": [ + "Old Chinese" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "och" + }, + { + "Type": 1, + "SubTag": "ocm", + "Description": [ + "Old Cham" + ], + "Added": "2021-02-20", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ocm" + }, + { + "Type": 1, + "SubTag": "oco", + "Description": [ + "Old Cornish" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "oco" + }, + { + "Type": 1, + "SubTag": "ocu", + "Description": [ + "Atzingo Matlatzinca" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ocu" + }, + { + "Type": 1, + "SubTag": "oda", + "Description": [ + "Odut" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "oda" + }, + { + "Type": 1, + "SubTag": "odk", + "Description": [ + "Od" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "odk" + }, + { + "Type": 1, + "SubTag": "odt", + "Description": [ + "Old Dutch" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "odt" + }, + { + "Type": 1, + "SubTag": "odu", + "Description": [ + "Odual" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "odu" + }, + { + "Type": 1, + "SubTag": "ofo", + "Description": [ + "Ofo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ofo" + }, + { + "Type": 1, + "SubTag": "ofs", + "Description": [ + "Old Frisian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ofs" + }, + { + "Type": 1, + "SubTag": "ofu", + "Description": [ + "Efutop" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ofu" + }, + { + "Type": 1, + "SubTag": "ogb", + "Description": [ + "Ogbia" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ogb" + }, + { + "Type": 1, + "SubTag": "ogc", + "Description": [ + "Ogbah" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ogc" + }, + { + "Type": 1, + "SubTag": "oge", + "Description": [ + "Old Georgian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "oge" + }, + { + "Type": 1, + "SubTag": "ogg", + "Description": [ + "Ogbogolo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ogg" + }, + { + "Type": 1, + "SubTag": "ogo", + "Description": [ + "Khana" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ogo" + }, + { + "Type": 1, + "SubTag": "ogu", + "Description": [ + "Ogbronuagum" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ogu" + }, + { + "Type": 1, + "SubTag": "oht", + "Description": [ + "Old Hittite" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "oht" + }, + { + "Type": 1, + "SubTag": "ohu", + "Description": [ + "Old Hungarian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ohu" + }, + { + "Type": 1, + "SubTag": "oia", + "Description": [ + "Oirata" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "oia" + }, + { + "Type": 1, + "SubTag": "oie", + "Description": [ + "Okolie" + ], + "Added": "2022-02-25", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "oie" + }, + { + "Type": 1, + "SubTag": "oin", + "Description": [ + "Inebu One" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "oin" + }, + { + "Type": 1, + "SubTag": "ojb", + "Description": [ + "Northwestern Ojibwa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "oj", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ojb" + }, + { + "Type": 1, + "SubTag": "ojc", + "Description": [ + "Central Ojibwa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "oj", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ojc" + }, + { + "Type": 1, + "SubTag": "ojg", + "Description": [ + "Eastern Ojibwa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "oj", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ojg" + }, + { + "Type": 1, + "SubTag": "ojp", + "Description": [ + "Old Japanese" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ojp" + }, + { + "Type": 1, + "SubTag": "ojs", + "Description": [ + "Severn Ojibwa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "oj", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ojs" + }, + { + "Type": 1, + "SubTag": "ojv", + "Description": [ + "Ontong Java" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ojv" + }, + { + "Type": 1, + "SubTag": "ojw", + "Description": [ + "Western Ojibwa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "oj", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ojw" + }, + { + "Type": 1, + "SubTag": "oka", + "Description": [ + "Okanagan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "oka" + }, + { + "Type": 1, + "SubTag": "okb", + "Description": [ + "Okobo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "okb" + }, + { + "Type": 1, + "SubTag": "okc", + "Description": [ + "Kobo" + ], + "Added": "2021-02-20", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "okc" + }, + { + "Type": 1, + "SubTag": "okd", + "Description": [ + "Okodia" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "okd" + }, + { + "Type": 1, + "SubTag": "oke", + "Description": [ + "Okpe (Southwestern Edo)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "oke" + }, + { + "Type": 1, + "SubTag": "okg", + "Description": [ + "Koko Babangk" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "okg" + }, + { + "Type": 1, + "SubTag": "okh", + "Description": [ + "Koresh-e Rostam" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "okh" + }, + { + "Type": 1, + "SubTag": "oki", + "Description": [ + "Okiek" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "kln", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "oki" + }, + { + "Type": 1, + "SubTag": "okj", + "Description": [ + "Oko-Juwoi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "okj" + }, + { + "Type": 1, + "SubTag": "okk", + "Description": [ + "Kwamtim One" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "okk" + }, + { + "Type": 1, + "SubTag": "okl", + "Description": [ + "Old Kentish Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "okl" + }, + { + "Type": 1, + "SubTag": "okm", + "Description": [ + "Middle Korean (10th-16th cent.)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "okm" + }, + { + "Type": 1, + "SubTag": "okn", + "Description": [ + "Oki-No-Erabu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "okn" + }, + { + "Type": 1, + "SubTag": "oko", + "Description": [ + "Old Korean (3rd-9th cent.)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "oko" + }, + { + "Type": 1, + "SubTag": "okr", + "Description": [ + "Kirike" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "okr" + }, + { + "Type": 1, + "SubTag": "oks", + "Description": [ + "Oko-Eni-Osayen" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "oks" + }, + { + "Type": 1, + "SubTag": "oku", + "Description": [ + "Oku" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "oku" + }, + { + "Type": 1, + "SubTag": "okv", + "Description": [ + "Orokaiva" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "okv" + }, + { + "Type": 1, + "SubTag": "okx", + "Description": [ + "Okpe (Northwestern Edo)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "okx" + }, + { + "Type": 1, + "SubTag": "okz", + "Description": [ + "Old Khmer" + ], + "Added": "2021-02-20", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "okz" + }, + { + "Type": 1, + "SubTag": "ola", + "Description": [ + "Walungge" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ola" + }, + { + "Type": 1, + "SubTag": "old", + "Description": [ + "Mochi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "old" + }, + { + "Type": 1, + "SubTag": "ole", + "Description": [ + "Olekha" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ole" + }, + { + "Type": 1, + "SubTag": "olk", + "Description": [ + "Olkol" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "olk" + }, + { + "Type": 1, + "SubTag": "olm", + "Description": [ + "Oloma" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "olm" + }, + { + "Type": 1, + "SubTag": "olo", + "Description": [ + "Livvi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "olo" + }, + { + "Type": 1, + "SubTag": "olr", + "Description": [ + "Olrat" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "olr" + }, + { + "Type": 1, + "SubTag": "olt", + "Description": [ + "Old Lithuanian" + ], + "Added": "2014-02-28", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "olt" + }, + { + "Type": 1, + "SubTag": "olu", + "Description": [ + "Kuvale" + ], + "Added": "2016-05-30", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "olu" + }, + { + "Type": 1, + "SubTag": "oma", + "Description": [ + "Omaha-Ponca" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "oma" + }, + { + "Type": 1, + "SubTag": "omb", + "Description": [ + "East Ambae" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "omb" + }, + { + "Type": 1, + "SubTag": "omc", + "Description": [ + "Mochica" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "omc" + }, + { + "Type": 1, + "SubTag": "ome", + "Description": [ + "Omejes" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2016-05-30", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ome" + }, + { + "Type": 1, + "SubTag": "omg", + "Description": [ + "Omagua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "omg" + }, + { + "Type": 1, + "SubTag": "omi", + "Description": [ + "Omi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "omi" + }, + { + "Type": 1, + "SubTag": "omk", + "Description": [ + "Omok" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "omk" + }, + { + "Type": 1, + "SubTag": "oml", + "Description": [ + "Ombo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "oml" + }, + { + "Type": 1, + "SubTag": "omn", + "Description": [ + "Minoan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "omn" + }, + { + "Type": 1, + "SubTag": "omo", + "Description": [ + "Utarmbung" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "omo" + }, + { + "Type": 1, + "SubTag": "omp", + "Description": [ + "Old Manipuri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "omp" + }, + { + "Type": 1, + "SubTag": "omq", + "Description": [ + "Oto-Manguean languages" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "omq" + }, + { + "Type": 1, + "SubTag": "omr", + "Description": [ + "Old Marathi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "omr" + }, + { + "Type": 1, + "SubTag": "omt", + "Description": [ + "Omotik" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "omt" + }, + { + "Type": 1, + "SubTag": "omu", + "Description": [ + "Omurano" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "omu" + }, + { + "Type": 1, + "SubTag": "omv", + "Description": [ + "Omotic languages" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "omv" + }, + { + "Type": 1, + "SubTag": "omw", + "Description": [ + "South Tairora" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "omw" + }, + { + "Type": 1, + "SubTag": "omx", + "Description": [ + "Old Mon" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "omx" + }, + { + "Type": 1, + "SubTag": "omy", + "Description": [ + "Old Malay" + ], + "Added": "2021-02-20", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "omy" + }, + { + "Type": 1, + "SubTag": "ona", + "Description": [ + "Ona" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ona" + }, + { + "Type": 1, + "SubTag": "onb", + "Description": [ + "Lingao" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "onb" + }, + { + "Type": 1, + "SubTag": "one", + "Description": [ + "Oneida" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "one" + }, + { + "Type": 1, + "SubTag": "ong", + "Description": [ + "Olo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ong" + }, + { + "Type": 1, + "SubTag": "oni", + "Description": [ + "Onin" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "oni" + }, + { + "Type": 1, + "SubTag": "onj", + "Description": [ + "Onjob" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "onj" + }, + { + "Type": 1, + "SubTag": "onk", + "Description": [ + "Kabore One" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "onk" + }, + { + "Type": 1, + "SubTag": "onn", + "Description": [ + "Onobasulu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "onn" + }, + { + "Type": 1, + "SubTag": "ono", + "Description": [ + "Onondaga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ono" + }, + { + "Type": 1, + "SubTag": "onp", + "Description": [ + "Sartang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "onp" + }, + { + "Type": 1, + "SubTag": "onr", + "Description": [ + "Northern One" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "onr" + }, + { + "Type": 1, + "SubTag": "ons", + "Description": [ + "Ono" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ons" + }, + { + "Type": 1, + "SubTag": "ont", + "Description": [ + "Ontenu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ont" + }, + { + "Type": 1, + "SubTag": "onu", + "Description": [ + "Unua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "onu" + }, + { + "Type": 1, + "SubTag": "onw", + "Description": [ + "Old Nubian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "onw" + }, + { + "Type": 1, + "SubTag": "onx", + "Description": [ + "Onin Based Pidgin" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "onx" + }, + { + "Type": 1, + "SubTag": "ood", + "Description": [ + "Tohono O\u0027odham" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ood" + }, + { + "Type": 1, + "SubTag": "oog", + "Description": [ + "Ong" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "oog" + }, + { + "Type": 1, + "SubTag": "oon", + "Description": [ + "\u00D6nge" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "oon" + }, + { + "Type": 1, + "SubTag": "oor", + "Description": [ + "Oorlams" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "oor" + }, + { + "Type": 1, + "SubTag": "oos", + "Description": [ + "Old Ossetic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "oos" + }, + { + "Type": 1, + "SubTag": "opa", + "Description": [ + "Okpamheri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "opa" + }, + { + "Type": 1, + "SubTag": "opk", + "Description": [ + "Kopkaka" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "opk" + }, + { + "Type": 1, + "SubTag": "opm", + "Description": [ + "Oksapmin" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "opm" + }, + { + "Type": 1, + "SubTag": "opo", + "Description": [ + "Opao" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "opo" + }, + { + "Type": 1, + "SubTag": "opt", + "Description": [ + "Opata" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "opt" + }, + { + "Type": 1, + "SubTag": "opy", + "Description": [ + "Ofay\u00E9" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "opy" + }, + { + "Type": 1, + "SubTag": "ora", + "Description": [ + "Oroha" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ora" + }, + { + "Type": 1, + "SubTag": "orc", + "Description": [ + "Orma" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "om", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "orc" + }, + { + "Type": 1, + "SubTag": "ore", + "Description": [ + "Orej\u00F3n" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ore" + }, + { + "Type": 1, + "SubTag": "org", + "Description": [ + "Oring" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "org" + }, + { + "Type": 1, + "SubTag": "orh", + "Description": [ + "Oroqen" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "orh" + }, + { + "Type": 1, + "SubTag": "orn", + "Description": [ + "Orang Kanaq" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ms", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "orn" + }, + { + "Type": 1, + "SubTag": "oro", + "Description": [ + "Orokolo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "oro" + }, + { + "Type": 1, + "SubTag": "orr", + "Description": [ + "Oruma" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "orr" + }, + { + "Type": 1, + "SubTag": "ors", + "Description": [ + "Orang Seletar" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ms", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ors" + }, + { + "Type": 1, + "SubTag": "ort", + "Description": [ + "Adivasi Oriya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ort" + }, + { + "Type": 1, + "SubTag": "oru", + "Description": [ + "Ormuri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "oru" + }, + { + "Type": 1, + "SubTag": "orv", + "Description": [ + "Old Russian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "orv" + }, + { + "Type": 1, + "SubTag": "orw", + "Description": [ + "Oro Win" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "orw" + }, + { + "Type": 1, + "SubTag": "orx", + "Description": [ + "Oro" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "orx" + }, + { + "Type": 1, + "SubTag": "ory", + "Description": [ + "Odia (individual language)", + "Oriya (individual language)" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "or", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ory" + }, + { + "Type": 1, + "SubTag": "orz", + "Description": [ + "Ormu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "orz" + }, + { + "Type": 1, + "SubTag": "osa", + "Description": [ + "Osage" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "osa" + }, + { + "Type": 1, + "SubTag": "osc", + "Description": [ + "Oscan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "osc" + }, + { + "Type": 1, + "SubTag": "osi", + "Description": [ + "Osing" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "osi" + }, + { + "Type": 1, + "SubTag": "osn", + "Description": [ + "Old Sundanese" + ], + "Added": "2021-02-20", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "osn" + }, + { + "Type": 1, + "SubTag": "oso", + "Description": [ + "Ososo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "oso" + }, + { + "Type": 1, + "SubTag": "osp", + "Description": [ + "Old Spanish" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "osp" + }, + { + "Type": 1, + "SubTag": "ost", + "Description": [ + "Osatu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ost" + }, + { + "Type": 1, + "SubTag": "osu", + "Description": [ + "Southern One" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "osu" + }, + { + "Type": 1, + "SubTag": "osx", + "Description": [ + "Old Saxon" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "osx" + }, + { + "Type": 1, + "SubTag": "ota", + "Description": [ + "Ottoman Turkish (1500-1928)" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ota" + }, + { + "Type": 1, + "SubTag": "otb", + "Description": [ + "Old Tibetan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "otb" + }, + { + "Type": 1, + "SubTag": "otd", + "Description": [ + "Ot Danum" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "otd" + }, + { + "Type": 1, + "SubTag": "ote", + "Description": [ + "Mezquital Otomi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ote" + }, + { + "Type": 1, + "SubTag": "oti", + "Description": [ + "Oti" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "oti" + }, + { + "Type": 1, + "SubTag": "otk", + "Description": [ + "Old Turkish" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "otk" + }, + { + "Type": 1, + "SubTag": "otl", + "Description": [ + "Tilapa Otomi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "otl" + }, + { + "Type": 1, + "SubTag": "otm", + "Description": [ + "Eastern Highland Otomi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "otm" + }, + { + "Type": 1, + "SubTag": "otn", + "Description": [ + "Tenango Otomi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "otn" + }, + { + "Type": 1, + "SubTag": "oto", + "Description": [ + "Otomian languages" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "oto" + }, + { + "Type": 1, + "SubTag": "otq", + "Description": [ + "Quer\u00E9taro Otomi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "otq" + }, + { + "Type": 1, + "SubTag": "otr", + "Description": [ + "Otoro" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "otr" + }, + { + "Type": 1, + "SubTag": "ots", + "Description": [ + "Estado de M\u00E9xico Otomi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ots" + }, + { + "Type": 1, + "SubTag": "ott", + "Description": [ + "Temoaya Otomi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ott" + }, + { + "Type": 1, + "SubTag": "otu", + "Description": [ + "Otuke" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "otu" + }, + { + "Type": 1, + "SubTag": "otw", + "Description": [ + "Ottawa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "oj", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "otw" + }, + { + "Type": 1, + "SubTag": "otx", + "Description": [ + "Texcatepec Otomi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "otx" + }, + { + "Type": 1, + "SubTag": "oty", + "Description": [ + "Old Tamil" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "oty" + }, + { + "Type": 1, + "SubTag": "otz", + "Description": [ + "Ixtenco Otomi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "otz" + }, + { + "Type": 1, + "SubTag": "oua", + "Description": [ + "Tagargrent" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "oua" + }, + { + "Type": 1, + "SubTag": "oub", + "Description": [ + "Glio-Oubi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "oub" + }, + { + "Type": 1, + "SubTag": "oue", + "Description": [ + "Oune" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "oue" + }, + { + "Type": 1, + "SubTag": "oui", + "Description": [ + "Old Uighur" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "oui" + }, + { + "Type": 1, + "SubTag": "oum", + "Description": [ + "Ouma" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "oum" + }, + { + "Type": 1, + "SubTag": "oun", + "Description": [ + "\u01C3O\u01C3ung" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2015-02-12", + "Comments": [], + "Prefix": [], + "PreferredValue": "vaj", + "Tag": "", + "TagAny": "oun" + }, + { + "Type": 1, + "SubTag": "ovd", + "Description": [ + "Elfdalian", + "\u00D6vdalian" + ], + "Added": "2016-06-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ovd" + }, + { + "Type": 1, + "SubTag": "owi", + "Description": [ + "Owiniga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "owi" + }, + { + "Type": 1, + "SubTag": "owl", + "Description": [ + "Old Welsh" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "owl" + }, + { + "Type": 1, + "SubTag": "oyb", + "Description": [ + "Oy" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "oyb" + }, + { + "Type": 1, + "SubTag": "oyd", + "Description": [ + "Oyda" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "oyd" + }, + { + "Type": 1, + "SubTag": "oym", + "Description": [ + "Wayampi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "oym" + }, + { + "Type": 1, + "SubTag": "oyy", + "Description": [ + "Oya\u0027oya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "oyy" + }, + { + "Type": 1, + "SubTag": "ozm", + "Description": [ + "Koonzime" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ozm" + }, + { + "Type": 1, + "SubTag": "paa", + "Description": [ + "Papuan languages" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "paa" + }, + { + "Type": 1, + "SubTag": "pab", + "Description": [ + "Parec\u00EDs" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pab" + }, + { + "Type": 1, + "SubTag": "pac", + "Description": [ + "Pacoh" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pac" + }, + { + "Type": 1, + "SubTag": "pad", + "Description": [ + "Paumar\u00ED" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pad" + }, + { + "Type": 1, + "SubTag": "pae", + "Description": [ + "Pagibete" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pae" + }, + { + "Type": 1, + "SubTag": "paf", + "Description": [ + "Paranaw\u00E1t" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "paf" + }, + { + "Type": 1, + "SubTag": "pag", + "Description": [ + "Pangasinan" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pag" + }, + { + "Type": 1, + "SubTag": "pah", + "Description": [ + "Tenharim" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pah" + }, + { + "Type": 1, + "SubTag": "pai", + "Description": [ + "Pe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pai" + }, + { + "Type": 1, + "SubTag": "pak", + "Description": [ + "Parakan\u00E3" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pak" + }, + { + "Type": 1, + "SubTag": "pal", + "Description": [ + "Pahlavi" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pal" + }, + { + "Type": 1, + "SubTag": "pam", + "Description": [ + "Pampanga", + "Kapampangan" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pam" + }, + { + "Type": 1, + "SubTag": "pao", + "Description": [ + "Northern Paiute" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pao" + }, + { + "Type": 1, + "SubTag": "pap", + "Description": [ + "Papiamento" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pap" + }, + { + "Type": 1, + "SubTag": "paq", + "Description": [ + "Parya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "paq" + }, + { + "Type": 1, + "SubTag": "par", + "Description": [ + "Panamint", + "Timbisha" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "par" + }, + { + "Type": 1, + "SubTag": "pas", + "Description": [ + "Papasena" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pas" + }, + { + "Type": 1, + "SubTag": "pat", + "Description": [ + "Papitalai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2021-02-20", + "Comments": [], + "Prefix": [], + "PreferredValue": "kxr", + "Tag": "", + "TagAny": "pat" + }, + { + "Type": 1, + "SubTag": "pau", + "Description": [ + "Palauan" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pau" + }, + { + "Type": 1, + "SubTag": "pav", + "Description": [ + "Paka\u00E1snovos" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pav" + }, + { + "Type": 1, + "SubTag": "paw", + "Description": [ + "Pawnee" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "paw" + }, + { + "Type": 1, + "SubTag": "pax", + "Description": [ + "Pankarar\u00E9" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pax" + }, + { + "Type": 1, + "SubTag": "pay", + "Description": [ + "Pech" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pay" + }, + { + "Type": 1, + "SubTag": "paz", + "Description": [ + "Pankarar\u00FA" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "paz" + }, + { + "Type": 1, + "SubTag": "pbb", + "Description": [ + "P\u00E1ez" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pbb" + }, + { + "Type": 1, + "SubTag": "pbc", + "Description": [ + "Patamona" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pbc" + }, + { + "Type": 1, + "SubTag": "pbe", + "Description": [ + "Mezontla Popoloca" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pbe" + }, + { + "Type": 1, + "SubTag": "pbf", + "Description": [ + "Coyotepec Popoloca" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pbf" + }, + { + "Type": 1, + "SubTag": "pbg", + "Description": [ + "Paraujano" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pbg" + }, + { + "Type": 1, + "SubTag": "pbh", + "Description": [ + "E\u0027\u00F1apa Woromaipu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pbh" + }, + { + "Type": 1, + "SubTag": "pbi", + "Description": [ + "Parkwa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pbi" + }, + { + "Type": 1, + "SubTag": "pbl", + "Description": [ + "Mak (Nigeria)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pbl" + }, + { + "Type": 1, + "SubTag": "pbm", + "Description": [ + "Puebla Mazatec" + ], + "Added": "2018-03-08", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [ + "see also maa" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pbm" + }, + { + "Type": 1, + "SubTag": "pbn", + "Description": [ + "Kpasam" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pbn" + }, + { + "Type": 1, + "SubTag": "pbo", + "Description": [ + "Papel" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pbo" + }, + { + "Type": 1, + "SubTag": "pbp", + "Description": [ + "Badyara" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pbp" + }, + { + "Type": 1, + "SubTag": "pbr", + "Description": [ + "Pangwa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pbr" + }, + { + "Type": 1, + "SubTag": "pbs", + "Description": [ + "Central Pame" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pbs" + }, + { + "Type": 1, + "SubTag": "pbt", + "Description": [ + "Southern Pashto" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ps", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pbt" + }, + { + "Type": 1, + "SubTag": "pbu", + "Description": [ + "Northern Pashto" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ps", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pbu" + }, + { + "Type": 1, + "SubTag": "pbv", + "Description": [ + "Pnar" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pbv" + }, + { + "Type": 1, + "SubTag": "pby", + "Description": [ + "Pyu (Papua New Guinea)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pby" + }, + { + "Type": 1, + "SubTag": "pbz", + "Description": [ + "Palu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2012-08-12", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pbz" + }, + { + "Type": 1, + "SubTag": "pca", + "Description": [ + "Santa In\u00E9s Ahuatempan Popoloca" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pca" + }, + { + "Type": 1, + "SubTag": "pcb", + "Description": [ + "Pear" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pcb" + }, + { + "Type": 1, + "SubTag": "pcc", + "Description": [ + "Bouyei" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pcc" + }, + { + "Type": 1, + "SubTag": "pcd", + "Description": [ + "Picard" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pcd" + }, + { + "Type": 1, + "SubTag": "pce", + "Description": [ + "Ruching Palaung" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pce" + }, + { + "Type": 1, + "SubTag": "pcf", + "Description": [ + "Paliyan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pcf" + }, + { + "Type": 1, + "SubTag": "pcg", + "Description": [ + "Paniya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pcg" + }, + { + "Type": 1, + "SubTag": "pch", + "Description": [ + "Pardhan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pch" + }, + { + "Type": 1, + "SubTag": "pci", + "Description": [ + "Duruwa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pci" + }, + { + "Type": 1, + "SubTag": "pcj", + "Description": [ + "Parenga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pcj" + }, + { + "Type": 1, + "SubTag": "pck", + "Description": [ + "Paite Chin" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pck" + }, + { + "Type": 1, + "SubTag": "pcl", + "Description": [ + "Pardhi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pcl" + }, + { + "Type": 1, + "SubTag": "pcm", + "Description": [ + "Nigerian Pidgin" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pcm" + }, + { + "Type": 1, + "SubTag": "pcn", + "Description": [ + "Piti" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pcn" + }, + { + "Type": 1, + "SubTag": "pcp", + "Description": [ + "Pacahuara" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pcp" + }, + { + "Type": 1, + "SubTag": "pcr", + "Description": [ + "Panang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2013-09-10", + "Comments": [], + "Prefix": [], + "PreferredValue": "adx", + "Tag": "", + "TagAny": "pcr" + }, + { + "Type": 1, + "SubTag": "pcw", + "Description": [ + "Pyapun" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pcw" + }, + { + "Type": 1, + "SubTag": "pda", + "Description": [ + "Anam" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pda" + }, + { + "Type": 1, + "SubTag": "pdc", + "Description": [ + "Pennsylvania German" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pdc" + }, + { + "Type": 1, + "SubTag": "pdi", + "Description": [ + "Pa Di" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pdi" + }, + { + "Type": 1, + "SubTag": "pdn", + "Description": [ + "Podena", + "Fedan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pdn" + }, + { + "Type": 1, + "SubTag": "pdo", + "Description": [ + "Padoe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pdo" + }, + { + "Type": 1, + "SubTag": "pdt", + "Description": [ + "Plautdietsch" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pdt" + }, + { + "Type": 1, + "SubTag": "pdu", + "Description": [ + "Kayan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pdu" + }, + { + "Type": 1, + "SubTag": "pea", + "Description": [ + "Peranakan Indonesian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pea" + }, + { + "Type": 1, + "SubTag": "peb", + "Description": [ + "Eastern Pomo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "peb" + }, + { + "Type": 1, + "SubTag": "ped", + "Description": [ + "Mala (Papua New Guinea)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ped" + }, + { + "Type": 1, + "SubTag": "pee", + "Description": [ + "Taje" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pee" + }, + { + "Type": 1, + "SubTag": "pef", + "Description": [ + "Northeastern Pomo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pef" + }, + { + "Type": 1, + "SubTag": "peg", + "Description": [ + "Pengo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "peg" + }, + { + "Type": 1, + "SubTag": "peh", + "Description": [ + "Bonan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "peh" + }, + { + "Type": 1, + "SubTag": "pei", + "Description": [ + "Chichimeca-Jonaz" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pei" + }, + { + "Type": 1, + "SubTag": "pej", + "Description": [ + "Northern Pomo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pej" + }, + { + "Type": 1, + "SubTag": "pek", + "Description": [ + "Penchal" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pek" + }, + { + "Type": 1, + "SubTag": "pel", + "Description": [ + "Pekal" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ms", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pel" + }, + { + "Type": 1, + "SubTag": "pem", + "Description": [ + "Phende" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pem" + }, + { + "Type": 1, + "SubTag": "peo", + "Description": [ + "Old Persian (ca. 600-400 B.C.)" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "peo" + }, + { + "Type": 1, + "SubTag": "pep", + "Description": [ + "Kunja" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pep" + }, + { + "Type": 1, + "SubTag": "peq", + "Description": [ + "Southern Pomo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "peq" + }, + { + "Type": 1, + "SubTag": "pes", + "Description": [ + "Iranian Persian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "fa", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pes" + }, + { + "Type": 1, + "SubTag": "pev", + "Description": [ + "P\u00E9mono" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pev" + }, + { + "Type": 1, + "SubTag": "pex", + "Description": [ + "Petats" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pex" + }, + { + "Type": 1, + "SubTag": "pey", + "Description": [ + "Petjo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pey" + }, + { + "Type": 1, + "SubTag": "pez", + "Description": [ + "Eastern Penan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pez" + }, + { + "Type": 1, + "SubTag": "pfa", + "Description": [ + "P\u00E1\u00E1fang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pfa" + }, + { + "Type": 1, + "SubTag": "pfe", + "Description": [ + "Pere" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pfe" + }, + { + "Type": 1, + "SubTag": "pfl", + "Description": [ + "Pfaelzisch" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pfl" + }, + { + "Type": 1, + "SubTag": "pga", + "Description": [ + "Sudanese Creole Arabic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ar", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pga" + }, + { + "Type": 1, + "SubTag": "pgd", + "Description": [ + "G\u0101ndh\u0101r\u012B" + ], + "Added": "2015-02-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pgd" + }, + { + "Type": 1, + "SubTag": "pgg", + "Description": [ + "Pangwali" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pgg" + }, + { + "Type": 1, + "SubTag": "pgi", + "Description": [ + "Pagi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pgi" + }, + { + "Type": 1, + "SubTag": "pgk", + "Description": [ + "Rerep" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pgk" + }, + { + "Type": 1, + "SubTag": "pgl", + "Description": [ + "Primitive Irish" + ], + "Added": "2011-08-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pgl" + }, + { + "Type": 1, + "SubTag": "pgn", + "Description": [ + "Paelignian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pgn" + }, + { + "Type": 1, + "SubTag": "pgs", + "Description": [ + "Pangseng" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pgs" + }, + { + "Type": 1, + "SubTag": "pgu", + "Description": [ + "Pagu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pgu" + }, + { + "Type": 1, + "SubTag": "pgy", + "Description": [ + "Pongyong" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2012-08-12", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pgy" + }, + { + "Type": 1, + "SubTag": "pgz", + "Description": [ + "Papua New Guinean Sign Language" + ], + "Added": "2016-05-30", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pgz" + }, + { + "Type": 1, + "SubTag": "pha", + "Description": [ + "Pa-Hng" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pha" + }, + { + "Type": 1, + "SubTag": "phd", + "Description": [ + "Phudagi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "phd" + }, + { + "Type": 1, + "SubTag": "phg", + "Description": [ + "Phuong" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "phg" + }, + { + "Type": 1, + "SubTag": "phh", + "Description": [ + "Phukha" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "phh" + }, + { + "Type": 1, + "SubTag": "phi", + "Description": [ + "Philippine languages" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "phi" + }, + { + "Type": 1, + "SubTag": "phj", + "Description": [ + "Pahari" + ], + "Added": "2022-02-25", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "phj" + }, + { + "Type": 1, + "SubTag": "phk", + "Description": [ + "Phake" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "phk" + }, + { + "Type": 1, + "SubTag": "phl", + "Description": [ + "Phalura", + "Palula" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "phl" + }, + { + "Type": 1, + "SubTag": "phm", + "Description": [ + "Phimbi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "phm" + }, + { + "Type": 1, + "SubTag": "phn", + "Description": [ + "Phoenician" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "phn" + }, + { + "Type": 1, + "SubTag": "pho", + "Description": [ + "Phunoi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pho" + }, + { + "Type": 1, + "SubTag": "phq", + "Description": [ + "Phana\u0027" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "phq" + }, + { + "Type": 1, + "SubTag": "phr", + "Description": [ + "Pahari-Potwari" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "lah", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "phr" + }, + { + "Type": 1, + "SubTag": "pht", + "Description": [ + "Phu Thai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pht" + }, + { + "Type": 1, + "SubTag": "phu", + "Description": [ + "Phuan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "phu" + }, + { + "Type": 1, + "SubTag": "phv", + "Description": [ + "Pahlavani" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "phv" + }, + { + "Type": 1, + "SubTag": "phw", + "Description": [ + "Phangduwali" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "phw" + }, + { + "Type": 1, + "SubTag": "pia", + "Description": [ + "Pima Bajo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pia" + }, + { + "Type": 1, + "SubTag": "pib", + "Description": [ + "Yine" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pib" + }, + { + "Type": 1, + "SubTag": "pic", + "Description": [ + "Pinji" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pic" + }, + { + "Type": 1, + "SubTag": "pid", + "Description": [ + "Piaroa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pid" + }, + { + "Type": 1, + "SubTag": "pie", + "Description": [ + "Piro" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pie" + }, + { + "Type": 1, + "SubTag": "pif", + "Description": [ + "Pingelapese" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pif" + }, + { + "Type": 1, + "SubTag": "pig", + "Description": [ + "Pisabo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pig" + }, + { + "Type": 1, + "SubTag": "pih", + "Description": [ + "Pitcairn-Norfolk" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pih" + }, + { + "Type": 1, + "SubTag": "pii", + "Description": [ + "Pini" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2022-02-25", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pii" + }, + { + "Type": 1, + "SubTag": "pij", + "Description": [ + "Pijao" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pij" + }, + { + "Type": 1, + "SubTag": "pil", + "Description": [ + "Yom" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pil" + }, + { + "Type": 1, + "SubTag": "pim", + "Description": [ + "Powhatan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pim" + }, + { + "Type": 1, + "SubTag": "pin", + "Description": [ + "Piame" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pin" + }, + { + "Type": 1, + "SubTag": "pio", + "Description": [ + "Piapoco" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pio" + }, + { + "Type": 1, + "SubTag": "pip", + "Description": [ + "Pero" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pip" + }, + { + "Type": 1, + "SubTag": "pir", + "Description": [ + "Piratapuyo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pir" + }, + { + "Type": 1, + "SubTag": "pis", + "Description": [ + "Pijin" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pis" + }, + { + "Type": 1, + "SubTag": "pit", + "Description": [ + "Pitta Pitta" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pit" + }, + { + "Type": 1, + "SubTag": "piu", + "Description": [ + "Pintupi-Luritja" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "piu" + }, + { + "Type": 1, + "SubTag": "piv", + "Description": [ + "Pileni", + "Vaeakau-Taumako" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "piv" + }, + { + "Type": 1, + "SubTag": "piw", + "Description": [ + "Pimbwe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "piw" + }, + { + "Type": 1, + "SubTag": "pix", + "Description": [ + "Piu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pix" + }, + { + "Type": 1, + "SubTag": "piy", + "Description": [ + "Piya-Kwonci" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "piy" + }, + { + "Type": 1, + "SubTag": "piz", + "Description": [ + "Pije" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "piz" + }, + { + "Type": 1, + "SubTag": "pjt", + "Description": [ + "Pitjantjatjara" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pjt" + }, + { + "Type": 1, + "SubTag": "pka", + "Description": [ + "Ardham\u0101gadh\u012B Pr\u0101krit" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pka" + }, + { + "Type": 1, + "SubTag": "pkb", + "Description": [ + "Pokomo", + "Kipfokomo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pkb" + }, + { + "Type": 1, + "SubTag": "pkc", + "Description": [ + "Paekche" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pkc" + }, + { + "Type": 1, + "SubTag": "pkg", + "Description": [ + "Pak-Tong" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pkg" + }, + { + "Type": 1, + "SubTag": "pkh", + "Description": [ + "Pankhu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pkh" + }, + { + "Type": 1, + "SubTag": "pkn", + "Description": [ + "Pakanha" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pkn" + }, + { + "Type": 1, + "SubTag": "pko", + "Description": [ + "P\u00F6koot" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "kln", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pko" + }, + { + "Type": 1, + "SubTag": "pkp", + "Description": [ + "Pukapuka" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pkp" + }, + { + "Type": 1, + "SubTag": "pkr", + "Description": [ + "Attapady Kurumba" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pkr" + }, + { + "Type": 1, + "SubTag": "pks", + "Description": [ + "Pakistan Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pks" + }, + { + "Type": 1, + "SubTag": "pkt", + "Description": [ + "Maleng" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pkt" + }, + { + "Type": 1, + "SubTag": "pku", + "Description": [ + "Paku" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pku" + }, + { + "Type": 1, + "SubTag": "pla", + "Description": [ + "Miani" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pla" + }, + { + "Type": 1, + "SubTag": "plb", + "Description": [ + "Polonombauk" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "plb" + }, + { + "Type": 1, + "SubTag": "plc", + "Description": [ + "Central Palawano" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "plc" + }, + { + "Type": 1, + "SubTag": "pld", + "Description": [ + "Polari" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pld" + }, + { + "Type": 1, + "SubTag": "ple", + "Description": [ + "Palu\u0027e" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ple" + }, + { + "Type": 1, + "SubTag": "plf", + "Description": [ + "Central Malayo-Polynesian languages" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "plf" + }, + { + "Type": 1, + "SubTag": "plg", + "Description": [ + "Pilag\u00E1" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "plg" + }, + { + "Type": 1, + "SubTag": "plh", + "Description": [ + "Paulohi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "plh" + }, + { + "Type": 1, + "SubTag": "plj", + "Description": [ + "Polci" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2023-03-17", + "Comments": [ + "see nzr, pze, uly, zlu" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "plj" + }, + { + "Type": 1, + "SubTag": "plk", + "Description": [ + "Kohistani Shina" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "plk" + }, + { + "Type": 1, + "SubTag": "pll", + "Description": [ + "Shwe Palaung" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pll" + }, + { + "Type": 1, + "SubTag": "pln", + "Description": [ + "Palenquero" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pln" + }, + { + "Type": 1, + "SubTag": "plo", + "Description": [ + "Oluta Popoluca" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "plo" + }, + { + "Type": 1, + "SubTag": "plp", + "Description": [ + "Palpa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2020-03-28", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "plp" + }, + { + "Type": 1, + "SubTag": "plq", + "Description": [ + "Palaic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "plq" + }, + { + "Type": 1, + "SubTag": "plr", + "Description": [ + "Palaka Senoufo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "plr" + }, + { + "Type": 1, + "SubTag": "pls", + "Description": [ + "San Marcos Tlacoyalco Popoloca", + "San Marcos Tlalcoyalco Popoloca" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pls" + }, + { + "Type": 1, + "SubTag": "plt", + "Description": [ + "Plateau Malagasy" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "mg", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "plt" + }, + { + "Type": 1, + "SubTag": "plu", + "Description": [ + "Palik\u00FAr" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "plu" + }, + { + "Type": 1, + "SubTag": "plv", + "Description": [ + "Southwest Palawano" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "plv" + }, + { + "Type": 1, + "SubTag": "plw", + "Description": [ + "Brooke\u0027s Point Palawano" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "plw" + }, + { + "Type": 1, + "SubTag": "ply", + "Description": [ + "Bolyu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ply" + }, + { + "Type": 1, + "SubTag": "plz", + "Description": [ + "Paluan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "plz" + }, + { + "Type": 1, + "SubTag": "pma", + "Description": [ + "Paama" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pma" + }, + { + "Type": 1, + "SubTag": "pmb", + "Description": [ + "Pambia" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pmb" + }, + { + "Type": 1, + "SubTag": "pmc", + "Description": [ + "Palumata" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2016-05-30", + "Comments": [], + "Prefix": [], + "PreferredValue": "huw", + "Tag": "", + "TagAny": "pmc" + }, + { + "Type": 1, + "SubTag": "pmd", + "Description": [ + "Pallanganmiddang" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pmd" + }, + { + "Type": 1, + "SubTag": "pme", + "Description": [ + "Pwaamei" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pme" + }, + { + "Type": 1, + "SubTag": "pmf", + "Description": [ + "Pamona" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pmf" + }, + { + "Type": 1, + "SubTag": "pmh", + "Description": [ + "M\u0101h\u0101r\u0101\u1E63\u1E6Dri Pr\u0101krit" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pmh" + }, + { + "Type": 1, + "SubTag": "pmi", + "Description": [ + "Northern Pumi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pmi" + }, + { + "Type": 1, + "SubTag": "pmj", + "Description": [ + "Southern Pumi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pmj" + }, + { + "Type": 1, + "SubTag": "pmk", + "Description": [ + "Pamlico" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2023-03-17", + "Comments": [], + "Prefix": [], + "PreferredValue": "crr", + "Tag": "", + "TagAny": "pmk" + }, + { + "Type": 1, + "SubTag": "pml", + "Description": [ + "Lingua Franca" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pml" + }, + { + "Type": 1, + "SubTag": "pmm", + "Description": [ + "Pomo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pmm" + }, + { + "Type": 1, + "SubTag": "pmn", + "Description": [ + "Pam" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pmn" + }, + { + "Type": 1, + "SubTag": "pmo", + "Description": [ + "Pom" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pmo" + }, + { + "Type": 1, + "SubTag": "pmq", + "Description": [ + "Northern Pame" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pmq" + }, + { + "Type": 1, + "SubTag": "pmr", + "Description": [ + "Paynamar" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pmr" + }, + { + "Type": 1, + "SubTag": "pms", + "Description": [ + "Piemontese" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pms" + }, + { + "Type": 1, + "SubTag": "pmt", + "Description": [ + "Tuamotuan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pmt" + }, + { + "Type": 1, + "SubTag": "pmu", + "Description": [ + "Mirpur Panjabi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "lah", + "Deprecated": "2015-02-12", + "Comments": [], + "Prefix": [], + "PreferredValue": "phr", + "Tag": "", + "TagAny": "pmu" + }, + { + "Type": 1, + "SubTag": "pmw", + "Description": [ + "Plains Miwok" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pmw" + }, + { + "Type": 1, + "SubTag": "pmx", + "Description": [ + "Poumei Naga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pmx" + }, + { + "Type": 1, + "SubTag": "pmy", + "Description": [ + "Papuan Malay" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pmy" + }, + { + "Type": 1, + "SubTag": "pmz", + "Description": [ + "Southern Pame" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pmz" + }, + { + "Type": 1, + "SubTag": "pna", + "Description": [ + "Punan Bah-Biau" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pna" + }, + { + "Type": 1, + "SubTag": "pnb", + "Description": [ + "Western Panjabi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "lah", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pnb" + }, + { + "Type": 1, + "SubTag": "pnc", + "Description": [ + "Pannei" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pnc" + }, + { + "Type": 1, + "SubTag": "pnd", + "Description": [ + "Mpinda" + ], + "Added": "2019-04-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pnd" + }, + { + "Type": 1, + "SubTag": "pne", + "Description": [ + "Western Penan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pne" + }, + { + "Type": 1, + "SubTag": "png", + "Description": [ + "Pangu", + "Pongu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "png" + }, + { + "Type": 1, + "SubTag": "pnh", + "Description": [ + "Penrhyn" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pnh" + }, + { + "Type": 1, + "SubTag": "pni", + "Description": [ + "Aoheng" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pni" + }, + { + "Type": 1, + "SubTag": "pnj", + "Description": [ + "Pinjarup" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pnj" + }, + { + "Type": 1, + "SubTag": "pnk", + "Description": [ + "Paunaka" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pnk" + }, + { + "Type": 1, + "SubTag": "pnl", + "Description": [ + "Paleni" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [ + "see also wbf" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pnl" + }, + { + "Type": 1, + "SubTag": "pnm", + "Description": [ + "Punan Batu 1" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pnm" + }, + { + "Type": 1, + "SubTag": "pnn", + "Description": [ + "Pinai-Hagahai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pnn" + }, + { + "Type": 1, + "SubTag": "pno", + "Description": [ + "Panobo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pno" + }, + { + "Type": 1, + "SubTag": "pnp", + "Description": [ + "Pancana" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pnp" + }, + { + "Type": 1, + "SubTag": "pnq", + "Description": [ + "Pana (Burkina Faso)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pnq" + }, + { + "Type": 1, + "SubTag": "pnr", + "Description": [ + "Panim" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pnr" + }, + { + "Type": 1, + "SubTag": "pns", + "Description": [ + "Ponosakan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pns" + }, + { + "Type": 1, + "SubTag": "pnt", + "Description": [ + "Pontic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pnt" + }, + { + "Type": 1, + "SubTag": "pnu", + "Description": [ + "Jiongnai Bunu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pnu" + }, + { + "Type": 1, + "SubTag": "pnv", + "Description": [ + "Pinigura" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pnv" + }, + { + "Type": 1, + "SubTag": "pnw", + "Description": [ + "Banyjima", + "Panytyima" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pnw" + }, + { + "Type": 1, + "SubTag": "pnx", + "Description": [ + "Phong-Kniang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pnx" + }, + { + "Type": 1, + "SubTag": "pny", + "Description": [ + "Pinyin" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [ + "a Niger-Congo language spoken in Cameroon; not to be confused with the Pinyin romanization systems used for Chinese and Tibetan" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pny" + }, + { + "Type": 1, + "SubTag": "pnz", + "Description": [ + "Pana (Central African Republic)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pnz" + }, + { + "Type": 1, + "SubTag": "poc", + "Description": [ + "Poqomam" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "poc" + }, + { + "Type": 1, + "SubTag": "pod", + "Description": [ + "Ponares" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2016-05-30", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pod" + }, + { + "Type": 1, + "SubTag": "poe", + "Description": [ + "San Juan Atzingo Popoloca" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "poe" + }, + { + "Type": 1, + "SubTag": "pof", + "Description": [ + "Poke" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pof" + }, + { + "Type": 1, + "SubTag": "pog", + "Description": [ + "Potigu\u00E1ra" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pog" + }, + { + "Type": 1, + "SubTag": "poh", + "Description": [ + "Poqomchi\u0027" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "poh" + }, + { + "Type": 1, + "SubTag": "poi", + "Description": [ + "Highland Popoluca" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "poi" + }, + { + "Type": 1, + "SubTag": "pok", + "Description": [ + "Pokang\u00E1" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pok" + }, + { + "Type": 1, + "SubTag": "pom", + "Description": [ + "Southeastern Pomo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pom" + }, + { + "Type": 1, + "SubTag": "pon", + "Description": [ + "Pohnpeian" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pon" + }, + { + "Type": 1, + "SubTag": "poo", + "Description": [ + "Central Pomo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "poo" + }, + { + "Type": 1, + "SubTag": "pop", + "Description": [ + "Pwapw\u00E2" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pop" + }, + { + "Type": 1, + "SubTag": "poq", + "Description": [ + "Texistepec Popoluca" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "poq" + }, + { + "Type": 1, + "SubTag": "pos", + "Description": [ + "Sayula Popoluca" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pos" + }, + { + "Type": 1, + "SubTag": "pot", + "Description": [ + "Potawatomi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pot" + }, + { + "Type": 1, + "SubTag": "pov", + "Description": [ + "Upper Guinea Crioulo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pov" + }, + { + "Type": 1, + "SubTag": "pow", + "Description": [ + "San Felipe Otlaltepec Popoloca" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pow" + }, + { + "Type": 1, + "SubTag": "pox", + "Description": [ + "Polabian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pox" + }, + { + "Type": 1, + "SubTag": "poy", + "Description": [ + "Pogolo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "poy" + }, + { + "Type": 1, + "SubTag": "poz", + "Description": [ + "Malayo-Polynesian languages" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "poz" + }, + { + "Type": 1, + "SubTag": "ppa", + "Description": [ + "Pao" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2016-05-30", + "Comments": [], + "Prefix": [], + "PreferredValue": "bfy", + "Tag": "", + "TagAny": "ppa" + }, + { + "Type": 1, + "SubTag": "ppe", + "Description": [ + "Papi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ppe" + }, + { + "Type": 1, + "SubTag": "ppi", + "Description": [ + "Paipai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ppi" + }, + { + "Type": 1, + "SubTag": "ppk", + "Description": [ + "Uma" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ppk" + }, + { + "Type": 1, + "SubTag": "ppl", + "Description": [ + "Pipil", + "Nicarao" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ppl" + }, + { + "Type": 1, + "SubTag": "ppm", + "Description": [ + "Papuma" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ppm" + }, + { + "Type": 1, + "SubTag": "ppn", + "Description": [ + "Papapana" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ppn" + }, + { + "Type": 1, + "SubTag": "ppo", + "Description": [ + "Folopa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ppo" + }, + { + "Type": 1, + "SubTag": "ppp", + "Description": [ + "Pelende" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ppp" + }, + { + "Type": 1, + "SubTag": "ppq", + "Description": [ + "Pei" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ppq" + }, + { + "Type": 1, + "SubTag": "ppr", + "Description": [ + "Piru" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2013-09-10", + "Comments": [], + "Prefix": [], + "PreferredValue": "lcq", + "Tag": "", + "TagAny": "ppr" + }, + { + "Type": 1, + "SubTag": "pps", + "Description": [ + "San Lu\u00EDs Temalacayuca Popoloca" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pps" + }, + { + "Type": 1, + "SubTag": "ppt", + "Description": [ + "Pare" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ppt" + }, + { + "Type": 1, + "SubTag": "ppu", + "Description": [ + "Papora" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ppu" + }, + { + "Type": 1, + "SubTag": "pqa", + "Description": [ + "Pa\u0027a" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pqa" + }, + { + "Type": 1, + "SubTag": "pqe", + "Description": [ + "Eastern Malayo-Polynesian languages" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pqe" + }, + { + "Type": 1, + "SubTag": "pqm", + "Description": [ + "Malecite-Passamaquoddy" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pqm" + }, + { + "Type": 1, + "SubTag": "pqw", + "Description": [ + "Western Malayo-Polynesian languages" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pqw" + }, + { + "Type": 1, + "SubTag": "pra", + "Description": [ + "Prakrit languages" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pra" + }, + { + "Type": 1, + "SubTag": "prb", + "Description": [ + "Lua\u0027" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2017-02-23", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "prb" + }, + { + "Type": 1, + "SubTag": "prc", + "Description": [ + "Parachi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "prc" + }, + { + "Type": 1, + "SubTag": "prd", + "Description": [ + "Parsi-Dari" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "prd" + }, + { + "Type": 1, + "SubTag": "pre", + "Description": [ + "Principense" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pre" + }, + { + "Type": 1, + "SubTag": "prf", + "Description": [ + "Paranan" + ], + "Added": "2010-03-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "prf" + }, + { + "Type": 1, + "SubTag": "prg", + "Description": [ + "Prussian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "prg" + }, + { + "Type": 1, + "SubTag": "prh", + "Description": [ + "Porohanon" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "prh" + }, + { + "Type": 1, + "SubTag": "pri", + "Description": [ + "Paic\u00EE" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pri" + }, + { + "Type": 1, + "SubTag": "prk", + "Description": [ + "Parauk" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "prk" + }, + { + "Type": 1, + "SubTag": "prl", + "Description": [ + "Peruvian Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "prl" + }, + { + "Type": 1, + "SubTag": "prm", + "Description": [ + "Kibiri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "prm" + }, + { + "Type": 1, + "SubTag": "prn", + "Description": [ + "Prasuni" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "prn" + }, + { + "Type": 1, + "SubTag": "pro", + "Description": [ + "Old Proven\u00E7al (to 1500)", + "Old Occitan (to 1500)" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pro" + }, + { + "Type": 1, + "SubTag": "prp", + "Description": [ + "Parsi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2023-03-17", + "Comments": [], + "Prefix": [], + "PreferredValue": "gu", + "Tag": "", + "TagAny": "prp" + }, + { + "Type": 1, + "SubTag": "prq", + "Description": [ + "Ash\u00E9ninka Peren\u00E9" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "prq" + }, + { + "Type": 1, + "SubTag": "prr", + "Description": [ + "Puri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "prr" + }, + { + "Type": 1, + "SubTag": "prs", + "Description": [ + "Dari", + "Afghan Persian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "fa", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "prs" + }, + { + "Type": 1, + "SubTag": "prt", + "Description": [ + "Phai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "prt" + }, + { + "Type": 1, + "SubTag": "pru", + "Description": [ + "Puragi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pru" + }, + { + "Type": 1, + "SubTag": "prw", + "Description": [ + "Parawen" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "prw" + }, + { + "Type": 1, + "SubTag": "prx", + "Description": [ + "Purik" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "prx" + }, + { + "Type": 1, + "SubTag": "pry", + "Description": [ + "Pray 3" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2016-05-30", + "Comments": [], + "Prefix": [], + "PreferredValue": "prt", + "Tag": "", + "TagAny": "pry" + }, + { + "Type": 1, + "SubTag": "prz", + "Description": [ + "Providencia Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "prz" + }, + { + "Type": 1, + "SubTag": "psa", + "Description": [ + "Asue Awyu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "psa" + }, + { + "Type": 1, + "SubTag": "psc", + "Description": [ + "Iranian Sign Language", + "Persian Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "psc" + }, + { + "Type": 1, + "SubTag": "psd", + "Description": [ + "Plains Indian Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "psd" + }, + { + "Type": 1, + "SubTag": "pse", + "Description": [ + "Central Malay" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ms", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pse" + }, + { + "Type": 1, + "SubTag": "psg", + "Description": [ + "Penang Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "psg" + }, + { + "Type": 1, + "SubTag": "psh", + "Description": [ + "Southwest Pashai", + "Southwest Pashayi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "psh" + }, + { + "Type": 1, + "SubTag": "psi", + "Description": [ + "Southeast Pashai", + "Southeast Pashayi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "psi" + }, + { + "Type": 1, + "SubTag": "psl", + "Description": [ + "Puerto Rican Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "psl" + }, + { + "Type": 1, + "SubTag": "psm", + "Description": [ + "Pauserna" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "psm" + }, + { + "Type": 1, + "SubTag": "psn", + "Description": [ + "Panasuan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "psn" + }, + { + "Type": 1, + "SubTag": "pso", + "Description": [ + "Polish Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pso" + }, + { + "Type": 1, + "SubTag": "psp", + "Description": [ + "Philippine Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "psp" + }, + { + "Type": 1, + "SubTag": "psq", + "Description": [ + "Pasi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "psq" + }, + { + "Type": 1, + "SubTag": "psr", + "Description": [ + "Portuguese Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "psr" + }, + { + "Type": 1, + "SubTag": "pss", + "Description": [ + "Kaulong" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pss" + }, + { + "Type": 1, + "SubTag": "pst", + "Description": [ + "Central Pashto" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ps", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pst" + }, + { + "Type": 1, + "SubTag": "psu", + "Description": [ + "Sauraseni Pr\u0101krit" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "psu" + }, + { + "Type": 1, + "SubTag": "psw", + "Description": [ + "Port Sandwich" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "psw" + }, + { + "Type": 1, + "SubTag": "psy", + "Description": [ + "Piscataway" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "psy" + }, + { + "Type": 1, + "SubTag": "pta", + "Description": [ + "Pai Tavytera" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pta" + }, + { + "Type": 1, + "SubTag": "pth", + "Description": [ + "Patax\u00F3 H\u00E3-Ha-H\u00E3e" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pth" + }, + { + "Type": 1, + "SubTag": "pti", + "Description": [ + "Pindiini", + "Wangkatha" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pti" + }, + { + "Type": 1, + "SubTag": "ptn", + "Description": [ + "Patani" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ptn" + }, + { + "Type": 1, + "SubTag": "pto", + "Description": [ + "Zo\u0027\u00E9" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pto" + }, + { + "Type": 1, + "SubTag": "ptp", + "Description": [ + "Patep" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ptp" + }, + { + "Type": 1, + "SubTag": "ptq", + "Description": [ + "Pattapu" + ], + "Added": "2014-04-06", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ptq" + }, + { + "Type": 1, + "SubTag": "ptr", + "Description": [ + "Piamatsina" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ptr" + }, + { + "Type": 1, + "SubTag": "ptt", + "Description": [ + "Enrekang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ptt" + }, + { + "Type": 1, + "SubTag": "ptu", + "Description": [ + "Bambam" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ptu" + }, + { + "Type": 1, + "SubTag": "ptv", + "Description": [ + "Port Vato" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ptv" + }, + { + "Type": 1, + "SubTag": "ptw", + "Description": [ + "Pentlatch" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ptw" + }, + { + "Type": 1, + "SubTag": "pty", + "Description": [ + "Pathiya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pty" + }, + { + "Type": 1, + "SubTag": "pua", + "Description": [ + "Western Highland Purepecha" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pua" + }, + { + "Type": 1, + "SubTag": "pub", + "Description": [ + "Purum" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pub" + }, + { + "Type": 1, + "SubTag": "puc", + "Description": [ + "Punan Merap" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "puc" + }, + { + "Type": 1, + "SubTag": "pud", + "Description": [ + "Punan Aput" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pud" + }, + { + "Type": 1, + "SubTag": "pue", + "Description": [ + "Puelche" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pue" + }, + { + "Type": 1, + "SubTag": "puf", + "Description": [ + "Punan Merah" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "puf" + }, + { + "Type": 1, + "SubTag": "pug", + "Description": [ + "Phuie" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pug" + }, + { + "Type": 1, + "SubTag": "pui", + "Description": [ + "Puinave" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pui" + }, + { + "Type": 1, + "SubTag": "puj", + "Description": [ + "Punan Tubu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "puj" + }, + { + "Type": 1, + "SubTag": "puk", + "Description": [ + "Pu Ko" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2017-02-23", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "puk" + }, + { + "Type": 1, + "SubTag": "pum", + "Description": [ + "Puma" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pum" + }, + { + "Type": 1, + "SubTag": "puo", + "Description": [ + "Puoc" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "puo" + }, + { + "Type": 1, + "SubTag": "pup", + "Description": [ + "Pulabu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pup" + }, + { + "Type": 1, + "SubTag": "puq", + "Description": [ + "Puquina" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "puq" + }, + { + "Type": 1, + "SubTag": "pur", + "Description": [ + "Purubor\u00E1" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pur" + }, + { + "Type": 1, + "SubTag": "put", + "Description": [ + "Putoh" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "put" + }, + { + "Type": 1, + "SubTag": "puu", + "Description": [ + "Punu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "puu" + }, + { + "Type": 1, + "SubTag": "puw", + "Description": [ + "Puluwatese" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "puw" + }, + { + "Type": 1, + "SubTag": "pux", + "Description": [ + "Puare" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pux" + }, + { + "Type": 1, + "SubTag": "puy", + "Description": [ + "Purisime\u00F1o" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "puy" + }, + { + "Type": 1, + "SubTag": "puz", + "Description": [ + "Purum Naga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2014-02-28", + "Comments": [], + "Prefix": [], + "PreferredValue": "pub", + "Tag": "", + "TagAny": "puz" + }, + { + "Type": 1, + "SubTag": "pwa", + "Description": [ + "Pawaia" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pwa" + }, + { + "Type": 1, + "SubTag": "pwb", + "Description": [ + "Panawa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pwb" + }, + { + "Type": 1, + "SubTag": "pwg", + "Description": [ + "Gapapaiwa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pwg" + }, + { + "Type": 1, + "SubTag": "pwi", + "Description": [ + "Patwin" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pwi" + }, + { + "Type": 1, + "SubTag": "pwm", + "Description": [ + "Molbog" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pwm" + }, + { + "Type": 1, + "SubTag": "pwn", + "Description": [ + "Paiwan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pwn" + }, + { + "Type": 1, + "SubTag": "pwo", + "Description": [ + "Pwo Western Karen" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pwo" + }, + { + "Type": 1, + "SubTag": "pwr", + "Description": [ + "Powari" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pwr" + }, + { + "Type": 1, + "SubTag": "pww", + "Description": [ + "Pwo Northern Karen" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pww" + }, + { + "Type": 1, + "SubTag": "pxm", + "Description": [ + "Quetzaltepec Mixe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pxm" + }, + { + "Type": 1, + "SubTag": "pye", + "Description": [ + "Pye Krumen" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pye" + }, + { + "Type": 1, + "SubTag": "pym", + "Description": [ + "Fyam" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pym" + }, + { + "Type": 1, + "SubTag": "pyn", + "Description": [ + "Poyan\u00E1wa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pyn" + }, + { + "Type": 1, + "SubTag": "pys", + "Description": [ + "Paraguayan Sign Language", + "Lengua de Se\u00F1as del Paraguay" + ], + "Added": "2010-03-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pys" + }, + { + "Type": 1, + "SubTag": "pyu", + "Description": [ + "Puyuma" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pyu" + }, + { + "Type": 1, + "SubTag": "pyx", + "Description": [ + "Pyu (Myanmar)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pyx" + }, + { + "Type": 1, + "SubTag": "pyy", + "Description": [ + "Pyen" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pyy" + }, + { + "Type": 1, + "SubTag": "pze", + "Description": [ + "Pesse" + ], + "Added": "2023-03-17", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pze" + }, + { + "Type": 1, + "SubTag": "pzh", + "Description": [ + "Pazeh" + ], + "Added": "2022-02-25", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pzh" + }, + { + "Type": 1, + "SubTag": "pzn", + "Description": [ + "Jejara Naga", + "Para Naga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "pzn" + }, + { + "Type": 1, + "SubTag": "qaa..qtz", + "Description": [ + "Private use" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "private-use", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "qaa..qtz" + }, + { + "Type": 1, + "SubTag": "qua", + "Description": [ + "Quapaw" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "qua" + }, + { + "Type": 1, + "SubTag": "qub", + "Description": [ + "Huallaga Hu\u00E1nuco Quechua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "qu", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "qub" + }, + { + "Type": 1, + "SubTag": "quc", + "Description": [ + "K\u0027iche\u0027", + "Quich\u00E9" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "quc" + }, + { + "Type": 1, + "SubTag": "qud", + "Description": [ + "Calder\u00F3n Highland Quichua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "qu", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "qud" + }, + { + "Type": 1, + "SubTag": "quf", + "Description": [ + "Lambayeque Quechua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "qu", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "quf" + }, + { + "Type": 1, + "SubTag": "qug", + "Description": [ + "Chimborazo Highland Quichua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "qu", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "qug" + }, + { + "Type": 1, + "SubTag": "quh", + "Description": [ + "South Bolivian Quechua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "qu", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "quh" + }, + { + "Type": 1, + "SubTag": "qui", + "Description": [ + "Quileute" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "qui" + }, + { + "Type": 1, + "SubTag": "quk", + "Description": [ + "Chachapoyas Quechua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "qu", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "quk" + }, + { + "Type": 1, + "SubTag": "qul", + "Description": [ + "North Bolivian Quechua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "qu", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "qul" + }, + { + "Type": 1, + "SubTag": "qum", + "Description": [ + "Sipacapense" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "qum" + }, + { + "Type": 1, + "SubTag": "qun", + "Description": [ + "Quinault" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "qun" + }, + { + "Type": 1, + "SubTag": "qup", + "Description": [ + "Southern Pastaza Quechua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "qu", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "qup" + }, + { + "Type": 1, + "SubTag": "quq", + "Description": [ + "Quinqui" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "quq" + }, + { + "Type": 1, + "SubTag": "qur", + "Description": [ + "Yanahuanca Pasco Quechua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "qu", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "qur" + }, + { + "Type": 1, + "SubTag": "qus", + "Description": [ + "Santiago del Estero Quichua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "qu", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "qus" + }, + { + "Type": 1, + "SubTag": "quv", + "Description": [ + "Sacapulteco" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "quv" + }, + { + "Type": 1, + "SubTag": "quw", + "Description": [ + "Tena Lowland Quichua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "qu", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "quw" + }, + { + "Type": 1, + "SubTag": "qux", + "Description": [ + "Yauyos Quechua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "qu", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "qux" + }, + { + "Type": 1, + "SubTag": "quy", + "Description": [ + "Ayacucho Quechua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "qu", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "quy" + }, + { + "Type": 1, + "SubTag": "quz", + "Description": [ + "Cusco Quechua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "qu", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "quz" + }, + { + "Type": 1, + "SubTag": "qva", + "Description": [ + "Ambo-Pasco Quechua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "qu", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "qva" + }, + { + "Type": 1, + "SubTag": "qvc", + "Description": [ + "Cajamarca Quechua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "qu", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "qvc" + }, + { + "Type": 1, + "SubTag": "qve", + "Description": [ + "Eastern Apur\u00EDmac Quechua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "qu", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "qve" + }, + { + "Type": 1, + "SubTag": "qvh", + "Description": [ + "Huamal\u00EDes-Dos de Mayo Hu\u00E1nuco Quechua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "qu", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "qvh" + }, + { + "Type": 1, + "SubTag": "qvi", + "Description": [ + "Imbabura Highland Quichua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "qu", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "qvi" + }, + { + "Type": 1, + "SubTag": "qvj", + "Description": [ + "Loja Highland Quichua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "qu", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "qvj" + }, + { + "Type": 1, + "SubTag": "qvl", + "Description": [ + "Cajatambo North Lima Quechua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "qu", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "qvl" + }, + { + "Type": 1, + "SubTag": "qvm", + "Description": [ + "Margos-Yarowilca-Lauricocha Quechua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "qu", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "qvm" + }, + { + "Type": 1, + "SubTag": "qvn", + "Description": [ + "North Jun\u00EDn Quechua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "qu", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "qvn" + }, + { + "Type": 1, + "SubTag": "qvo", + "Description": [ + "Napo Lowland Quechua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "qu", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "qvo" + }, + { + "Type": 1, + "SubTag": "qvp", + "Description": [ + "Pacaraos Quechua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "qu", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "qvp" + }, + { + "Type": 1, + "SubTag": "qvs", + "Description": [ + "San Mart\u00EDn Quechua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "qu", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "qvs" + }, + { + "Type": 1, + "SubTag": "qvw", + "Description": [ + "Huaylla Wanca Quechua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "qu", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "qvw" + }, + { + "Type": 1, + "SubTag": "qvy", + "Description": [ + "Queyu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "qvy" + }, + { + "Type": 1, + "SubTag": "qvz", + "Description": [ + "Northern Pastaza Quichua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "qu", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "qvz" + }, + { + "Type": 1, + "SubTag": "qwa", + "Description": [ + "Corongo Ancash Quechua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "qu", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "qwa" + }, + { + "Type": 1, + "SubTag": "qwc", + "Description": [ + "Classical Quechua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "qu", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "qwc" + }, + { + "Type": 1, + "SubTag": "qwe", + "Description": [ + "Quechuan (family)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "qwe" + }, + { + "Type": 1, + "SubTag": "qwh", + "Description": [ + "Huaylas Ancash Quechua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "qu", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "qwh" + }, + { + "Type": 1, + "SubTag": "qwm", + "Description": [ + "Kuman (Russia)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "qwm" + }, + { + "Type": 1, + "SubTag": "qws", + "Description": [ + "Sihuas Ancash Quechua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "qu", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "qws" + }, + { + "Type": 1, + "SubTag": "qwt", + "Description": [ + "Kwalhioqua-Tlatskanai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "qwt" + }, + { + "Type": 1, + "SubTag": "qxa", + "Description": [ + "Chiqui\u00E1n Ancash Quechua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "qu", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "qxa" + }, + { + "Type": 1, + "SubTag": "qxc", + "Description": [ + "Chincha Quechua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "qu", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "qxc" + }, + { + "Type": 1, + "SubTag": "qxh", + "Description": [ + "Panao Hu\u00E1nuco Quechua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "qu", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "qxh" + }, + { + "Type": 1, + "SubTag": "qxl", + "Description": [ + "Salasaca Highland Quichua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "qu", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "qxl" + }, + { + "Type": 1, + "SubTag": "qxn", + "Description": [ + "Northern Conchucos Ancash Quechua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "qu", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "qxn" + }, + { + "Type": 1, + "SubTag": "qxo", + "Description": [ + "Southern Conchucos Ancash Quechua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "qu", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "qxo" + }, + { + "Type": 1, + "SubTag": "qxp", + "Description": [ + "Puno Quechua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "qu", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "qxp" + }, + { + "Type": 1, + "SubTag": "qxq", + "Description": [ + "Qashqa\u0027i" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "qxq" + }, + { + "Type": 1, + "SubTag": "qxr", + "Description": [ + "Ca\u00F1ar Highland Quichua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "qu", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "qxr" + }, + { + "Type": 1, + "SubTag": "qxs", + "Description": [ + "Southern Qiang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "qxs" + }, + { + "Type": 1, + "SubTag": "qxt", + "Description": [ + "Santa Ana de Tusi Pasco Quechua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "qu", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "qxt" + }, + { + "Type": 1, + "SubTag": "qxu", + "Description": [ + "Arequipa-La Uni\u00F3n Quechua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "qu", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "qxu" + }, + { + "Type": 1, + "SubTag": "qxw", + "Description": [ + "Jauja Wanca Quechua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "qu", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "qxw" + }, + { + "Type": 1, + "SubTag": "qya", + "Description": [ + "Quenya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "qya" + }, + { + "Type": 1, + "SubTag": "qyp", + "Description": [ + "Quiripi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "qyp" + }, + { + "Type": 1, + "SubTag": "raa", + "Description": [ + "Dungmali" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "raa" + }, + { + "Type": 1, + "SubTag": "rab", + "Description": [ + "Camling" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rab" + }, + { + "Type": 1, + "SubTag": "rac", + "Description": [ + "Rasawa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rac" + }, + { + "Type": 1, + "SubTag": "rad", + "Description": [ + "Rade" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rad" + }, + { + "Type": 1, + "SubTag": "raf", + "Description": [ + "Western Meohang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "raf" + }, + { + "Type": 1, + "SubTag": "rag", + "Description": [ + "Logooli", + "Lulogooli" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "luy", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rag" + }, + { + "Type": 1, + "SubTag": "rah", + "Description": [ + "Rabha" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rah" + }, + { + "Type": 1, + "SubTag": "rai", + "Description": [ + "Ramoaaina" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rai" + }, + { + "Type": 1, + "SubTag": "raj", + "Description": [ + "Rajasthani" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "macrolanguage", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "raj" + }, + { + "Type": 1, + "SubTag": "rak", + "Description": [ + "Tulu-Bohuai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rak" + }, + { + "Type": 1, + "SubTag": "ral", + "Description": [ + "Ralte" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ral" + }, + { + "Type": 1, + "SubTag": "ram", + "Description": [ + "Canela" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ram" + }, + { + "Type": 1, + "SubTag": "ran", + "Description": [ + "Riantana" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ran" + }, + { + "Type": 1, + "SubTag": "rao", + "Description": [ + "Rao" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rao" + }, + { + "Type": 1, + "SubTag": "rap", + "Description": [ + "Rapanui" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rap" + }, + { + "Type": 1, + "SubTag": "raq", + "Description": [ + "Saam" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "raq" + }, + { + "Type": 1, + "SubTag": "rar", + "Description": [ + "Rarotongan", + "Cook Islands Maori" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rar" + }, + { + "Type": 1, + "SubTag": "ras", + "Description": [ + "Tegali" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ras" + }, + { + "Type": 1, + "SubTag": "rat", + "Description": [ + "Razajerdi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rat" + }, + { + "Type": 1, + "SubTag": "rau", + "Description": [ + "Raute" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rau" + }, + { + "Type": 1, + "SubTag": "rav", + "Description": [ + "Sampang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rav" + }, + { + "Type": 1, + "SubTag": "raw", + "Description": [ + "Rawang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "raw" + }, + { + "Type": 1, + "SubTag": "rax", + "Description": [ + "Rang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rax" + }, + { + "Type": 1, + "SubTag": "ray", + "Description": [ + "Rapa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ray" + }, + { + "Type": 1, + "SubTag": "raz", + "Description": [ + "Rahambuu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "raz" + }, + { + "Type": 1, + "SubTag": "rbb", + "Description": [ + "Rumai Palaung" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rbb" + }, + { + "Type": 1, + "SubTag": "rbk", + "Description": [ + "Northern Bontok" + ], + "Added": "2010-03-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "bnc", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rbk" + }, + { + "Type": 1, + "SubTag": "rbl", + "Description": [ + "Miraya Bikol" + ], + "Added": "2010-03-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "bik", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rbl" + }, + { + "Type": 1, + "SubTag": "rbp", + "Description": [ + "Barababaraba" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rbp" + }, + { + "Type": 1, + "SubTag": "rcf", + "Description": [ + "R\u00E9union Creole French" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rcf" + }, + { + "Type": 1, + "SubTag": "rdb", + "Description": [ + "Rudbari" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rdb" + }, + { + "Type": 1, + "SubTag": "rea", + "Description": [ + "Rerau" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rea" + }, + { + "Type": 1, + "SubTag": "reb", + "Description": [ + "Rembong" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "reb" + }, + { + "Type": 1, + "SubTag": "ree", + "Description": [ + "Rejang Kayan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ree" + }, + { + "Type": 1, + "SubTag": "reg", + "Description": [ + "Kara (Tanzania)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "reg" + }, + { + "Type": 1, + "SubTag": "rei", + "Description": [ + "Reli" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rei" + }, + { + "Type": 1, + "SubTag": "rej", + "Description": [ + "Rejang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rej" + }, + { + "Type": 1, + "SubTag": "rel", + "Description": [ + "Rendille" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rel" + }, + { + "Type": 1, + "SubTag": "rem", + "Description": [ + "Remo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rem" + }, + { + "Type": 1, + "SubTag": "ren", + "Description": [ + "Rengao" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ren" + }, + { + "Type": 1, + "SubTag": "rer", + "Description": [ + "Rer Bare" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rer" + }, + { + "Type": 1, + "SubTag": "res", + "Description": [ + "Reshe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "res" + }, + { + "Type": 1, + "SubTag": "ret", + "Description": [ + "Retta" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ret" + }, + { + "Type": 1, + "SubTag": "rey", + "Description": [ + "Reyesano" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rey" + }, + { + "Type": 1, + "SubTag": "rga", + "Description": [ + "Roria" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rga" + }, + { + "Type": 1, + "SubTag": "rge", + "Description": [ + "Romano-Greek" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rge" + }, + { + "Type": 1, + "SubTag": "rgk", + "Description": [ + "Rangkas" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rgk" + }, + { + "Type": 1, + "SubTag": "rgn", + "Description": [ + "Romagnol" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rgn" + }, + { + "Type": 1, + "SubTag": "rgr", + "Description": [ + "Res\u00EDgaro" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rgr" + }, + { + "Type": 1, + "SubTag": "rgs", + "Description": [ + "Southern Roglai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rgs" + }, + { + "Type": 1, + "SubTag": "rgu", + "Description": [ + "Ringgou" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rgu" + }, + { + "Type": 1, + "SubTag": "rhg", + "Description": [ + "Rohingya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rhg" + }, + { + "Type": 1, + "SubTag": "rhp", + "Description": [ + "Yahang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rhp" + }, + { + "Type": 1, + "SubTag": "ria", + "Description": [ + "Riang (India)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ria" + }, + { + "Type": 1, + "SubTag": "rib", + "Description": [ + "Bribri Sign Language" + ], + "Added": "2022-02-25", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rib" + }, + { + "Type": 1, + "SubTag": "rie", + "Description": [ + "Rien" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2017-02-23", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rie" + }, + { + "Type": 1, + "SubTag": "rif", + "Description": [ + "Tarifit" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rif" + }, + { + "Type": 1, + "SubTag": "ril", + "Description": [ + "Riang Lang", + "Riang (Myanmar)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ril" + }, + { + "Type": 1, + "SubTag": "rim", + "Description": [ + "Nyaturu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rim" + }, + { + "Type": 1, + "SubTag": "rin", + "Description": [ + "Nungu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rin" + }, + { + "Type": 1, + "SubTag": "rir", + "Description": [ + "Ribun" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rir" + }, + { + "Type": 1, + "SubTag": "rit", + "Description": [ + "Ritharrngu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rit" + }, + { + "Type": 1, + "SubTag": "riu", + "Description": [ + "Riung" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "riu" + }, + { + "Type": 1, + "SubTag": "rjg", + "Description": [ + "Rajong" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rjg" + }, + { + "Type": 1, + "SubTag": "rji", + "Description": [ + "Raji" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rji" + }, + { + "Type": 1, + "SubTag": "rjs", + "Description": [ + "Rajbanshi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rjs" + }, + { + "Type": 1, + "SubTag": "rka", + "Description": [ + "Kraol" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rka" + }, + { + "Type": 1, + "SubTag": "rkb", + "Description": [ + "Rikbaktsa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rkb" + }, + { + "Type": 1, + "SubTag": "rkh", + "Description": [ + "Rakahanga-Manihiki" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rkh" + }, + { + "Type": 1, + "SubTag": "rki", + "Description": [ + "Rakhine" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rki" + }, + { + "Type": 1, + "SubTag": "rkm", + "Description": [ + "Marka" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rkm" + }, + { + "Type": 1, + "SubTag": "rkt", + "Description": [ + "Rangpuri", + "Kamta" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rkt" + }, + { + "Type": 1, + "SubTag": "rkw", + "Description": [ + "Arakwal" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rkw" + }, + { + "Type": 1, + "SubTag": "rma", + "Description": [ + "Rama" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rma" + }, + { + "Type": 1, + "SubTag": "rmb", + "Description": [ + "Rembarrnga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rmb" + }, + { + "Type": 1, + "SubTag": "rmc", + "Description": [ + "Carpathian Romani" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "rom", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rmc" + }, + { + "Type": 1, + "SubTag": "rmd", + "Description": [ + "Traveller Danish" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rmd" + }, + { + "Type": 1, + "SubTag": "rme", + "Description": [ + "Angloromani" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rme" + }, + { + "Type": 1, + "SubTag": "rmf", + "Description": [ + "Kalo Finnish Romani" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "rom", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rmf" + }, + { + "Type": 1, + "SubTag": "rmg", + "Description": [ + "Traveller Norwegian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rmg" + }, + { + "Type": 1, + "SubTag": "rmh", + "Description": [ + "Murkim" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rmh" + }, + { + "Type": 1, + "SubTag": "rmi", + "Description": [ + "Lomavren" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rmi" + }, + { + "Type": 1, + "SubTag": "rmk", + "Description": [ + "Romkun" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rmk" + }, + { + "Type": 1, + "SubTag": "rml", + "Description": [ + "Baltic Romani" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "rom", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rml" + }, + { + "Type": 1, + "SubTag": "rmm", + "Description": [ + "Roma" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rmm" + }, + { + "Type": 1, + "SubTag": "rmn", + "Description": [ + "Balkan Romani" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "rom", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rmn" + }, + { + "Type": 1, + "SubTag": "rmo", + "Description": [ + "Sinte Romani" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "rom", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rmo" + }, + { + "Type": 1, + "SubTag": "rmp", + "Description": [ + "Rempi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rmp" + }, + { + "Type": 1, + "SubTag": "rmq", + "Description": [ + "Cal\u00F3" + ], + "Added": "2010-03-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rmq" + }, + { + "Type": 1, + "SubTag": "rmr", + "Description": [ + "Cal\u00F3" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2010-03-11", + "Comments": [ + "see emx, rmq" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rmr" + }, + { + "Type": 1, + "SubTag": "rms", + "Description": [ + "Romanian Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rms" + }, + { + "Type": 1, + "SubTag": "rmt", + "Description": [ + "Domari" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rmt" + }, + { + "Type": 1, + "SubTag": "rmu", + "Description": [ + "Tavringer Romani" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rmu" + }, + { + "Type": 1, + "SubTag": "rmv", + "Description": [ + "Romanova" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rmv" + }, + { + "Type": 1, + "SubTag": "rmw", + "Description": [ + "Welsh Romani" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "rom", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rmw" + }, + { + "Type": 1, + "SubTag": "rmx", + "Description": [ + "Romam" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rmx" + }, + { + "Type": 1, + "SubTag": "rmy", + "Description": [ + "Vlax Romani" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "rom", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rmy" + }, + { + "Type": 1, + "SubTag": "rmz", + "Description": [ + "Marma" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rmz" + }, + { + "Type": 1, + "SubTag": "rna", + "Description": [ + "Runa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2016-05-30", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rna" + }, + { + "Type": 1, + "SubTag": "rnb", + "Description": [ + "Brunca Sign Language" + ], + "Added": "2022-02-25", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rnb" + }, + { + "Type": 1, + "SubTag": "rnd", + "Description": [ + "Ruund" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rnd" + }, + { + "Type": 1, + "SubTag": "rng", + "Description": [ + "Ronga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rng" + }, + { + "Type": 1, + "SubTag": "rnl", + "Description": [ + "Ranglong" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rnl" + }, + { + "Type": 1, + "SubTag": "rnn", + "Description": [ + "Roon" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rnn" + }, + { + "Type": 1, + "SubTag": "rnp", + "Description": [ + "Rongpo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rnp" + }, + { + "Type": 1, + "SubTag": "rnr", + "Description": [ + "Nari Nari" + ], + "Added": "2012-08-20", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rnr" + }, + { + "Type": 1, + "SubTag": "rnw", + "Description": [ + "Rungwa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rnw" + }, + { + "Type": 1, + "SubTag": "roa", + "Description": [ + "Romance languages" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "roa" + }, + { + "Type": 1, + "SubTag": "rob", + "Description": [ + "Tae\u0027" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rob" + }, + { + "Type": 1, + "SubTag": "roc", + "Description": [ + "Cacgia Roglai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "roc" + }, + { + "Type": 1, + "SubTag": "rod", + "Description": [ + "Rogo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rod" + }, + { + "Type": 1, + "SubTag": "roe", + "Description": [ + "Ronji" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "roe" + }, + { + "Type": 1, + "SubTag": "rof", + "Description": [ + "Rombo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rof" + }, + { + "Type": 1, + "SubTag": "rog", + "Description": [ + "Northern Roglai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rog" + }, + { + "Type": 1, + "SubTag": "rol", + "Description": [ + "Romblomanon" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rol" + }, + { + "Type": 1, + "SubTag": "rom", + "Description": [ + "Romany" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "macrolanguage", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rom" + }, + { + "Type": 1, + "SubTag": "roo", + "Description": [ + "Rotokas" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "roo" + }, + { + "Type": 1, + "SubTag": "rop", + "Description": [ + "Kriol" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rop" + }, + { + "Type": 1, + "SubTag": "ror", + "Description": [ + "Rongga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ror" + }, + { + "Type": 1, + "SubTag": "rou", + "Description": [ + "Runga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rou" + }, + { + "Type": 1, + "SubTag": "row", + "Description": [ + "Dela-Oenale" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "row" + }, + { + "Type": 1, + "SubTag": "rpn", + "Description": [ + "Repanbitip" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rpn" + }, + { + "Type": 1, + "SubTag": "rpt", + "Description": [ + "Rapting" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rpt" + }, + { + "Type": 1, + "SubTag": "rri", + "Description": [ + "Ririo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rri" + }, + { + "Type": 1, + "SubTag": "rrm", + "Description": [ + "Moriori" + ], + "Added": "2024-03-04", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rrm" + }, + { + "Type": 1, + "SubTag": "rro", + "Description": [ + "Waima" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rro" + }, + { + "Type": 1, + "SubTag": "rrt", + "Description": [ + "Arritinngithigh" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rrt" + }, + { + "Type": 1, + "SubTag": "rsb", + "Description": [ + "Romano-Serbian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rsb" + }, + { + "Type": 1, + "SubTag": "rsi", + "Description": [ + "Rennellese Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2017-02-23", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rsi" + }, + { + "Type": 1, + "SubTag": "rsk", + "Description": [ + "Ruthenian", + "Rusnak" + ], + "Added": "2022-02-25", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rsk" + }, + { + "Type": 1, + "SubTag": "rsl", + "Description": [ + "Russian Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rsl" + }, + { + "Type": 1, + "SubTag": "rsm", + "Description": [ + "Miriwoong Sign Language" + ], + "Added": "2016-05-30", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rsm" + }, + { + "Type": 1, + "SubTag": "rsn", + "Description": [ + "Rwandan Sign Language" + ], + "Added": "2022-02-25", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rsn" + }, + { + "Type": 1, + "SubTag": "rsw", + "Description": [ + "Rishiwa" + ], + "Added": "2023-03-17", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rsw" + }, + { + "Type": 1, + "SubTag": "rtc", + "Description": [ + "Rungtu Chin" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rtc" + }, + { + "Type": 1, + "SubTag": "rth", + "Description": [ + "Ratahan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rth" + }, + { + "Type": 1, + "SubTag": "rtm", + "Description": [ + "Rotuman" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rtm" + }, + { + "Type": 1, + "SubTag": "rts", + "Description": [ + "Yurats" + ], + "Added": "2015-02-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rts" + }, + { + "Type": 1, + "SubTag": "rtw", + "Description": [ + "Rathawi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rtw" + }, + { + "Type": 1, + "SubTag": "rub", + "Description": [ + "Gungu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rub" + }, + { + "Type": 1, + "SubTag": "ruc", + "Description": [ + "Ruuli" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ruc" + }, + { + "Type": 1, + "SubTag": "rue", + "Description": [ + "Rusyn" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rue" + }, + { + "Type": 1, + "SubTag": "ruf", + "Description": [ + "Luguru" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ruf" + }, + { + "Type": 1, + "SubTag": "rug", + "Description": [ + "Roviana" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rug" + }, + { + "Type": 1, + "SubTag": "ruh", + "Description": [ + "Ruga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ruh" + }, + { + "Type": 1, + "SubTag": "rui", + "Description": [ + "Rufiji" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rui" + }, + { + "Type": 1, + "SubTag": "ruk", + "Description": [ + "Che" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ruk" + }, + { + "Type": 1, + "SubTag": "ruo", + "Description": [ + "Istro Romanian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ruo" + }, + { + "Type": 1, + "SubTag": "rup", + "Description": [ + "Macedo-Romanian", + "Aromanian", + "Arumanian" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rup" + }, + { + "Type": 1, + "SubTag": "ruq", + "Description": [ + "Megleno Romanian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ruq" + }, + { + "Type": 1, + "SubTag": "rut", + "Description": [ + "Rutul" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rut" + }, + { + "Type": 1, + "SubTag": "ruu", + "Description": [ + "Lanas Lobu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ruu" + }, + { + "Type": 1, + "SubTag": "ruy", + "Description": [ + "Mala (Nigeria)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ruy" + }, + { + "Type": 1, + "SubTag": "ruz", + "Description": [ + "Ruma" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ruz" + }, + { + "Type": 1, + "SubTag": "rwa", + "Description": [ + "Rawo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rwa" + }, + { + "Type": 1, + "SubTag": "rwk", + "Description": [ + "Rwa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rwk" + }, + { + "Type": 1, + "SubTag": "rwl", + "Description": [ + "Ruwila" + ], + "Added": "2021-02-20", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rwl" + }, + { + "Type": 1, + "SubTag": "rwm", + "Description": [ + "Amba (Uganda)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rwm" + }, + { + "Type": 1, + "SubTag": "rwo", + "Description": [ + "Rawa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rwo" + }, + { + "Type": 1, + "SubTag": "rwr", + "Description": [ + "Marwari (India)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "mwr", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rwr" + }, + { + "Type": 1, + "SubTag": "rxd", + "Description": [ + "Ngardi" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rxd" + }, + { + "Type": 1, + "SubTag": "rxw", + "Description": [ + "Karuwali", + "Garuwali" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rxw" + }, + { + "Type": 1, + "SubTag": "ryn", + "Description": [ + "Northern Amami-Oshima" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ryn" + }, + { + "Type": 1, + "SubTag": "rys", + "Description": [ + "Yaeyama" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rys" + }, + { + "Type": 1, + "SubTag": "ryu", + "Description": [ + "Central Okinawan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ryu" + }, + { + "Type": 1, + "SubTag": "rzh", + "Description": [ + "R\u0101zi\u1E25\u012B" + ], + "Added": "2016-05-30", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "rzh" + }, + { + "Type": 1, + "SubTag": "saa", + "Description": [ + "Saba" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "saa" + }, + { + "Type": 1, + "SubTag": "sab", + "Description": [ + "Buglere" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sab" + }, + { + "Type": 1, + "SubTag": "sac", + "Description": [ + "Meskwaki" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sac" + }, + { + "Type": 1, + "SubTag": "sad", + "Description": [ + "Sandawe" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sad" + }, + { + "Type": 1, + "SubTag": "sae", + "Description": [ + "Saban\u00EA" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sae" + }, + { + "Type": 1, + "SubTag": "saf", + "Description": [ + "Safaliba" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "saf" + }, + { + "Type": 1, + "SubTag": "sah", + "Description": [ + "Yakut" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sah" + }, + { + "Type": 1, + "SubTag": "sai", + "Description": [ + "South American Indian languages" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sai" + }, + { + "Type": 1, + "SubTag": "saj", + "Description": [ + "Sahu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "saj" + }, + { + "Type": 1, + "SubTag": "sak", + "Description": [ + "Sake" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sak" + }, + { + "Type": 1, + "SubTag": "sal", + "Description": [ + "Salishan languages" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sal" + }, + { + "Type": 1, + "SubTag": "sam", + "Description": [ + "Samaritan Aramaic" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sam" + }, + { + "Type": 1, + "SubTag": "sao", + "Description": [ + "Sause" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sao" + }, + { + "Type": 1, + "SubTag": "sap", + "Description": [ + "Sanapan\u00E1" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2014-02-28", + "Comments": [ + "see aqt, spn" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sap" + }, + { + "Type": 1, + "SubTag": "saq", + "Description": [ + "Samburu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "saq" + }, + { + "Type": 1, + "SubTag": "sar", + "Description": [ + "Saraveca" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sar" + }, + { + "Type": 1, + "SubTag": "sas", + "Description": [ + "Sasak" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sas" + }, + { + "Type": 1, + "SubTag": "sat", + "Description": [ + "Santali" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sat" + }, + { + "Type": 1, + "SubTag": "sau", + "Description": [ + "Saleman" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sau" + }, + { + "Type": 1, + "SubTag": "sav", + "Description": [ + "Saafi-Saafi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sav" + }, + { + "Type": 1, + "SubTag": "saw", + "Description": [ + "Sawi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "saw" + }, + { + "Type": 1, + "SubTag": "sax", + "Description": [ + "Sa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sax" + }, + { + "Type": 1, + "SubTag": "say", + "Description": [ + "Saya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "say" + }, + { + "Type": 1, + "SubTag": "saz", + "Description": [ + "Saurashtra" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "saz" + }, + { + "Type": 1, + "SubTag": "sba", + "Description": [ + "Ngambay" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sba" + }, + { + "Type": 1, + "SubTag": "sbb", + "Description": [ + "Simbo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sbb" + }, + { + "Type": 1, + "SubTag": "sbc", + "Description": [ + "Kele (Papua New Guinea)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sbc" + }, + { + "Type": 1, + "SubTag": "sbd", + "Description": [ + "Southern Samo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sbd" + }, + { + "Type": 1, + "SubTag": "sbe", + "Description": [ + "Saliba" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sbe" + }, + { + "Type": 1, + "SubTag": "sbf", + "Description": [ + "Chabu", + "Shabo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sbf" + }, + { + "Type": 1, + "SubTag": "sbg", + "Description": [ + "Seget" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sbg" + }, + { + "Type": 1, + "SubTag": "sbh", + "Description": [ + "Sori-Harengan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sbh" + }, + { + "Type": 1, + "SubTag": "sbi", + "Description": [ + "Seti" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sbi" + }, + { + "Type": 1, + "SubTag": "sbj", + "Description": [ + "Surbakhal" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sbj" + }, + { + "Type": 1, + "SubTag": "sbk", + "Description": [ + "Safwa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sbk" + }, + { + "Type": 1, + "SubTag": "sbl", + "Description": [ + "Botolan Sambal" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sbl" + }, + { + "Type": 1, + "SubTag": "sbm", + "Description": [ + "Sagala" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sbm" + }, + { + "Type": 1, + "SubTag": "sbn", + "Description": [ + "Sindhi Bhil" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sbn" + }, + { + "Type": 1, + "SubTag": "sbo", + "Description": [ + "Sab\u00FCm" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sbo" + }, + { + "Type": 1, + "SubTag": "sbp", + "Description": [ + "Sangu (Tanzania)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sbp" + }, + { + "Type": 1, + "SubTag": "sbq", + "Description": [ + "Sileibi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sbq" + }, + { + "Type": 1, + "SubTag": "sbr", + "Description": [ + "Sembakung Murut" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sbr" + }, + { + "Type": 1, + "SubTag": "sbs", + "Description": [ + "Subiya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sbs" + }, + { + "Type": 1, + "SubTag": "sbt", + "Description": [ + "Kimki" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sbt" + }, + { + "Type": 1, + "SubTag": "sbu", + "Description": [ + "Stod Bhoti" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sbu" + }, + { + "Type": 1, + "SubTag": "sbv", + "Description": [ + "Sabine" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sbv" + }, + { + "Type": 1, + "SubTag": "sbw", + "Description": [ + "Simba" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sbw" + }, + { + "Type": 1, + "SubTag": "sbx", + "Description": [ + "Seberuang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sbx" + }, + { + "Type": 1, + "SubTag": "sby", + "Description": [ + "Soli" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sby" + }, + { + "Type": 1, + "SubTag": "sbz", + "Description": [ + "Sara Kaba" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sbz" + }, + { + "Type": 1, + "SubTag": "sca", + "Description": [ + "Sansu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2012-08-12", + "Comments": [], + "Prefix": [], + "PreferredValue": "hle", + "Tag": "", + "TagAny": "sca" + }, + { + "Type": 1, + "SubTag": "scb", + "Description": [ + "Chut" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "scb" + }, + { + "Type": 1, + "SubTag": "sce", + "Description": [ + "Dongxiang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sce" + }, + { + "Type": 1, + "SubTag": "scf", + "Description": [ + "San Miguel Creole French" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "scf" + }, + { + "Type": 1, + "SubTag": "scg", + "Description": [ + "Sanggau" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "scg" + }, + { + "Type": 1, + "SubTag": "sch", + "Description": [ + "Sakachep" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sch" + }, + { + "Type": 1, + "SubTag": "sci", + "Description": [ + "Sri Lankan Creole Malay" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sci" + }, + { + "Type": 1, + "SubTag": "sck", + "Description": [ + "Sadri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sck" + }, + { + "Type": 1, + "SubTag": "scl", + "Description": [ + "Shina" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "scl" + }, + { + "Type": 1, + "SubTag": "scn", + "Description": [ + "Sicilian" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "scn" + }, + { + "Type": 1, + "SubTag": "sco", + "Description": [ + "Scots" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sco" + }, + { + "Type": 1, + "SubTag": "scp", + "Description": [ + "Hyolmo", + "Helambu Sherpa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "scp" + }, + { + "Type": 1, + "SubTag": "scq", + "Description": [ + "Sa\u0027och" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "scq" + }, + { + "Type": 1, + "SubTag": "scs", + "Description": [ + "North Slavey" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "den", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "scs" + }, + { + "Type": 1, + "SubTag": "sct", + "Description": [ + "Southern Katang" + ], + "Added": "2017-02-23", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sct" + }, + { + "Type": 1, + "SubTag": "scu", + "Description": [ + "Shumcho" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "scu" + }, + { + "Type": 1, + "SubTag": "scv", + "Description": [ + "Sheni" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "scv" + }, + { + "Type": 1, + "SubTag": "scw", + "Description": [ + "Sha" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "scw" + }, + { + "Type": 1, + "SubTag": "scx", + "Description": [ + "Sicel" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "scx" + }, + { + "Type": 1, + "SubTag": "sda", + "Description": [ + "Toraja-Sa\u0027dan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sda" + }, + { + "Type": 1, + "SubTag": "sdb", + "Description": [ + "Shabak" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sdb" + }, + { + "Type": 1, + "SubTag": "sdc", + "Description": [ + "Sassarese Sardinian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "sc", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sdc" + }, + { + "Type": 1, + "SubTag": "sde", + "Description": [ + "Surubu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sde" + }, + { + "Type": 1, + "SubTag": "sdf", + "Description": [ + "Sarli" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sdf" + }, + { + "Type": 1, + "SubTag": "sdg", + "Description": [ + "Savi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sdg" + }, + { + "Type": 1, + "SubTag": "sdh", + "Description": [ + "Southern Kurdish" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ku", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sdh" + }, + { + "Type": 1, + "SubTag": "sdj", + "Description": [ + "Suundi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sdj" + }, + { + "Type": 1, + "SubTag": "sdk", + "Description": [ + "Sos Kundi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sdk" + }, + { + "Type": 1, + "SubTag": "sdl", + "Description": [ + "Saudi Arabian Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sdl" + }, + { + "Type": 1, + "SubTag": "sdm", + "Description": [ + "Semandang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2020-03-28", + "Comments": [ + "see ebc, gef, sdq" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sdm" + }, + { + "Type": 1, + "SubTag": "sdn", + "Description": [ + "Gallurese Sardinian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "sc", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sdn" + }, + { + "Type": 1, + "SubTag": "sdo", + "Description": [ + "Bukar-Sadung Bidayuh" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sdo" + }, + { + "Type": 1, + "SubTag": "sdp", + "Description": [ + "Sherdukpen" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sdp" + }, + { + "Type": 1, + "SubTag": "sdq", + "Description": [ + "Semandang" + ], + "Added": "2020-03-28", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sdq" + }, + { + "Type": 1, + "SubTag": "sdr", + "Description": [ + "Oraon Sadri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sdr" + }, + { + "Type": 1, + "SubTag": "sds", + "Description": [ + "Sened" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sds" + }, + { + "Type": 1, + "SubTag": "sdt", + "Description": [ + "Shuadit" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sdt" + }, + { + "Type": 1, + "SubTag": "sdu", + "Description": [ + "Sarudu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sdu" + }, + { + "Type": 1, + "SubTag": "sdv", + "Description": [ + "Eastern Sudanic languages" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sdv" + }, + { + "Type": 1, + "SubTag": "sdx", + "Description": [ + "Sibu Melanau" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sdx" + }, + { + "Type": 1, + "SubTag": "sdz", + "Description": [ + "Sallands" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sdz" + }, + { + "Type": 1, + "SubTag": "sea", + "Description": [ + "Semai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sea" + }, + { + "Type": 1, + "SubTag": "seb", + "Description": [ + "Shempire Senoufo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "seb" + }, + { + "Type": 1, + "SubTag": "sec", + "Description": [ + "Sechelt" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sec" + }, + { + "Type": 1, + "SubTag": "sed", + "Description": [ + "Sedang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sed" + }, + { + "Type": 1, + "SubTag": "see", + "Description": [ + "Seneca" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "see" + }, + { + "Type": 1, + "SubTag": "sef", + "Description": [ + "Cebaara Senoufo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sef" + }, + { + "Type": 1, + "SubTag": "seg", + "Description": [ + "Segeju" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "seg" + }, + { + "Type": 1, + "SubTag": "seh", + "Description": [ + "Sena" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "seh" + }, + { + "Type": 1, + "SubTag": "sei", + "Description": [ + "Seri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sei" + }, + { + "Type": 1, + "SubTag": "sej", + "Description": [ + "Sene" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sej" + }, + { + "Type": 1, + "SubTag": "sek", + "Description": [ + "Sekani" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sek" + }, + { + "Type": 1, + "SubTag": "sel", + "Description": [ + "Selkup" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sel" + }, + { + "Type": 1, + "SubTag": "sem", + "Description": [ + "Semitic languages" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sem" + }, + { + "Type": 1, + "SubTag": "sen", + "Description": [ + "Nanerig\u00E9 S\u00E9noufo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sen" + }, + { + "Type": 1, + "SubTag": "seo", + "Description": [ + "Suarmin" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "seo" + }, + { + "Type": 1, + "SubTag": "sep", + "Description": [ + "S\u00ECc\u00ECt\u00E9 S\u00E9noufo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sep" + }, + { + "Type": 1, + "SubTag": "seq", + "Description": [ + "Senara S\u00E9noufo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "seq" + }, + { + "Type": 1, + "SubTag": "ser", + "Description": [ + "Serrano" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ser" + }, + { + "Type": 1, + "SubTag": "ses", + "Description": [ + "Koyraboro Senni Songhai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ses" + }, + { + "Type": 1, + "SubTag": "set", + "Description": [ + "Sentani" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "set" + }, + { + "Type": 1, + "SubTag": "seu", + "Description": [ + "Serui-Laut" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "seu" + }, + { + "Type": 1, + "SubTag": "sev", + "Description": [ + "Nyarafolo Senoufo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sev" + }, + { + "Type": 1, + "SubTag": "sew", + "Description": [ + "Sewa Bay" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sew" + }, + { + "Type": 1, + "SubTag": "sey", + "Description": [ + "Secoya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sey" + }, + { + "Type": 1, + "SubTag": "sez", + "Description": [ + "Senthang Chin" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sez" + }, + { + "Type": 1, + "SubTag": "sfb", + "Description": [ + "Langue des signes de Belgique Francophone", + "French Belgian Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sfb" + }, + { + "Type": 1, + "SubTag": "sfe", + "Description": [ + "Eastern Subanen" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sfe" + }, + { + "Type": 1, + "SubTag": "sfm", + "Description": [ + "Small Flowery Miao" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "hmn", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sfm" + }, + { + "Type": 1, + "SubTag": "sfs", + "Description": [ + "South African Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sfs" + }, + { + "Type": 1, + "SubTag": "sfw", + "Description": [ + "Sehwi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sfw" + }, + { + "Type": 1, + "SubTag": "sga", + "Description": [ + "Old Irish (to 900)" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sga" + }, + { + "Type": 1, + "SubTag": "sgb", + "Description": [ + "Mag-antsi Ayta" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sgb" + }, + { + "Type": 1, + "SubTag": "sgc", + "Description": [ + "Kipsigis" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "kln", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sgc" + }, + { + "Type": 1, + "SubTag": "sgd", + "Description": [ + "Surigaonon" + ], + "Added": "2010-03-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sgd" + }, + { + "Type": 1, + "SubTag": "sge", + "Description": [ + "Segai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sge" + }, + { + "Type": 1, + "SubTag": "sgg", + "Description": [ + "Swiss-German Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sgg" + }, + { + "Type": 1, + "SubTag": "sgh", + "Description": [ + "Shughni" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sgh" + }, + { + "Type": 1, + "SubTag": "sgi", + "Description": [ + "Suga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sgi" + }, + { + "Type": 1, + "SubTag": "sgj", + "Description": [ + "Surgujia" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sgj" + }, + { + "Type": 1, + "SubTag": "sgk", + "Description": [ + "Sangkong" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sgk" + }, + { + "Type": 1, + "SubTag": "sgl", + "Description": [ + "Sanglechi-Ishkashimi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2010-03-11", + "Comments": [ + "see isk, sgy" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sgl" + }, + { + "Type": 1, + "SubTag": "sgm", + "Description": [ + "Singa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sgm" + }, + { + "Type": 1, + "SubTag": "sgn", + "Description": [ + "Sign languages" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sgn" + }, + { + "Type": 1, + "SubTag": "sgo", + "Description": [ + "Songa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2015-02-12", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sgo" + }, + { + "Type": 1, + "SubTag": "sgp", + "Description": [ + "Singpho" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sgp" + }, + { + "Type": 1, + "SubTag": "sgr", + "Description": [ + "Sangisari" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sgr" + }, + { + "Type": 1, + "SubTag": "sgs", + "Description": [ + "Samogitian" + ], + "Added": "2010-07-26", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sgs" + }, + { + "Type": 1, + "SubTag": "sgt", + "Description": [ + "Brokpake" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sgt" + }, + { + "Type": 1, + "SubTag": "sgu", + "Description": [ + "Salas" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sgu" + }, + { + "Type": 1, + "SubTag": "sgw", + "Description": [ + "Sebat Bet Gurage" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sgw" + }, + { + "Type": 1, + "SubTag": "sgx", + "Description": [ + "Sierra Leone Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sgx" + }, + { + "Type": 1, + "SubTag": "sgy", + "Description": [ + "Sanglechi" + ], + "Added": "2010-03-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sgy" + }, + { + "Type": 1, + "SubTag": "sgz", + "Description": [ + "Sursurunga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sgz" + }, + { + "Type": 1, + "SubTag": "sha", + "Description": [ + "Shall-Zwall" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sha" + }, + { + "Type": 1, + "SubTag": "shb", + "Description": [ + "Ninam" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "shb" + }, + { + "Type": 1, + "SubTag": "shc", + "Description": [ + "Sonde" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "shc" + }, + { + "Type": 1, + "SubTag": "shd", + "Description": [ + "Kundal Shahi" + ], + "Added": "2010-03-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "shd" + }, + { + "Type": 1, + "SubTag": "she", + "Description": [ + "Sheko" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "she" + }, + { + "Type": 1, + "SubTag": "shg", + "Description": [ + "Shua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "shg" + }, + { + "Type": 1, + "SubTag": "shh", + "Description": [ + "Shoshoni" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "shh" + }, + { + "Type": 1, + "SubTag": "shi", + "Description": [ + "Tachelhit" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "shi" + }, + { + "Type": 1, + "SubTag": "shj", + "Description": [ + "Shatt" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "shj" + }, + { + "Type": 1, + "SubTag": "shk", + "Description": [ + "Shilluk" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "shk" + }, + { + "Type": 1, + "SubTag": "shl", + "Description": [ + "Shendu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "shl" + }, + { + "Type": 1, + "SubTag": "shm", + "Description": [ + "Shahrudi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "shm" + }, + { + "Type": 1, + "SubTag": "shn", + "Description": [ + "Shan" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "shn" + }, + { + "Type": 1, + "SubTag": "sho", + "Description": [ + "Shanga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sho" + }, + { + "Type": 1, + "SubTag": "shp", + "Description": [ + "Shipibo-Conibo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "shp" + }, + { + "Type": 1, + "SubTag": "shq", + "Description": [ + "Sala" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "shq" + }, + { + "Type": 1, + "SubTag": "shr", + "Description": [ + "Shi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "shr" + }, + { + "Type": 1, + "SubTag": "shs", + "Description": [ + "Shuswap" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "shs" + }, + { + "Type": 1, + "SubTag": "sht", + "Description": [ + "Shasta" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sht" + }, + { + "Type": 1, + "SubTag": "shu", + "Description": [ + "Chadian Arabic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ar", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "shu" + }, + { + "Type": 1, + "SubTag": "shv", + "Description": [ + "Shehri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "shv" + }, + { + "Type": 1, + "SubTag": "shw", + "Description": [ + "Shwai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "shw" + }, + { + "Type": 1, + "SubTag": "shx", + "Description": [ + "She" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "shx" + }, + { + "Type": 1, + "SubTag": "shy", + "Description": [ + "Tachawit" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "shy" + }, + { + "Type": 1, + "SubTag": "shz", + "Description": [ + "Syenara Senoufo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "shz" + }, + { + "Type": 1, + "SubTag": "sia", + "Description": [ + "Akkala Sami" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sia" + }, + { + "Type": 1, + "SubTag": "sib", + "Description": [ + "Sebop" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sib" + }, + { + "Type": 1, + "SubTag": "sid", + "Description": [ + "Sidamo" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sid" + }, + { + "Type": 1, + "SubTag": "sie", + "Description": [ + "Simaa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sie" + }, + { + "Type": 1, + "SubTag": "sif", + "Description": [ + "Siamou" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sif" + }, + { + "Type": 1, + "SubTag": "sig", + "Description": [ + "Paasaal" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sig" + }, + { + "Type": 1, + "SubTag": "sih", + "Description": [ + "Zire", + "S\u00EEsh\u00EB\u00EB" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sih" + }, + { + "Type": 1, + "SubTag": "sii", + "Description": [ + "Shom Peng" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sii" + }, + { + "Type": 1, + "SubTag": "sij", + "Description": [ + "Numbami" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sij" + }, + { + "Type": 1, + "SubTag": "sik", + "Description": [ + "Sikiana" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sik" + }, + { + "Type": 1, + "SubTag": "sil", + "Description": [ + "Tumulung Sisaala" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sil" + }, + { + "Type": 1, + "SubTag": "sim", + "Description": [ + "Mende (Papua New Guinea)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sim" + }, + { + "Type": 1, + "SubTag": "sio", + "Description": [ + "Siouan languages" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sio" + }, + { + "Type": 1, + "SubTag": "sip", + "Description": [ + "Sikkimese" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sip" + }, + { + "Type": 1, + "SubTag": "siq", + "Description": [ + "Sonia" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "siq" + }, + { + "Type": 1, + "SubTag": "sir", + "Description": [ + "Siri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sir" + }, + { + "Type": 1, + "SubTag": "sis", + "Description": [ + "Siuslaw" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sis" + }, + { + "Type": 1, + "SubTag": "sit", + "Description": [ + "Sino-Tibetan languages" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sit" + }, + { + "Type": 1, + "SubTag": "siu", + "Description": [ + "Sinagen" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "siu" + }, + { + "Type": 1, + "SubTag": "siv", + "Description": [ + "Sumariup" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "siv" + }, + { + "Type": 1, + "SubTag": "siw", + "Description": [ + "Siwai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "siw" + }, + { + "Type": 1, + "SubTag": "six", + "Description": [ + "Sumau" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "six" + }, + { + "Type": 1, + "SubTag": "siy", + "Description": [ + "Sivandi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "siy" + }, + { + "Type": 1, + "SubTag": "siz", + "Description": [ + "Siwi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "siz" + }, + { + "Type": 1, + "SubTag": "sja", + "Description": [ + "Epena" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sja" + }, + { + "Type": 1, + "SubTag": "sjb", + "Description": [ + "Sajau Basap" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sjb" + }, + { + "Type": 1, + "SubTag": "sjc", + "Description": [ + "Shaojiang Chinese" + ], + "Added": "2024-12-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zh", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sjc" + }, + { + "Type": 1, + "SubTag": "sjd", + "Description": [ + "Kildin Sami" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sjd" + }, + { + "Type": 1, + "SubTag": "sje", + "Description": [ + "Pite Sami" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sje" + }, + { + "Type": 1, + "SubTag": "sjg", + "Description": [ + "Assangori" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sjg" + }, + { + "Type": 1, + "SubTag": "sjk", + "Description": [ + "Kemi Sami" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sjk" + }, + { + "Type": 1, + "SubTag": "sjl", + "Description": [ + "Sajalong", + "Miji" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sjl" + }, + { + "Type": 1, + "SubTag": "sjm", + "Description": [ + "Mapun" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sjm" + }, + { + "Type": 1, + "SubTag": "sjn", + "Description": [ + "Sindarin" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sjn" + }, + { + "Type": 1, + "SubTag": "sjo", + "Description": [ + "Xibe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sjo" + }, + { + "Type": 1, + "SubTag": "sjp", + "Description": [ + "Surjapuri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sjp" + }, + { + "Type": 1, + "SubTag": "sjr", + "Description": [ + "Siar-Lak" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sjr" + }, + { + "Type": 1, + "SubTag": "sjs", + "Description": [ + "Senhaja De Srair" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sjs" + }, + { + "Type": 1, + "SubTag": "sjt", + "Description": [ + "Ter Sami" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sjt" + }, + { + "Type": 1, + "SubTag": "sju", + "Description": [ + "Ume Sami" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sju" + }, + { + "Type": 1, + "SubTag": "sjw", + "Description": [ + "Shawnee" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sjw" + }, + { + "Type": 1, + "SubTag": "ska", + "Description": [ + "Skagit" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ska" + }, + { + "Type": 1, + "SubTag": "skb", + "Description": [ + "Saek" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "skb" + }, + { + "Type": 1, + "SubTag": "skc", + "Description": [ + "Ma Manda" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "skc" + }, + { + "Type": 1, + "SubTag": "skd", + "Description": [ + "Southern Sierra Miwok" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "skd" + }, + { + "Type": 1, + "SubTag": "ske", + "Description": [ + "Seke (Vanuatu)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ske" + }, + { + "Type": 1, + "SubTag": "skf", + "Description": [ + "Sakirabi\u00E1" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "skf" + }, + { + "Type": 1, + "SubTag": "skg", + "Description": [ + "Sakalava Malagasy" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "mg", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "skg" + }, + { + "Type": 1, + "SubTag": "skh", + "Description": [ + "Sikule" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "skh" + }, + { + "Type": 1, + "SubTag": "ski", + "Description": [ + "Sika" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ski" + }, + { + "Type": 1, + "SubTag": "skj", + "Description": [ + "Seke (Nepal)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "skj" + }, + { + "Type": 1, + "SubTag": "skk", + "Description": [ + "Sok" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2017-02-23", + "Comments": [], + "Prefix": [], + "PreferredValue": "oyb", + "Tag": "", + "TagAny": "skk" + }, + { + "Type": 1, + "SubTag": "skm", + "Description": [ + "Kutong" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "skm" + }, + { + "Type": 1, + "SubTag": "skn", + "Description": [ + "Kolibugan Subanon" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "skn" + }, + { + "Type": 1, + "SubTag": "sko", + "Description": [ + "Seko Tengah" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sko" + }, + { + "Type": 1, + "SubTag": "skp", + "Description": [ + "Sekapan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "skp" + }, + { + "Type": 1, + "SubTag": "skq", + "Description": [ + "Sininkere" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "skq" + }, + { + "Type": 1, + "SubTag": "skr", + "Description": [ + "Saraiki", + "Seraiki" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "lah", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "skr" + }, + { + "Type": 1, + "SubTag": "sks", + "Description": [ + "Maia" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sks" + }, + { + "Type": 1, + "SubTag": "skt", + "Description": [ + "Sakata" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "skt" + }, + { + "Type": 1, + "SubTag": "sku", + "Description": [ + "Sakao" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sku" + }, + { + "Type": 1, + "SubTag": "skv", + "Description": [ + "Skou" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "skv" + }, + { + "Type": 1, + "SubTag": "skw", + "Description": [ + "Skepi Creole Dutch" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "skw" + }, + { + "Type": 1, + "SubTag": "skx", + "Description": [ + "Seko Padang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "skx" + }, + { + "Type": 1, + "SubTag": "sky", + "Description": [ + "Sikaiana" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sky" + }, + { + "Type": 1, + "SubTag": "skz", + "Description": [ + "Sekar" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "skz" + }, + { + "Type": 1, + "SubTag": "sla", + "Description": [ + "Slavic languages" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sla" + }, + { + "Type": 1, + "SubTag": "slc", + "Description": [ + "S\u00E1liba" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "slc" + }, + { + "Type": 1, + "SubTag": "sld", + "Description": [ + "Sissala" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sld" + }, + { + "Type": 1, + "SubTag": "sle", + "Description": [ + "Sholaga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sle" + }, + { + "Type": 1, + "SubTag": "slf", + "Description": [ + "Swiss-Italian Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "slf" + }, + { + "Type": 1, + "SubTag": "slg", + "Description": [ + "Selungai Murut" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "slg" + }, + { + "Type": 1, + "SubTag": "slh", + "Description": [ + "Southern Puget Sound Salish" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "slh" + }, + { + "Type": 1, + "SubTag": "sli", + "Description": [ + "Lower Silesian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sli" + }, + { + "Type": 1, + "SubTag": "slj", + "Description": [ + "Salum\u00E1" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "slj" + }, + { + "Type": 1, + "SubTag": "sll", + "Description": [ + "Salt-Yui" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sll" + }, + { + "Type": 1, + "SubTag": "slm", + "Description": [ + "Pangutaran Sama" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "slm" + }, + { + "Type": 1, + "SubTag": "sln", + "Description": [ + "Salinan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sln" + }, + { + "Type": 1, + "SubTag": "slp", + "Description": [ + "Lamaholot" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "slp" + }, + { + "Type": 1, + "SubTag": "slq", + "Description": [ + "Salchuq" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2023-03-17", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "slq" + }, + { + "Type": 1, + "SubTag": "slr", + "Description": [ + "Salar" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "slr" + }, + { + "Type": 1, + "SubTag": "sls", + "Description": [ + "Singapore Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sls" + }, + { + "Type": 1, + "SubTag": "slt", + "Description": [ + "Sila" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "slt" + }, + { + "Type": 1, + "SubTag": "slu", + "Description": [ + "Selaru" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "slu" + }, + { + "Type": 1, + "SubTag": "slw", + "Description": [ + "Sialum" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "slw" + }, + { + "Type": 1, + "SubTag": "slx", + "Description": [ + "Salampasu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "slx" + }, + { + "Type": 1, + "SubTag": "sly", + "Description": [ + "Selayar" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sly" + }, + { + "Type": 1, + "SubTag": "slz", + "Description": [ + "Ma\u0027ya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "slz" + }, + { + "Type": 1, + "SubTag": "sma", + "Description": [ + "Southern Sami" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sma" + }, + { + "Type": 1, + "SubTag": "smb", + "Description": [ + "Simbari" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "smb" + }, + { + "Type": 1, + "SubTag": "smc", + "Description": [ + "Som" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "smc" + }, + { + "Type": 1, + "SubTag": "smd", + "Description": [ + "Sama" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2022-02-25", + "Comments": [], + "Prefix": [], + "PreferredValue": "kmb", + "Tag": "", + "TagAny": "smd" + }, + { + "Type": 1, + "SubTag": "smf", + "Description": [ + "Auwe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "smf" + }, + { + "Type": 1, + "SubTag": "smg", + "Description": [ + "Simbali" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "smg" + }, + { + "Type": 1, + "SubTag": "smh", + "Description": [ + "Samei" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "smh" + }, + { + "Type": 1, + "SubTag": "smi", + "Description": [ + "Sami languages" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "smi" + }, + { + "Type": 1, + "SubTag": "smj", + "Description": [ + "Lule Sami" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "smj" + }, + { + "Type": 1, + "SubTag": "smk", + "Description": [ + "Bolinao" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "smk" + }, + { + "Type": 1, + "SubTag": "sml", + "Description": [ + "Central Sama" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sml" + }, + { + "Type": 1, + "SubTag": "smm", + "Description": [ + "Musasa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "smm" + }, + { + "Type": 1, + "SubTag": "smn", + "Description": [ + "Inari Sami" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "smn" + }, + { + "Type": 1, + "SubTag": "smp", + "Description": [ + "Samaritan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "smp" + }, + { + "Type": 1, + "SubTag": "smq", + "Description": [ + "Samo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "smq" + }, + { + "Type": 1, + "SubTag": "smr", + "Description": [ + "Simeulue" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "smr" + }, + { + "Type": 1, + "SubTag": "sms", + "Description": [ + "Skolt Sami" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sms" + }, + { + "Type": 1, + "SubTag": "smt", + "Description": [ + "Simte" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "smt" + }, + { + "Type": 1, + "SubTag": "smu", + "Description": [ + "Somray" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "smu" + }, + { + "Type": 1, + "SubTag": "smv", + "Description": [ + "Samvedi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "smv" + }, + { + "Type": 1, + "SubTag": "smw", + "Description": [ + "Sumbawa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "smw" + }, + { + "Type": 1, + "SubTag": "smx", + "Description": [ + "Samba" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "smx" + }, + { + "Type": 1, + "SubTag": "smy", + "Description": [ + "Semnani" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "smy" + }, + { + "Type": 1, + "SubTag": "smz", + "Description": [ + "Simeku" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "smz" + }, + { + "Type": 1, + "SubTag": "snb", + "Description": [ + "Sebuyau" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2022-02-25", + "Comments": [], + "Prefix": [], + "PreferredValue": "iba", + "Tag": "", + "TagAny": "snb" + }, + { + "Type": 1, + "SubTag": "snc", + "Description": [ + "Sinaugoro" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "snc" + }, + { + "Type": 1, + "SubTag": "sne", + "Description": [ + "Bau Bidayuh" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sne" + }, + { + "Type": 1, + "SubTag": "snf", + "Description": [ + "Noon" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "snf" + }, + { + "Type": 1, + "SubTag": "sng", + "Description": [ + "Sanga (Democratic Republic of Congo)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sng" + }, + { + "Type": 1, + "SubTag": "snh", + "Description": [ + "Shinabo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2017-02-23", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "snh" + }, + { + "Type": 1, + "SubTag": "sni", + "Description": [ + "Sensi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sni" + }, + { + "Type": 1, + "SubTag": "snj", + "Description": [ + "Riverain Sango" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "snj" + }, + { + "Type": 1, + "SubTag": "snk", + "Description": [ + "Soninke" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "snk" + }, + { + "Type": 1, + "SubTag": "snl", + "Description": [ + "Sangil" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "snl" + }, + { + "Type": 1, + "SubTag": "snm", + "Description": [ + "Southern Ma\u0027di" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "snm" + }, + { + "Type": 1, + "SubTag": "snn", + "Description": [ + "Siona" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "snn" + }, + { + "Type": 1, + "SubTag": "sno", + "Description": [ + "Snohomish" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sno" + }, + { + "Type": 1, + "SubTag": "snp", + "Description": [ + "Siane" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "snp" + }, + { + "Type": 1, + "SubTag": "snq", + "Description": [ + "Sangu (Gabon)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "snq" + }, + { + "Type": 1, + "SubTag": "snr", + "Description": [ + "Sihan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "snr" + }, + { + "Type": 1, + "SubTag": "sns", + "Description": [ + "South West Bay", + "Nahavaq" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sns" + }, + { + "Type": 1, + "SubTag": "snu", + "Description": [ + "Senggi", + "Viid" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "snu" + }, + { + "Type": 1, + "SubTag": "snv", + "Description": [ + "Sa\u0027ban" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "snv" + }, + { + "Type": 1, + "SubTag": "snw", + "Description": [ + "Selee" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "snw" + }, + { + "Type": 1, + "SubTag": "snx", + "Description": [ + "Sam" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "snx" + }, + { + "Type": 1, + "SubTag": "sny", + "Description": [ + "Saniyo-Hiyewe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sny" + }, + { + "Type": 1, + "SubTag": "snz", + "Description": [ + "Kou" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "snz" + }, + { + "Type": 1, + "SubTag": "soa", + "Description": [ + "Thai Song" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "soa" + }, + { + "Type": 1, + "SubTag": "sob", + "Description": [ + "Sobei" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sob" + }, + { + "Type": 1, + "SubTag": "soc", + "Description": [ + "So (Democratic Republic of Congo)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "soc" + }, + { + "Type": 1, + "SubTag": "sod", + "Description": [ + "Songoora" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sod" + }, + { + "Type": 1, + "SubTag": "soe", + "Description": [ + "Songomeno" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "soe" + }, + { + "Type": 1, + "SubTag": "sog", + "Description": [ + "Sogdian" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sog" + }, + { + "Type": 1, + "SubTag": "soh", + "Description": [ + "Aka" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "soh" + }, + { + "Type": 1, + "SubTag": "soi", + "Description": [ + "Sonha" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "soi" + }, + { + "Type": 1, + "SubTag": "soj", + "Description": [ + "Soi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "soj" + }, + { + "Type": 1, + "SubTag": "sok", + "Description": [ + "Sokoro" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sok" + }, + { + "Type": 1, + "SubTag": "sol", + "Description": [ + "Solos" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sol" + }, + { + "Type": 1, + "SubTag": "son", + "Description": [ + "Songhai languages" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "son" + }, + { + "Type": 1, + "SubTag": "soo", + "Description": [ + "Songo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "soo" + }, + { + "Type": 1, + "SubTag": "sop", + "Description": [ + "Songe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sop" + }, + { + "Type": 1, + "SubTag": "soq", + "Description": [ + "Kanasi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "soq" + }, + { + "Type": 1, + "SubTag": "sor", + "Description": [ + "Somrai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sor" + }, + { + "Type": 1, + "SubTag": "sos", + "Description": [ + "Seeku" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sos" + }, + { + "Type": 1, + "SubTag": "sou", + "Description": [ + "Southern Thai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sou" + }, + { + "Type": 1, + "SubTag": "sov", + "Description": [ + "Sonsorol" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sov" + }, + { + "Type": 1, + "SubTag": "sow", + "Description": [ + "Sowanda" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sow" + }, + { + "Type": 1, + "SubTag": "sox", + "Description": [ + "Swo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sox" + }, + { + "Type": 1, + "SubTag": "soy", + "Description": [ + "Miyobe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "soy" + }, + { + "Type": 1, + "SubTag": "soz", + "Description": [ + "Temi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "soz" + }, + { + "Type": 1, + "SubTag": "spb", + "Description": [ + "Sepa (Indonesia)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "spb" + }, + { + "Type": 1, + "SubTag": "spc", + "Description": [ + "Sap\u00E9" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "spc" + }, + { + "Type": 1, + "SubTag": "spd", + "Description": [ + "Saep" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "spd" + }, + { + "Type": 1, + "SubTag": "spe", + "Description": [ + "Sepa (Papua New Guinea)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "spe" + }, + { + "Type": 1, + "SubTag": "spg", + "Description": [ + "Sian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "spg" + }, + { + "Type": 1, + "SubTag": "spi", + "Description": [ + "Saponi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "spi" + }, + { + "Type": 1, + "SubTag": "spk", + "Description": [ + "Sengo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "spk" + }, + { + "Type": 1, + "SubTag": "spl", + "Description": [ + "Selepet" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "spl" + }, + { + "Type": 1, + "SubTag": "spm", + "Description": [ + "Akukem" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "spm" + }, + { + "Type": 1, + "SubTag": "spn", + "Description": [ + "Sanapan\u00E1" + ], + "Added": "2014-02-28", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "spn" + }, + { + "Type": 1, + "SubTag": "spo", + "Description": [ + "Spokane" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "spo" + }, + { + "Type": 1, + "SubTag": "spp", + "Description": [ + "Supyire Senoufo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "spp" + }, + { + "Type": 1, + "SubTag": "spq", + "Description": [ + "Loreto-Ucayali Spanish" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "spq" + }, + { + "Type": 1, + "SubTag": "spr", + "Description": [ + "Saparua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "spr" + }, + { + "Type": 1, + "SubTag": "sps", + "Description": [ + "Saposa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sps" + }, + { + "Type": 1, + "SubTag": "spt", + "Description": [ + "Spiti Bhoti" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "spt" + }, + { + "Type": 1, + "SubTag": "spu", + "Description": [ + "Sapuan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "spu" + }, + { + "Type": 1, + "SubTag": "spv", + "Description": [ + "Sambalpuri", + "Kosli" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "or", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "spv" + }, + { + "Type": 1, + "SubTag": "spx", + "Description": [ + "South Picene" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "spx" + }, + { + "Type": 1, + "SubTag": "spy", + "Description": [ + "Sabaot" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "kln", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "spy" + }, + { + "Type": 1, + "SubTag": "sqa", + "Description": [ + "Shama-Sambuga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sqa" + }, + { + "Type": 1, + "SubTag": "sqh", + "Description": [ + "Shau" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sqh" + }, + { + "Type": 1, + "SubTag": "sqj", + "Description": [ + "Albanian languages" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sqj" + }, + { + "Type": 1, + "SubTag": "sqk", + "Description": [ + "Albanian Sign Language" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sqk" + }, + { + "Type": 1, + "SubTag": "sqm", + "Description": [ + "Suma" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sqm" + }, + { + "Type": 1, + "SubTag": "sqn", + "Description": [ + "Susquehannock" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sqn" + }, + { + "Type": 1, + "SubTag": "sqo", + "Description": [ + "Sorkhei" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sqo" + }, + { + "Type": 1, + "SubTag": "sqq", + "Description": [ + "Sou" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sqq" + }, + { + "Type": 1, + "SubTag": "sqr", + "Description": [ + "Siculo Arabic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sqr" + }, + { + "Type": 1, + "SubTag": "sqs", + "Description": [ + "Sri Lankan Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sqs" + }, + { + "Type": 1, + "SubTag": "sqt", + "Description": [ + "Soqotri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sqt" + }, + { + "Type": 1, + "SubTag": "squ", + "Description": [ + "Squamish" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "squ" + }, + { + "Type": 1, + "SubTag": "sqx", + "Description": [ + "Kufr Qassem Sign Language (KQSL)" + ], + "Added": "2021-02-20", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sqx" + }, + { + "Type": 1, + "SubTag": "sra", + "Description": [ + "Saruga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sra" + }, + { + "Type": 1, + "SubTag": "srb", + "Description": [ + "Sora" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "srb" + }, + { + "Type": 1, + "SubTag": "src", + "Description": [ + "Logudorese Sardinian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "sc", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "src" + }, + { + "Type": 1, + "SubTag": "sre", + "Description": [ + "Sara" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sre" + }, + { + "Type": 1, + "SubTag": "srf", + "Description": [ + "Nafi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "srf" + }, + { + "Type": 1, + "SubTag": "srg", + "Description": [ + "Sulod" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "srg" + }, + { + "Type": 1, + "SubTag": "srh", + "Description": [ + "Sarikoli" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "srh" + }, + { + "Type": 1, + "SubTag": "sri", + "Description": [ + "Siriano" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sri" + }, + { + "Type": 1, + "SubTag": "srk", + "Description": [ + "Serudung Murut" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "srk" + }, + { + "Type": 1, + "SubTag": "srl", + "Description": [ + "Isirawa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "srl" + }, + { + "Type": 1, + "SubTag": "srm", + "Description": [ + "Saramaccan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "srm" + }, + { + "Type": 1, + "SubTag": "srn", + "Description": [ + "Sranan Tongo" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "srn" + }, + { + "Type": 1, + "SubTag": "sro", + "Description": [ + "Campidanese Sardinian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "sc", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sro" + }, + { + "Type": 1, + "SubTag": "srq", + "Description": [ + "Sirion\u00F3" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "srq" + }, + { + "Type": 1, + "SubTag": "srr", + "Description": [ + "Serer" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "srr" + }, + { + "Type": 1, + "SubTag": "srs", + "Description": [ + "Sarsi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "srs" + }, + { + "Type": 1, + "SubTag": "srt", + "Description": [ + "Sauri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "srt" + }, + { + "Type": 1, + "SubTag": "sru", + "Description": [ + "Suru\u00ED" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sru" + }, + { + "Type": 1, + "SubTag": "srv", + "Description": [ + "Southern Sorsoganon" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "srv" + }, + { + "Type": 1, + "SubTag": "srw", + "Description": [ + "Serua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "srw" + }, + { + "Type": 1, + "SubTag": "srx", + "Description": [ + "Sirmauri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "srx" + }, + { + "Type": 1, + "SubTag": "sry", + "Description": [ + "Sera" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sry" + }, + { + "Type": 1, + "SubTag": "srz", + "Description": [ + "Shahmirzadi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "srz" + }, + { + "Type": 1, + "SubTag": "ssa", + "Description": [ + "Nilo-Saharan languages" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ssa" + }, + { + "Type": 1, + "SubTag": "ssb", + "Description": [ + "Southern Sama" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ssb" + }, + { + "Type": 1, + "SubTag": "ssc", + "Description": [ + "Suba-Simbiti" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ssc" + }, + { + "Type": 1, + "SubTag": "ssd", + "Description": [ + "Siroi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ssd" + }, + { + "Type": 1, + "SubTag": "sse", + "Description": [ + "Balangingi", + "Bangingih Sama" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sse" + }, + { + "Type": 1, + "SubTag": "ssf", + "Description": [ + "Thao" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ssf" + }, + { + "Type": 1, + "SubTag": "ssg", + "Description": [ + "Seimat" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ssg" + }, + { + "Type": 1, + "SubTag": "ssh", + "Description": [ + "Shihhi Arabic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ar", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ssh" + }, + { + "Type": 1, + "SubTag": "ssi", + "Description": [ + "Sansi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ssi" + }, + { + "Type": 1, + "SubTag": "ssj", + "Description": [ + "Sausi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ssj" + }, + { + "Type": 1, + "SubTag": "ssk", + "Description": [ + "Sunam" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ssk" + }, + { + "Type": 1, + "SubTag": "ssl", + "Description": [ + "Western Sisaala" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ssl" + }, + { + "Type": 1, + "SubTag": "ssm", + "Description": [ + "Semnam" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ssm" + }, + { + "Type": 1, + "SubTag": "ssn", + "Description": [ + "Waata" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ssn" + }, + { + "Type": 1, + "SubTag": "sso", + "Description": [ + "Sissano" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sso" + }, + { + "Type": 1, + "SubTag": "ssp", + "Description": [ + "Spanish Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ssp" + }, + { + "Type": 1, + "SubTag": "ssq", + "Description": [ + "So\u0027a" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ssq" + }, + { + "Type": 1, + "SubTag": "ssr", + "Description": [ + "Swiss-French Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ssr" + }, + { + "Type": 1, + "SubTag": "sss", + "Description": [ + "S\u00F4" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sss" + }, + { + "Type": 1, + "SubTag": "sst", + "Description": [ + "Sinasina" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sst" + }, + { + "Type": 1, + "SubTag": "ssu", + "Description": [ + "Susuami" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ssu" + }, + { + "Type": 1, + "SubTag": "ssv", + "Description": [ + "Shark Bay" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ssv" + }, + { + "Type": 1, + "SubTag": "ssx", + "Description": [ + "Samberigi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ssx" + }, + { + "Type": 1, + "SubTag": "ssy", + "Description": [ + "Saho" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ssy" + }, + { + "Type": 1, + "SubTag": "ssz", + "Description": [ + "Sengseng" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ssz" + }, + { + "Type": 1, + "SubTag": "sta", + "Description": [ + "Settla" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sta" + }, + { + "Type": 1, + "SubTag": "stb", + "Description": [ + "Northern Subanen" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "stb" + }, + { + "Type": 1, + "SubTag": "std", + "Description": [ + "Sentinel" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "std" + }, + { + "Type": 1, + "SubTag": "ste", + "Description": [ + "Liana-Seti" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ste" + }, + { + "Type": 1, + "SubTag": "stf", + "Description": [ + "Seta" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "stf" + }, + { + "Type": 1, + "SubTag": "stg", + "Description": [ + "Trieng" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "stg" + }, + { + "Type": 1, + "SubTag": "sth", + "Description": [ + "Shelta" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sth" + }, + { + "Type": 1, + "SubTag": "sti", + "Description": [ + "Bulo Stieng" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sti" + }, + { + "Type": 1, + "SubTag": "stj", + "Description": [ + "Matya Samo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "stj" + }, + { + "Type": 1, + "SubTag": "stk", + "Description": [ + "Arammba" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "stk" + }, + { + "Type": 1, + "SubTag": "stl", + "Description": [ + "Stellingwerfs" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "stl" + }, + { + "Type": 1, + "SubTag": "stm", + "Description": [ + "Setaman" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "stm" + }, + { + "Type": 1, + "SubTag": "stn", + "Description": [ + "Owa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "stn" + }, + { + "Type": 1, + "SubTag": "sto", + "Description": [ + "Stoney" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sto" + }, + { + "Type": 1, + "SubTag": "stp", + "Description": [ + "Southeastern Tepehuan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "stp" + }, + { + "Type": 1, + "SubTag": "stq", + "Description": [ + "Saterfriesisch" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "stq" + }, + { + "Type": 1, + "SubTag": "str", + "Description": [ + "Straits Salish" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "str" + }, + { + "Type": 1, + "SubTag": "sts", + "Description": [ + "Shumashti" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sts" + }, + { + "Type": 1, + "SubTag": "stt", + "Description": [ + "Budeh Stieng" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "stt" + }, + { + "Type": 1, + "SubTag": "stu", + "Description": [ + "Samtao" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "stu" + }, + { + "Type": 1, + "SubTag": "stv", + "Description": [ + "Silt\u0027e" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "stv" + }, + { + "Type": 1, + "SubTag": "stw", + "Description": [ + "Satawalese" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "stw" + }, + { + "Type": 1, + "SubTag": "sty", + "Description": [ + "Siberian Tatar" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sty" + }, + { + "Type": 1, + "SubTag": "sua", + "Description": [ + "Sulka" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sua" + }, + { + "Type": 1, + "SubTag": "sub", + "Description": [ + "Suku" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sub" + }, + { + "Type": 1, + "SubTag": "suc", + "Description": [ + "Western Subanon" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "suc" + }, + { + "Type": 1, + "SubTag": "sue", + "Description": [ + "Suena" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sue" + }, + { + "Type": 1, + "SubTag": "sug", + "Description": [ + "Suganga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sug" + }, + { + "Type": 1, + "SubTag": "sui", + "Description": [ + "Suki" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sui" + }, + { + "Type": 1, + "SubTag": "suj", + "Description": [ + "Shubi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [ + "see also xsj" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "suj" + }, + { + "Type": 1, + "SubTag": "suk", + "Description": [ + "Sukuma" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "suk" + }, + { + "Type": 1, + "SubTag": "sul", + "Description": [ + "Surigaonon" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2010-03-11", + "Comments": [ + "see sgd, tgn" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sul" + }, + { + "Type": 1, + "SubTag": "sum", + "Description": [ + "Sumo-Mayangna" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2010-03-11", + "Comments": [ + "see ulw, yan" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sum" + }, + { + "Type": 1, + "SubTag": "suo", + "Description": [ + "Bouni" + ], + "Added": "2021-02-20", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "suo" + }, + { + "Type": 1, + "SubTag": "suq", + "Description": [ + "Tirmaga-Chai Suri", + "Suri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "suq" + }, + { + "Type": 1, + "SubTag": "sur", + "Description": [ + "Mwaghavul" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sur" + }, + { + "Type": 1, + "SubTag": "sus", + "Description": [ + "Susu" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sus" + }, + { + "Type": 1, + "SubTag": "sut", + "Description": [ + "Subtiaba" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sut" + }, + { + "Type": 1, + "SubTag": "suv", + "Description": [ + "Puroik" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "suv" + }, + { + "Type": 1, + "SubTag": "suw", + "Description": [ + "Sumbwa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "suw" + }, + { + "Type": 1, + "SubTag": "sux", + "Description": [ + "Sumerian" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sux" + }, + { + "Type": 1, + "SubTag": "suy", + "Description": [ + "Suy\u00E1" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "suy" + }, + { + "Type": 1, + "SubTag": "suz", + "Description": [ + "Sunwar" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "suz" + }, + { + "Type": 1, + "SubTag": "sva", + "Description": [ + "Svan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sva" + }, + { + "Type": 1, + "SubTag": "svb", + "Description": [ + "Ulau-Suain" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "svb" + }, + { + "Type": 1, + "SubTag": "svc", + "Description": [ + "Vincentian Creole English" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "svc" + }, + { + "Type": 1, + "SubTag": "sve", + "Description": [ + "Serili" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sve" + }, + { + "Type": 1, + "SubTag": "svk", + "Description": [ + "Slovakian Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "svk" + }, + { + "Type": 1, + "SubTag": "svm", + "Description": [ + "Slavomolisano" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "svm" + }, + { + "Type": 1, + "SubTag": "svr", + "Description": [ + "Savara" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2016-05-30", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "svr" + }, + { + "Type": 1, + "SubTag": "svs", + "Description": [ + "Savosavo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "svs" + }, + { + "Type": 1, + "SubTag": "svx", + "Description": [ + "Skalvian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "svx" + }, + { + "Type": 1, + "SubTag": "swb", + "Description": [ + "Maore Comorian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "swb" + }, + { + "Type": 1, + "SubTag": "swc", + "Description": [ + "Congo Swahili" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "sw", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "swc" + }, + { + "Type": 1, + "SubTag": "swf", + "Description": [ + "Sere" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "swf" + }, + { + "Type": 1, + "SubTag": "swg", + "Description": [ + "Swabian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "swg" + }, + { + "Type": 1, + "SubTag": "swh", + "Description": [ + "Swahili (individual language)", + "Kiswahili" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "sw", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "swh" + }, + { + "Type": 1, + "SubTag": "swi", + "Description": [ + "Sui" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "swi" + }, + { + "Type": 1, + "SubTag": "swj", + "Description": [ + "Sira" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "swj" + }, + { + "Type": 1, + "SubTag": "swk", + "Description": [ + "Malawi Sena" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "swk" + }, + { + "Type": 1, + "SubTag": "swl", + "Description": [ + "Swedish Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "swl" + }, + { + "Type": 1, + "SubTag": "swm", + "Description": [ + "Samosa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "swm" + }, + { + "Type": 1, + "SubTag": "swn", + "Description": [ + "Sawknah" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "swn" + }, + { + "Type": 1, + "SubTag": "swo", + "Description": [ + "Shanenawa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "swo" + }, + { + "Type": 1, + "SubTag": "swp", + "Description": [ + "Suau" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "swp" + }, + { + "Type": 1, + "SubTag": "swq", + "Description": [ + "Sharwa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "swq" + }, + { + "Type": 1, + "SubTag": "swr", + "Description": [ + "Saweru" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "swr" + }, + { + "Type": 1, + "SubTag": "sws", + "Description": [ + "Seluwasan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sws" + }, + { + "Type": 1, + "SubTag": "swt", + "Description": [ + "Sawila" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "swt" + }, + { + "Type": 1, + "SubTag": "swu", + "Description": [ + "Suwawa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "swu" + }, + { + "Type": 1, + "SubTag": "swv", + "Description": [ + "Shekhawati" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "mwr", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "swv" + }, + { + "Type": 1, + "SubTag": "sww", + "Description": [ + "Sowa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sww" + }, + { + "Type": 1, + "SubTag": "swx", + "Description": [ + "Suruah\u00E1" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "swx" + }, + { + "Type": 1, + "SubTag": "swy", + "Description": [ + "Sarua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "swy" + }, + { + "Type": 1, + "SubTag": "sxb", + "Description": [ + "Suba" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sxb" + }, + { + "Type": 1, + "SubTag": "sxc", + "Description": [ + "Sicanian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sxc" + }, + { + "Type": 1, + "SubTag": "sxe", + "Description": [ + "Sighu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sxe" + }, + { + "Type": 1, + "SubTag": "sxg", + "Description": [ + "Shuhi", + "Shixing" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sxg" + }, + { + "Type": 1, + "SubTag": "sxk", + "Description": [ + "Southern Kalapuya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sxk" + }, + { + "Type": 1, + "SubTag": "sxl", + "Description": [ + "Selian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sxl" + }, + { + "Type": 1, + "SubTag": "sxm", + "Description": [ + "Samre" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sxm" + }, + { + "Type": 1, + "SubTag": "sxn", + "Description": [ + "Sangir" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sxn" + }, + { + "Type": 1, + "SubTag": "sxo", + "Description": [ + "Sorothaptic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sxo" + }, + { + "Type": 1, + "SubTag": "sxr", + "Description": [ + "Saaroa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sxr" + }, + { + "Type": 1, + "SubTag": "sxs", + "Description": [ + "Sasaru" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sxs" + }, + { + "Type": 1, + "SubTag": "sxu", + "Description": [ + "Upper Saxon" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sxu" + }, + { + "Type": 1, + "SubTag": "sxw", + "Description": [ + "Saxwe Gbe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sxw" + }, + { + "Type": 1, + "SubTag": "sya", + "Description": [ + "Siang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sya" + }, + { + "Type": 1, + "SubTag": "syb", + "Description": [ + "Central Subanen" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "syb" + }, + { + "Type": 1, + "SubTag": "syc", + "Description": [ + "Classical Syriac" + ], + "Added": "2007-04-03", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "syc" + }, + { + "Type": 1, + "SubTag": "syd", + "Description": [ + "Samoyedic languages" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "syd" + }, + { + "Type": 1, + "SubTag": "syi", + "Description": [ + "Seki" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "syi" + }, + { + "Type": 1, + "SubTag": "syk", + "Description": [ + "Sukur" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "syk" + }, + { + "Type": 1, + "SubTag": "syl", + "Description": [ + "Sylheti" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "syl" + }, + { + "Type": 1, + "SubTag": "sym", + "Description": [ + "Maya Samo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sym" + }, + { + "Type": 1, + "SubTag": "syn", + "Description": [ + "Senaya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "syn" + }, + { + "Type": 1, + "SubTag": "syo", + "Description": [ + "Suoy" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "syo" + }, + { + "Type": 1, + "SubTag": "syr", + "Description": [ + "Syriac" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "macrolanguage", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "syr" + }, + { + "Type": 1, + "SubTag": "sys", + "Description": [ + "Sinyar" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sys" + }, + { + "Type": 1, + "SubTag": "syw", + "Description": [ + "Kagate" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "syw" + }, + { + "Type": 1, + "SubTag": "syx", + "Description": [ + "Samay" + ], + "Added": "2015-02-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "syx" + }, + { + "Type": 1, + "SubTag": "syy", + "Description": [ + "Al-Sayyid Bedouin Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "syy" + }, + { + "Type": 1, + "SubTag": "sza", + "Description": [ + "Semelai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sza" + }, + { + "Type": 1, + "SubTag": "szb", + "Description": [ + "Ngalum" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "szb" + }, + { + "Type": 1, + "SubTag": "szc", + "Description": [ + "Semaq Beri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "szc" + }, + { + "Type": 1, + "SubTag": "szd", + "Description": [ + "Seru" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2023-03-17", + "Comments": [], + "Prefix": [], + "PreferredValue": "umi", + "Tag": "", + "TagAny": "szd" + }, + { + "Type": 1, + "SubTag": "sze", + "Description": [ + "Seze" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "sze" + }, + { + "Type": 1, + "SubTag": "szg", + "Description": [ + "Sengele" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "szg" + }, + { + "Type": 1, + "SubTag": "szl", + "Description": [ + "Silesian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "szl" + }, + { + "Type": 1, + "SubTag": "szn", + "Description": [ + "Sula" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "szn" + }, + { + "Type": 1, + "SubTag": "szp", + "Description": [ + "Suabo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "szp" + }, + { + "Type": 1, + "SubTag": "szs", + "Description": [ + "Solomon Islands Sign Language" + ], + "Added": "2017-02-23", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "szs" + }, + { + "Type": 1, + "SubTag": "szv", + "Description": [ + "Isu (Fako Division)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "szv" + }, + { + "Type": 1, + "SubTag": "szw", + "Description": [ + "Sawai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "szw" + }, + { + "Type": 1, + "SubTag": "szy", + "Description": [ + "Sakizaya" + ], + "Added": "2019-04-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "szy" + }, + { + "Type": 1, + "SubTag": "taa", + "Description": [ + "Lower Tanana" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "taa" + }, + { + "Type": 1, + "SubTag": "tab", + "Description": [ + "Tabassaran" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tab" + }, + { + "Type": 1, + "SubTag": "tac", + "Description": [ + "Lowland Tarahumara" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tac" + }, + { + "Type": 1, + "SubTag": "tad", + "Description": [ + "Tause" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tad" + }, + { + "Type": 1, + "SubTag": "tae", + "Description": [ + "Tariana" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tae" + }, + { + "Type": 1, + "SubTag": "taf", + "Description": [ + "Tapirap\u00E9" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "taf" + }, + { + "Type": 1, + "SubTag": "tag", + "Description": [ + "Tagoi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tag" + }, + { + "Type": 1, + "SubTag": "tai", + "Description": [ + "Tai languages" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tai" + }, + { + "Type": 1, + "SubTag": "taj", + "Description": [ + "Eastern Tamang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "taj" + }, + { + "Type": 1, + "SubTag": "tak", + "Description": [ + "Tala" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tak" + }, + { + "Type": 1, + "SubTag": "tal", + "Description": [ + "Tal" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tal" + }, + { + "Type": 1, + "SubTag": "tan", + "Description": [ + "Tangale" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tan" + }, + { + "Type": 1, + "SubTag": "tao", + "Description": [ + "Yami" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tao" + }, + { + "Type": 1, + "SubTag": "tap", + "Description": [ + "Taabwa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tap" + }, + { + "Type": 1, + "SubTag": "taq", + "Description": [ + "Tamasheq" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "tmh", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "taq" + }, + { + "Type": 1, + "SubTag": "tar", + "Description": [ + "Central Tarahumara" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tar" + }, + { + "Type": 1, + "SubTag": "tas", + "Description": [ + "Tay Boi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tas" + }, + { + "Type": 1, + "SubTag": "tau", + "Description": [ + "Upper Tanana" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tau" + }, + { + "Type": 1, + "SubTag": "tav", + "Description": [ + "Tatuyo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tav" + }, + { + "Type": 1, + "SubTag": "taw", + "Description": [ + "Tai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "taw" + }, + { + "Type": 1, + "SubTag": "tax", + "Description": [ + "Tamki" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tax" + }, + { + "Type": 1, + "SubTag": "tay", + "Description": [ + "Atayal" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tay" + }, + { + "Type": 1, + "SubTag": "taz", + "Description": [ + "Tocho" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "taz" + }, + { + "Type": 1, + "SubTag": "tba", + "Description": [ + "Aikan\u00E3" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tba" + }, + { + "Type": 1, + "SubTag": "tbb", + "Description": [ + "Tapeba" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2020-03-28", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tbb" + }, + { + "Type": 1, + "SubTag": "tbc", + "Description": [ + "Takia" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tbc" + }, + { + "Type": 1, + "SubTag": "tbd", + "Description": [ + "Kaki Ae" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tbd" + }, + { + "Type": 1, + "SubTag": "tbe", + "Description": [ + "Tanimbili" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tbe" + }, + { + "Type": 1, + "SubTag": "tbf", + "Description": [ + "Mandara" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tbf" + }, + { + "Type": 1, + "SubTag": "tbg", + "Description": [ + "North Tairora" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tbg" + }, + { + "Type": 1, + "SubTag": "tbh", + "Description": [ + "Dharawal", + "Thurawal" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tbh" + }, + { + "Type": 1, + "SubTag": "tbi", + "Description": [ + "Gaam" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tbi" + }, + { + "Type": 1, + "SubTag": "tbj", + "Description": [ + "Tiang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tbj" + }, + { + "Type": 1, + "SubTag": "tbk", + "Description": [ + "Calamian Tagbanwa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tbk" + }, + { + "Type": 1, + "SubTag": "tbl", + "Description": [ + "Tboli" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tbl" + }, + { + "Type": 1, + "SubTag": "tbm", + "Description": [ + "Tagbu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tbm" + }, + { + "Type": 1, + "SubTag": "tbn", + "Description": [ + "Barro Negro Tunebo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tbn" + }, + { + "Type": 1, + "SubTag": "tbo", + "Description": [ + "Tawala" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tbo" + }, + { + "Type": 1, + "SubTag": "tbp", + "Description": [ + "Taworta", + "Diebroud" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tbp" + }, + { + "Type": 1, + "SubTag": "tbq", + "Description": [ + "Tibeto-Burman languages" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tbq" + }, + { + "Type": 1, + "SubTag": "tbr", + "Description": [ + "Tumtum" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tbr" + }, + { + "Type": 1, + "SubTag": "tbs", + "Description": [ + "Tanguat" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tbs" + }, + { + "Type": 1, + "SubTag": "tbt", + "Description": [ + "Tembo (Kitembo)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tbt" + }, + { + "Type": 1, + "SubTag": "tbu", + "Description": [ + "Tubar" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tbu" + }, + { + "Type": 1, + "SubTag": "tbv", + "Description": [ + "Tobo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tbv" + }, + { + "Type": 1, + "SubTag": "tbw", + "Description": [ + "Tagbanwa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tbw" + }, + { + "Type": 1, + "SubTag": "tbx", + "Description": [ + "Kapin" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tbx" + }, + { + "Type": 1, + "SubTag": "tby", + "Description": [ + "Tabaru" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tby" + }, + { + "Type": 1, + "SubTag": "tbz", + "Description": [ + "Ditammari" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tbz" + }, + { + "Type": 1, + "SubTag": "tca", + "Description": [ + "Ticuna" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tca" + }, + { + "Type": 1, + "SubTag": "tcb", + "Description": [ + "Tanacross" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tcb" + }, + { + "Type": 1, + "SubTag": "tcc", + "Description": [ + "Datooga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tcc" + }, + { + "Type": 1, + "SubTag": "tcd", + "Description": [ + "Tafi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tcd" + }, + { + "Type": 1, + "SubTag": "tce", + "Description": [ + "Southern Tutchone" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tce" + }, + { + "Type": 1, + "SubTag": "tcf", + "Description": [ + "Malinaltepec Me\u0027phaa", + "Malinaltepec Tlapanec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tcf" + }, + { + "Type": 1, + "SubTag": "tcg", + "Description": [ + "Tamagario" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tcg" + }, + { + "Type": 1, + "SubTag": "tch", + "Description": [ + "Turks And Caicos Creole English" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tch" + }, + { + "Type": 1, + "SubTag": "tci", + "Description": [ + "W\u00E1ra" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tci" + }, + { + "Type": 1, + "SubTag": "tck", + "Description": [ + "Tchitchege" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tck" + }, + { + "Type": 1, + "SubTag": "tcl", + "Description": [ + "Taman (Myanmar)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tcl" + }, + { + "Type": 1, + "SubTag": "tcm", + "Description": [ + "Tanahmerah" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tcm" + }, + { + "Type": 1, + "SubTag": "tcn", + "Description": [ + "Tichurong" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tcn" + }, + { + "Type": 1, + "SubTag": "tco", + "Description": [ + "Taungyo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tco" + }, + { + "Type": 1, + "SubTag": "tcp", + "Description": [ + "Tawr Chin" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tcp" + }, + { + "Type": 1, + "SubTag": "tcq", + "Description": [ + "Kaiy" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tcq" + }, + { + "Type": 1, + "SubTag": "tcs", + "Description": [ + "Torres Strait Creole", + "Yumplatok" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tcs" + }, + { + "Type": 1, + "SubTag": "tct", + "Description": [ + "T\u0027en" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tct" + }, + { + "Type": 1, + "SubTag": "tcu", + "Description": [ + "Southeastern Tarahumara" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tcu" + }, + { + "Type": 1, + "SubTag": "tcw", + "Description": [ + "Tecpatl\u00E1n Totonac" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tcw" + }, + { + "Type": 1, + "SubTag": "tcx", + "Description": [ + "Toda" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tcx" + }, + { + "Type": 1, + "SubTag": "tcy", + "Description": [ + "Tulu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tcy" + }, + { + "Type": 1, + "SubTag": "tcz", + "Description": [ + "Thado Chin" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tcz" + }, + { + "Type": 1, + "SubTag": "tda", + "Description": [ + "Tagdal" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tda" + }, + { + "Type": 1, + "SubTag": "tdb", + "Description": [ + "Panchpargania" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tdb" + }, + { + "Type": 1, + "SubTag": "tdc", + "Description": [ + "Ember\u00E1-Tad\u00F3" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tdc" + }, + { + "Type": 1, + "SubTag": "tdd", + "Description": [ + "Tai N\u00FCa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tdd" + }, + { + "Type": 1, + "SubTag": "tde", + "Description": [ + "Tiranige Diga Dogon" + ], + "Added": "2010-03-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tde" + }, + { + "Type": 1, + "SubTag": "tdf", + "Description": [ + "Talieng" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tdf" + }, + { + "Type": 1, + "SubTag": "tdg", + "Description": [ + "Western Tamang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tdg" + }, + { + "Type": 1, + "SubTag": "tdh", + "Description": [ + "Thulung" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tdh" + }, + { + "Type": 1, + "SubTag": "tdi", + "Description": [ + "Tomadino" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tdi" + }, + { + "Type": 1, + "SubTag": "tdj", + "Description": [ + "Tajio" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tdj" + }, + { + "Type": 1, + "SubTag": "tdk", + "Description": [ + "Tambas" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tdk" + }, + { + "Type": 1, + "SubTag": "tdl", + "Description": [ + "Sur" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tdl" + }, + { + "Type": 1, + "SubTag": "tdm", + "Description": [ + "Taruma" + ], + "Added": "2016-05-30", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tdm" + }, + { + "Type": 1, + "SubTag": "tdn", + "Description": [ + "Tondano" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tdn" + }, + { + "Type": 1, + "SubTag": "tdo", + "Description": [ + "Teme" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tdo" + }, + { + "Type": 1, + "SubTag": "tdq", + "Description": [ + "Tita" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tdq" + }, + { + "Type": 1, + "SubTag": "tdr", + "Description": [ + "Todrah" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tdr" + }, + { + "Type": 1, + "SubTag": "tds", + "Description": [ + "Doutai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tds" + }, + { + "Type": 1, + "SubTag": "tdt", + "Description": [ + "Tetun Dili" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tdt" + }, + { + "Type": 1, + "SubTag": "tdu", + "Description": [ + "Tempasuk Dusun" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2016-05-30", + "Comments": [], + "Prefix": [], + "PreferredValue": "dtp", + "Tag": "", + "TagAny": "tdu" + }, + { + "Type": 1, + "SubTag": "tdv", + "Description": [ + "Toro" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tdv" + }, + { + "Type": 1, + "SubTag": "tdx", + "Description": [ + "Tandroy-Mahafaly Malagasy" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "mg", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tdx" + }, + { + "Type": 1, + "SubTag": "tdy", + "Description": [ + "Tadyawan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tdy" + }, + { + "Type": 1, + "SubTag": "tea", + "Description": [ + "Temiar" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tea" + }, + { + "Type": 1, + "SubTag": "teb", + "Description": [ + "Tetete" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "teb" + }, + { + "Type": 1, + "SubTag": "tec", + "Description": [ + "Terik" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "kln", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tec" + }, + { + "Type": 1, + "SubTag": "ted", + "Description": [ + "Tepo Krumen" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ted" + }, + { + "Type": 1, + "SubTag": "tee", + "Description": [ + "Huehuetla Tepehua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tee" + }, + { + "Type": 1, + "SubTag": "tef", + "Description": [ + "Teressa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tef" + }, + { + "Type": 1, + "SubTag": "teg", + "Description": [ + "Teke-Tege" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "teg" + }, + { + "Type": 1, + "SubTag": "teh", + "Description": [ + "Tehuelche" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "teh" + }, + { + "Type": 1, + "SubTag": "tei", + "Description": [ + "Torricelli" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tei" + }, + { + "Type": 1, + "SubTag": "tek", + "Description": [ + "Ibali Teke" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tek" + }, + { + "Type": 1, + "SubTag": "tem", + "Description": [ + "Timne" + ], + "Added": "2005-10-16", + "SuppressScript": "Latn", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tem" + }, + { + "Type": 1, + "SubTag": "ten", + "Description": [ + "Tama (Colombia)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ten" + }, + { + "Type": 1, + "SubTag": "teo", + "Description": [ + "Teso" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "teo" + }, + { + "Type": 1, + "SubTag": "tep", + "Description": [ + "Tepecano" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tep" + }, + { + "Type": 1, + "SubTag": "teq", + "Description": [ + "Temein" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "teq" + }, + { + "Type": 1, + "SubTag": "ter", + "Description": [ + "Tereno" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ter" + }, + { + "Type": 1, + "SubTag": "tes", + "Description": [ + "Tengger" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tes" + }, + { + "Type": 1, + "SubTag": "tet", + "Description": [ + "Tetum" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tet" + }, + { + "Type": 1, + "SubTag": "teu", + "Description": [ + "Soo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "teu" + }, + { + "Type": 1, + "SubTag": "tev", + "Description": [ + "Teor" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tev" + }, + { + "Type": 1, + "SubTag": "tew", + "Description": [ + "Tewa (USA)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tew" + }, + { + "Type": 1, + "SubTag": "tex", + "Description": [ + "Tennet" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tex" + }, + { + "Type": 1, + "SubTag": "tey", + "Description": [ + "Tulishi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tey" + }, + { + "Type": 1, + "SubTag": "tez", + "Description": [ + "Tetserret" + ], + "Added": "2018-03-08", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tez" + }, + { + "Type": 1, + "SubTag": "tfi", + "Description": [ + "Tofin Gbe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tfi" + }, + { + "Type": 1, + "SubTag": "tfn", + "Description": [ + "Tanaina" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tfn" + }, + { + "Type": 1, + "SubTag": "tfo", + "Description": [ + "Tefaro" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tfo" + }, + { + "Type": 1, + "SubTag": "tfr", + "Description": [ + "Teribe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tfr" + }, + { + "Type": 1, + "SubTag": "tft", + "Description": [ + "Ternate" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tft" + }, + { + "Type": 1, + "SubTag": "tga", + "Description": [ + "Sagalla" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tga" + }, + { + "Type": 1, + "SubTag": "tgb", + "Description": [ + "Tobilung" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tgb" + }, + { + "Type": 1, + "SubTag": "tgc", + "Description": [ + "Tigak" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tgc" + }, + { + "Type": 1, + "SubTag": "tgd", + "Description": [ + "Ciwogai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tgd" + }, + { + "Type": 1, + "SubTag": "tge", + "Description": [ + "Eastern Gorkha Tamang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tge" + }, + { + "Type": 1, + "SubTag": "tgf", + "Description": [ + "Chalikha" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tgf" + }, + { + "Type": 1, + "SubTag": "tgg", + "Description": [ + "Tangga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2013-09-10", + "Comments": [ + "see bjp, hrc, hrw" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tgg" + }, + { + "Type": 1, + "SubTag": "tgh", + "Description": [ + "Tobagonian Creole English" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tgh" + }, + { + "Type": 1, + "SubTag": "tgi", + "Description": [ + "Lawunuia" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tgi" + }, + { + "Type": 1, + "SubTag": "tgj", + "Description": [ + "Tagin" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tgj" + }, + { + "Type": 1, + "SubTag": "tgn", + "Description": [ + "Tandaganon" + ], + "Added": "2010-03-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tgn" + }, + { + "Type": 1, + "SubTag": "tgo", + "Description": [ + "Sudest" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tgo" + }, + { + "Type": 1, + "SubTag": "tgp", + "Description": [ + "Tangoa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tgp" + }, + { + "Type": 1, + "SubTag": "tgq", + "Description": [ + "Tring" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tgq" + }, + { + "Type": 1, + "SubTag": "tgr", + "Description": [ + "Tareng" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tgr" + }, + { + "Type": 1, + "SubTag": "tgs", + "Description": [ + "Nume" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tgs" + }, + { + "Type": 1, + "SubTag": "tgt", + "Description": [ + "Central Tagbanwa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tgt" + }, + { + "Type": 1, + "SubTag": "tgu", + "Description": [ + "Tanggu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tgu" + }, + { + "Type": 1, + "SubTag": "tgv", + "Description": [ + "Tingui-Boto" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tgv" + }, + { + "Type": 1, + "SubTag": "tgw", + "Description": [ + "Tagwana Senoufo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tgw" + }, + { + "Type": 1, + "SubTag": "tgx", + "Description": [ + "Tagish" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tgx" + }, + { + "Type": 1, + "SubTag": "tgy", + "Description": [ + "Togoyo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tgy" + }, + { + "Type": 1, + "SubTag": "tgz", + "Description": [ + "Tagalaka" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tgz" + }, + { + "Type": 1, + "SubTag": "thc", + "Description": [ + "Tai Hang Tong" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2016-05-30", + "Comments": [], + "Prefix": [], + "PreferredValue": "tpo", + "Tag": "", + "TagAny": "thc" + }, + { + "Type": 1, + "SubTag": "thd", + "Description": [ + "Kuuk Thaayorre", + "Thayore" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "thd" + }, + { + "Type": 1, + "SubTag": "the", + "Description": [ + "Chitwania Tharu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "the" + }, + { + "Type": 1, + "SubTag": "thf", + "Description": [ + "Thangmi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "thf" + }, + { + "Type": 1, + "SubTag": "thh", + "Description": [ + "Northern Tarahumara" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "thh" + }, + { + "Type": 1, + "SubTag": "thi", + "Description": [ + "Tai Long" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "thi" + }, + { + "Type": 1, + "SubTag": "thk", + "Description": [ + "Tharaka", + "Kitharaka" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "thk" + }, + { + "Type": 1, + "SubTag": "thl", + "Description": [ + "Dangaura Tharu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "thl" + }, + { + "Type": 1, + "SubTag": "thm", + "Description": [ + "Aheu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "thm" + }, + { + "Type": 1, + "SubTag": "thn", + "Description": [ + "Thachanadan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "thn" + }, + { + "Type": 1, + "SubTag": "thp", + "Description": [ + "Thompson" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "thp" + }, + { + "Type": 1, + "SubTag": "thq", + "Description": [ + "Kochila Tharu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "thq" + }, + { + "Type": 1, + "SubTag": "thr", + "Description": [ + "Rana Tharu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "thr" + }, + { + "Type": 1, + "SubTag": "ths", + "Description": [ + "Thakali" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ths" + }, + { + "Type": 1, + "SubTag": "tht", + "Description": [ + "Tahltan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tht" + }, + { + "Type": 1, + "SubTag": "thu", + "Description": [ + "Thuri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "thu" + }, + { + "Type": 1, + "SubTag": "thv", + "Description": [ + "Tahaggart Tamahaq" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "tmh", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "thv" + }, + { + "Type": 1, + "SubTag": "thw", + "Description": [ + "Thudam" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2020-06-08", + "Comments": [], + "Prefix": [], + "PreferredValue": "ola", + "Tag": "", + "TagAny": "thw" + }, + { + "Type": 1, + "SubTag": "thx", + "Description": [ + "The" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2015-02-12", + "Comments": [], + "Prefix": [], + "PreferredValue": "oyb", + "Tag": "", + "TagAny": "thx" + }, + { + "Type": 1, + "SubTag": "thy", + "Description": [ + "Tha" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "thy" + }, + { + "Type": 1, + "SubTag": "thz", + "Description": [ + "Tayart Tamajeq" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "tmh", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "thz" + }, + { + "Type": 1, + "SubTag": "tia", + "Description": [ + "Tidikelt Tamazight" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tia" + }, + { + "Type": 1, + "SubTag": "tic", + "Description": [ + "Tira" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tic" + }, + { + "Type": 1, + "SubTag": "tid", + "Description": [ + "Tidong" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2016-05-30", + "Comments": [ + "see itd, ntd" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tid" + }, + { + "Type": 1, + "SubTag": "tie", + "Description": [ + "Tingal" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2011-08-16", + "Comments": [], + "Prefix": [], + "PreferredValue": "ras", + "Tag": "", + "TagAny": "tie" + }, + { + "Type": 1, + "SubTag": "tif", + "Description": [ + "Tifal" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tif" + }, + { + "Type": 1, + "SubTag": "tig", + "Description": [ + "Tigre" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tig" + }, + { + "Type": 1, + "SubTag": "tih", + "Description": [ + "Timugon Murut" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tih" + }, + { + "Type": 1, + "SubTag": "tii", + "Description": [ + "Tiene" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tii" + }, + { + "Type": 1, + "SubTag": "tij", + "Description": [ + "Tilung" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tij" + }, + { + "Type": 1, + "SubTag": "tik", + "Description": [ + "Tikar" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tik" + }, + { + "Type": 1, + "SubTag": "til", + "Description": [ + "Tillamook" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "til" + }, + { + "Type": 1, + "SubTag": "tim", + "Description": [ + "Timbe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tim" + }, + { + "Type": 1, + "SubTag": "tin", + "Description": [ + "Tindi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tin" + }, + { + "Type": 1, + "SubTag": "tio", + "Description": [ + "Teop" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tio" + }, + { + "Type": 1, + "SubTag": "tip", + "Description": [ + "Trimuris" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tip" + }, + { + "Type": 1, + "SubTag": "tiq", + "Description": [ + "Ti\u00E9fo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tiq" + }, + { + "Type": 1, + "SubTag": "tis", + "Description": [ + "Masadiit Itneg" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tis" + }, + { + "Type": 1, + "SubTag": "tit", + "Description": [ + "Tinigua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tit" + }, + { + "Type": 1, + "SubTag": "tiu", + "Description": [ + "Adasen" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tiu" + }, + { + "Type": 1, + "SubTag": "tiv", + "Description": [ + "Tiv" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tiv" + }, + { + "Type": 1, + "SubTag": "tiw", + "Description": [ + "Tiwi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tiw" + }, + { + "Type": 1, + "SubTag": "tix", + "Description": [ + "Southern Tiwa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tix" + }, + { + "Type": 1, + "SubTag": "tiy", + "Description": [ + "Tiruray" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tiy" + }, + { + "Type": 1, + "SubTag": "tiz", + "Description": [ + "Tai Hongjin" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tiz" + }, + { + "Type": 1, + "SubTag": "tja", + "Description": [ + "Tajuasohn" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tja" + }, + { + "Type": 1, + "SubTag": "tjg", + "Description": [ + "Tunjung" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tjg" + }, + { + "Type": 1, + "SubTag": "tji", + "Description": [ + "Northern Tujia" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tji" + }, + { + "Type": 1, + "SubTag": "tjj", + "Description": [ + "Tjungundji" + ], + "Added": "2019-04-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tjj" + }, + { + "Type": 1, + "SubTag": "tjl", + "Description": [ + "Tai Laing" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tjl" + }, + { + "Type": 1, + "SubTag": "tjm", + "Description": [ + "Timucua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tjm" + }, + { + "Type": 1, + "SubTag": "tjn", + "Description": [ + "Tonjon" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tjn" + }, + { + "Type": 1, + "SubTag": "tjo", + "Description": [ + "Temacine Tamazight" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tjo" + }, + { + "Type": 1, + "SubTag": "tjp", + "Description": [ + "Tjupany" + ], + "Added": "2019-04-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tjp" + }, + { + "Type": 1, + "SubTag": "tjs", + "Description": [ + "Southern Tujia" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tjs" + }, + { + "Type": 1, + "SubTag": "tju", + "Description": [ + "Tjurruru" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tju" + }, + { + "Type": 1, + "SubTag": "tjw", + "Description": [ + "Djabwurrung" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tjw" + }, + { + "Type": 1, + "SubTag": "tka", + "Description": [ + "Truk\u00E1" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tka" + }, + { + "Type": 1, + "SubTag": "tkb", + "Description": [ + "Buksa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tkb" + }, + { + "Type": 1, + "SubTag": "tkd", + "Description": [ + "Tukudede" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tkd" + }, + { + "Type": 1, + "SubTag": "tke", + "Description": [ + "Takwane" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tke" + }, + { + "Type": 1, + "SubTag": "tkf", + "Description": [ + "Tukumanf\u00E9d" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tkf" + }, + { + "Type": 1, + "SubTag": "tkg", + "Description": [ + "Tesaka Malagasy" + ], + "Added": "2011-08-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "mg", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tkg" + }, + { + "Type": 1, + "SubTag": "tkk", + "Description": [ + "Takpa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2011-08-16", + "Comments": [], + "Prefix": [], + "PreferredValue": "twm", + "Tag": "", + "TagAny": "tkk" + }, + { + "Type": 1, + "SubTag": "tkl", + "Description": [ + "Tokelau" + ], + "Added": "2005-10-16", + "SuppressScript": "Latn", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tkl" + }, + { + "Type": 1, + "SubTag": "tkm", + "Description": [ + "Takelma" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tkm" + }, + { + "Type": 1, + "SubTag": "tkn", + "Description": [ + "Toku-No-Shima" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tkn" + }, + { + "Type": 1, + "SubTag": "tkp", + "Description": [ + "Tikopia" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tkp" + }, + { + "Type": 1, + "SubTag": "tkq", + "Description": [ + "Tee" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tkq" + }, + { + "Type": 1, + "SubTag": "tkr", + "Description": [ + "Tsakhur" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tkr" + }, + { + "Type": 1, + "SubTag": "tks", + "Description": [ + "Takestani" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tks" + }, + { + "Type": 1, + "SubTag": "tkt", + "Description": [ + "Kathoriya Tharu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tkt" + }, + { + "Type": 1, + "SubTag": "tku", + "Description": [ + "Upper Necaxa Totonac" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tku" + }, + { + "Type": 1, + "SubTag": "tkv", + "Description": [ + "Mur Pano" + ], + "Added": "2014-02-28", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tkv" + }, + { + "Type": 1, + "SubTag": "tkw", + "Description": [ + "Teanu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tkw" + }, + { + "Type": 1, + "SubTag": "tkx", + "Description": [ + "Tangko" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tkx" + }, + { + "Type": 1, + "SubTag": "tkz", + "Description": [ + "Takua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tkz" + }, + { + "Type": 1, + "SubTag": "tla", + "Description": [ + "Southwestern Tepehuan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tla" + }, + { + "Type": 1, + "SubTag": "tlb", + "Description": [ + "Tobelo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tlb" + }, + { + "Type": 1, + "SubTag": "tlc", + "Description": [ + "Yecuatla Totonac" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tlc" + }, + { + "Type": 1, + "SubTag": "tld", + "Description": [ + "Talaud" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tld" + }, + { + "Type": 1, + "SubTag": "tlf", + "Description": [ + "Telefol" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tlf" + }, + { + "Type": 1, + "SubTag": "tlg", + "Description": [ + "Tofanma" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tlg" + }, + { + "Type": 1, + "SubTag": "tlh", + "Description": [ + "Klingon", + "tlhIngan Hol" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tlh" + }, + { + "Type": 1, + "SubTag": "tli", + "Description": [ + "Tlingit" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tli" + }, + { + "Type": 1, + "SubTag": "tlj", + "Description": [ + "Talinga-Bwisi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tlj" + }, + { + "Type": 1, + "SubTag": "tlk", + "Description": [ + "Taloki" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tlk" + }, + { + "Type": 1, + "SubTag": "tll", + "Description": [ + "Tetela" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tll" + }, + { + "Type": 1, + "SubTag": "tlm", + "Description": [ + "Tolomako" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tlm" + }, + { + "Type": 1, + "SubTag": "tln", + "Description": [ + "Talondo\u0027" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tln" + }, + { + "Type": 1, + "SubTag": "tlo", + "Description": [ + "Talodi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tlo" + }, + { + "Type": 1, + "SubTag": "tlp", + "Description": [ + "Filomena Mata-Coahuitl\u00E1n Totonac" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tlp" + }, + { + "Type": 1, + "SubTag": "tlq", + "Description": [ + "Tai Loi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tlq" + }, + { + "Type": 1, + "SubTag": "tlr", + "Description": [ + "Talise" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tlr" + }, + { + "Type": 1, + "SubTag": "tls", + "Description": [ + "Tambotalo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tls" + }, + { + "Type": 1, + "SubTag": "tlt", + "Description": [ + "Sou Nama", + "Teluti" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tlt" + }, + { + "Type": 1, + "SubTag": "tlu", + "Description": [ + "Tulehu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tlu" + }, + { + "Type": 1, + "SubTag": "tlv", + "Description": [ + "Taliabu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tlv" + }, + { + "Type": 1, + "SubTag": "tlw", + "Description": [ + "South Wemale" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2012-08-12", + "Comments": [], + "Prefix": [], + "PreferredValue": "weo", + "Tag": "", + "TagAny": "tlw" + }, + { + "Type": 1, + "SubTag": "tlx", + "Description": [ + "Khehek" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tlx" + }, + { + "Type": 1, + "SubTag": "tly", + "Description": [ + "Talysh" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tly" + }, + { + "Type": 1, + "SubTag": "tma", + "Description": [ + "Tama (Chad)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tma" + }, + { + "Type": 1, + "SubTag": "tmb", + "Description": [ + "Katbol", + "Avava" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tmb" + }, + { + "Type": 1, + "SubTag": "tmc", + "Description": [ + "Tumak" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tmc" + }, + { + "Type": 1, + "SubTag": "tmd", + "Description": [ + "Haruai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tmd" + }, + { + "Type": 1, + "SubTag": "tme", + "Description": [ + "Trememb\u00E9" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tme" + }, + { + "Type": 1, + "SubTag": "tmf", + "Description": [ + "Toba-Maskoy" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tmf" + }, + { + "Type": 1, + "SubTag": "tmg", + "Description": [ + "Ternate\u00F1o" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tmg" + }, + { + "Type": 1, + "SubTag": "tmh", + "Description": [ + "Tamashek" + ], + "Added": "2005-10-16", + "SuppressScript": "Latn", + "Scope": "macrolanguage", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tmh" + }, + { + "Type": 1, + "SubTag": "tmi", + "Description": [ + "Tutuba" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tmi" + }, + { + "Type": 1, + "SubTag": "tmj", + "Description": [ + "Samarokena" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tmj" + }, + { + "Type": 1, + "SubTag": "tmk", + "Description": [ + "Northwestern Tamang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2023-03-17", + "Comments": [], + "Prefix": [], + "PreferredValue": "tdg", + "Tag": "", + "TagAny": "tmk" + }, + { + "Type": 1, + "SubTag": "tml", + "Description": [ + "Tamnim Citak" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tml" + }, + { + "Type": 1, + "SubTag": "tmm", + "Description": [ + "Tai Thanh" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tmm" + }, + { + "Type": 1, + "SubTag": "tmn", + "Description": [ + "Taman (Indonesia)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tmn" + }, + { + "Type": 1, + "SubTag": "tmo", + "Description": [ + "Temoq" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tmo" + }, + { + "Type": 1, + "SubTag": "tmp", + "Description": [ + "Tai M\u00E8ne" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2016-05-30", + "Comments": [], + "Prefix": [], + "PreferredValue": "tyj", + "Tag": "", + "TagAny": "tmp" + }, + { + "Type": 1, + "SubTag": "tmq", + "Description": [ + "Tumleo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tmq" + }, + { + "Type": 1, + "SubTag": "tmr", + "Description": [ + "Jewish Babylonian Aramaic (ca. 200-1200 CE)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tmr" + }, + { + "Type": 1, + "SubTag": "tms", + "Description": [ + "Tima" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tms" + }, + { + "Type": 1, + "SubTag": "tmt", + "Description": [ + "Tasmate" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tmt" + }, + { + "Type": 1, + "SubTag": "tmu", + "Description": [ + "Iau" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tmu" + }, + { + "Type": 1, + "SubTag": "tmv", + "Description": [ + "Tembo (Motembo)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tmv" + }, + { + "Type": 1, + "SubTag": "tmw", + "Description": [ + "Temuan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ms", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tmw" + }, + { + "Type": 1, + "SubTag": "tmy", + "Description": [ + "Tami" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tmy" + }, + { + "Type": 1, + "SubTag": "tmz", + "Description": [ + "Tamanaku" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tmz" + }, + { + "Type": 1, + "SubTag": "tna", + "Description": [ + "Tacana" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tna" + }, + { + "Type": 1, + "SubTag": "tnb", + "Description": [ + "Western Tunebo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tnb" + }, + { + "Type": 1, + "SubTag": "tnc", + "Description": [ + "Tanimuca-Retuar\u00E3" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tnc" + }, + { + "Type": 1, + "SubTag": "tnd", + "Description": [ + "Angosturas Tunebo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tnd" + }, + { + "Type": 1, + "SubTag": "tne", + "Description": [ + "Tinoc Kallahan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2016-05-30", + "Comments": [], + "Prefix": [], + "PreferredValue": "kak", + "Tag": "", + "TagAny": "tne" + }, + { + "Type": 1, + "SubTag": "tnf", + "Description": [ + "Tangshewi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2010-03-11", + "Comments": [], + "Prefix": [], + "PreferredValue": "prs", + "Tag": "", + "TagAny": "tnf" + }, + { + "Type": 1, + "SubTag": "tng", + "Description": [ + "Tobanga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tng" + }, + { + "Type": 1, + "SubTag": "tnh", + "Description": [ + "Maiani" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tnh" + }, + { + "Type": 1, + "SubTag": "tni", + "Description": [ + "Tandia" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tni" + }, + { + "Type": 1, + "SubTag": "tnk", + "Description": [ + "Kwamera" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tnk" + }, + { + "Type": 1, + "SubTag": "tnl", + "Description": [ + "Lenakel" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tnl" + }, + { + "Type": 1, + "SubTag": "tnm", + "Description": [ + "Tabla" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tnm" + }, + { + "Type": 1, + "SubTag": "tnn", + "Description": [ + "North Tanna" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tnn" + }, + { + "Type": 1, + "SubTag": "tno", + "Description": [ + "Toromono" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tno" + }, + { + "Type": 1, + "SubTag": "tnp", + "Description": [ + "Whitesands" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tnp" + }, + { + "Type": 1, + "SubTag": "tnq", + "Description": [ + "Taino" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tnq" + }, + { + "Type": 1, + "SubTag": "tnr", + "Description": [ + "M\u00E9nik" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tnr" + }, + { + "Type": 1, + "SubTag": "tns", + "Description": [ + "Tenis" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tns" + }, + { + "Type": 1, + "SubTag": "tnt", + "Description": [ + "Tontemboan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tnt" + }, + { + "Type": 1, + "SubTag": "tnu", + "Description": [ + "Tay Khang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tnu" + }, + { + "Type": 1, + "SubTag": "tnv", + "Description": [ + "Tangchangya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tnv" + }, + { + "Type": 1, + "SubTag": "tnw", + "Description": [ + "Tonsawang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tnw" + }, + { + "Type": 1, + "SubTag": "tnx", + "Description": [ + "Tanema" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tnx" + }, + { + "Type": 1, + "SubTag": "tny", + "Description": [ + "Tongwe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tny" + }, + { + "Type": 1, + "SubTag": "tnz", + "Description": [ + "Ten\u0027edn" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tnz" + }, + { + "Type": 1, + "SubTag": "tob", + "Description": [ + "Toba" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tob" + }, + { + "Type": 1, + "SubTag": "toc", + "Description": [ + "Coyutla Totonac" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "toc" + }, + { + "Type": 1, + "SubTag": "tod", + "Description": [ + "Toma" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tod" + }, + { + "Type": 1, + "SubTag": "toe", + "Description": [ + "Tomedes" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2016-05-30", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "toe" + }, + { + "Type": 1, + "SubTag": "tof", + "Description": [ + "Gizrra" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tof" + }, + { + "Type": 1, + "SubTag": "tog", + "Description": [ + "Tonga (Nyasa)" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tog" + }, + { + "Type": 1, + "SubTag": "toh", + "Description": [ + "Gitonga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "toh" + }, + { + "Type": 1, + "SubTag": "toi", + "Description": [ + "Tonga (Zambia)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "toi" + }, + { + "Type": 1, + "SubTag": "toj", + "Description": [ + "Tojolabal" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "toj" + }, + { + "Type": 1, + "SubTag": "tok", + "Description": [ + "Toki Pona" + ], + "Added": "2022-02-25", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tok" + }, + { + "Type": 1, + "SubTag": "tol", + "Description": [ + "Tolowa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tol" + }, + { + "Type": 1, + "SubTag": "tom", + "Description": [ + "Tombulu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tom" + }, + { + "Type": 1, + "SubTag": "too", + "Description": [ + "Xicotepec De Ju\u00E1rez Totonac" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "too" + }, + { + "Type": 1, + "SubTag": "top", + "Description": [ + "Papantla Totonac" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "top" + }, + { + "Type": 1, + "SubTag": "toq", + "Description": [ + "Toposa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "toq" + }, + { + "Type": 1, + "SubTag": "tor", + "Description": [ + "Togbo-Vara Banda" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tor" + }, + { + "Type": 1, + "SubTag": "tos", + "Description": [ + "Highland Totonac" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tos" + }, + { + "Type": 1, + "SubTag": "tou", + "Description": [ + "Tho" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tou" + }, + { + "Type": 1, + "SubTag": "tov", + "Description": [ + "Upper Taromi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tov" + }, + { + "Type": 1, + "SubTag": "tow", + "Description": [ + "Jemez" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tow" + }, + { + "Type": 1, + "SubTag": "tox", + "Description": [ + "Tobian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tox" + }, + { + "Type": 1, + "SubTag": "toy", + "Description": [ + "Topoiyo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "toy" + }, + { + "Type": 1, + "SubTag": "toz", + "Description": [ + "To" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "toz" + }, + { + "Type": 1, + "SubTag": "tpa", + "Description": [ + "Taupota" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tpa" + }, + { + "Type": 1, + "SubTag": "tpc", + "Description": [ + "Azoy\u00FA Me\u0027phaa", + "Azoy\u00FA Tlapanec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tpc" + }, + { + "Type": 1, + "SubTag": "tpe", + "Description": [ + "Tippera" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tpe" + }, + { + "Type": 1, + "SubTag": "tpf", + "Description": [ + "Tarpia" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tpf" + }, + { + "Type": 1, + "SubTag": "tpg", + "Description": [ + "Kula" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tpg" + }, + { + "Type": 1, + "SubTag": "tpi", + "Description": [ + "Tok Pisin" + ], + "Added": "2005-10-16", + "SuppressScript": "Latn", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tpi" + }, + { + "Type": 1, + "SubTag": "tpj", + "Description": [ + "Tapiet\u00E9" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tpj" + }, + { + "Type": 1, + "SubTag": "tpk", + "Description": [ + "Tupinikin" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tpk" + }, + { + "Type": 1, + "SubTag": "tpl", + "Description": [ + "Tlacoapa Me\u0027phaa", + "Tlacoapa Tlapanec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tpl" + }, + { + "Type": 1, + "SubTag": "tpm", + "Description": [ + "Tampulma" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tpm" + }, + { + "Type": 1, + "SubTag": "tpn", + "Description": [ + "Tupinamb\u00E1" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tpn" + }, + { + "Type": 1, + "SubTag": "tpo", + "Description": [ + "Tai Pao" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tpo" + }, + { + "Type": 1, + "SubTag": "tpp", + "Description": [ + "Pisaflores Tepehua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tpp" + }, + { + "Type": 1, + "SubTag": "tpq", + "Description": [ + "Tukpa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tpq" + }, + { + "Type": 1, + "SubTag": "tpr", + "Description": [ + "Tupar\u00ED" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tpr" + }, + { + "Type": 1, + "SubTag": "tpt", + "Description": [ + "Tlachichilco Tepehua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tpt" + }, + { + "Type": 1, + "SubTag": "tpu", + "Description": [ + "Tampuan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tpu" + }, + { + "Type": 1, + "SubTag": "tpv", + "Description": [ + "Tanapag" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tpv" + }, + { + "Type": 1, + "SubTag": "tpw", + "Description": [ + "Tup\u00ED" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2023-03-17", + "Comments": [], + "Prefix": [], + "PreferredValue": "tpn", + "Tag": "", + "TagAny": "tpw" + }, + { + "Type": 1, + "SubTag": "tpx", + "Description": [ + "Acatepec Me\u0027phaa", + "Acatepec Tlapanec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tpx" + }, + { + "Type": 1, + "SubTag": "tpy", + "Description": [ + "Trumai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tpy" + }, + { + "Type": 1, + "SubTag": "tpz", + "Description": [ + "Tinputz" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tpz" + }, + { + "Type": 1, + "SubTag": "tqb", + "Description": [ + "Temb\u00E9" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tqb" + }, + { + "Type": 1, + "SubTag": "tql", + "Description": [ + "Lehali" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tql" + }, + { + "Type": 1, + "SubTag": "tqm", + "Description": [ + "Turumsa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tqm" + }, + { + "Type": 1, + "SubTag": "tqn", + "Description": [ + "Tenino" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tqn" + }, + { + "Type": 1, + "SubTag": "tqo", + "Description": [ + "Toaripi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tqo" + }, + { + "Type": 1, + "SubTag": "tqp", + "Description": [ + "Tomoip" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tqp" + }, + { + "Type": 1, + "SubTag": "tqq", + "Description": [ + "Tunni" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tqq" + }, + { + "Type": 1, + "SubTag": "tqr", + "Description": [ + "Torona" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tqr" + }, + { + "Type": 1, + "SubTag": "tqt", + "Description": [ + "Western Totonac" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tqt" + }, + { + "Type": 1, + "SubTag": "tqu", + "Description": [ + "Touo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tqu" + }, + { + "Type": 1, + "SubTag": "tqw", + "Description": [ + "Tonkawa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tqw" + }, + { + "Type": 1, + "SubTag": "tra", + "Description": [ + "Tirahi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tra" + }, + { + "Type": 1, + "SubTag": "trb", + "Description": [ + "Terebu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "trb" + }, + { + "Type": 1, + "SubTag": "trc", + "Description": [ + "Copala Triqui" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "trc" + }, + { + "Type": 1, + "SubTag": "trd", + "Description": [ + "Turi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "trd" + }, + { + "Type": 1, + "SubTag": "tre", + "Description": [ + "East Tarangan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tre" + }, + { + "Type": 1, + "SubTag": "trf", + "Description": [ + "Trinidadian Creole English" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "trf" + }, + { + "Type": 1, + "SubTag": "trg", + "Description": [ + "Lish\u00E1n Did\u00E1n" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "trg" + }, + { + "Type": 1, + "SubTag": "trh", + "Description": [ + "Turaka" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "trh" + }, + { + "Type": 1, + "SubTag": "tri", + "Description": [ + "Tri\u00F3" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tri" + }, + { + "Type": 1, + "SubTag": "trj", + "Description": [ + "Toram" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "trj" + }, + { + "Type": 1, + "SubTag": "trk", + "Description": [ + "Turkic languages" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "trk" + }, + { + "Type": 1, + "SubTag": "trl", + "Description": [ + "Traveller Scottish" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "trl" + }, + { + "Type": 1, + "SubTag": "trm", + "Description": [ + "Tregami" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "trm" + }, + { + "Type": 1, + "SubTag": "trn", + "Description": [ + "Trinitario" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "trn" + }, + { + "Type": 1, + "SubTag": "tro", + "Description": [ + "Tarao Naga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tro" + }, + { + "Type": 1, + "SubTag": "trp", + "Description": [ + "Kok Borok" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "trp" + }, + { + "Type": 1, + "SubTag": "trq", + "Description": [ + "San Mart\u00EDn Itunyoso Triqui" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "trq" + }, + { + "Type": 1, + "SubTag": "trr", + "Description": [ + "Taushiro" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "trr" + }, + { + "Type": 1, + "SubTag": "trs", + "Description": [ + "Chicahuaxtla Triqui" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "trs" + }, + { + "Type": 1, + "SubTag": "trt", + "Description": [ + "Tunggare" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "trt" + }, + { + "Type": 1, + "SubTag": "tru", + "Description": [ + "Turoyo", + "Surayt" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tru" + }, + { + "Type": 1, + "SubTag": "trv", + "Description": [ + "Sediq", + "Seediq", + "Taroko" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "trv" + }, + { + "Type": 1, + "SubTag": "trw", + "Description": [ + "Torwali" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "trw" + }, + { + "Type": 1, + "SubTag": "trx", + "Description": [ + "Tringgus-Sembaan Bidayuh" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "trx" + }, + { + "Type": 1, + "SubTag": "try", + "Description": [ + "Turung" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "try" + }, + { + "Type": 1, + "SubTag": "trz", + "Description": [ + "Tor\u00E1" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "trz" + }, + { + "Type": 1, + "SubTag": "tsa", + "Description": [ + "Tsaangi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tsa" + }, + { + "Type": 1, + "SubTag": "tsb", + "Description": [ + "Tsamai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tsb" + }, + { + "Type": 1, + "SubTag": "tsc", + "Description": [ + "Tswa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tsc" + }, + { + "Type": 1, + "SubTag": "tsd", + "Description": [ + "Tsakonian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tsd" + }, + { + "Type": 1, + "SubTag": "tse", + "Description": [ + "Tunisian Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tse" + }, + { + "Type": 1, + "SubTag": "tsf", + "Description": [ + "Southwestern Tamang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2015-02-12", + "Comments": [], + "Prefix": [], + "PreferredValue": "taj", + "Tag": "", + "TagAny": "tsf" + }, + { + "Type": 1, + "SubTag": "tsg", + "Description": [ + "Tausug" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tsg" + }, + { + "Type": 1, + "SubTag": "tsh", + "Description": [ + "Tsuvan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tsh" + }, + { + "Type": 1, + "SubTag": "tsi", + "Description": [ + "Tsimshian" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tsi" + }, + { + "Type": 1, + "SubTag": "tsj", + "Description": [ + "Tshangla" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tsj" + }, + { + "Type": 1, + "SubTag": "tsk", + "Description": [ + "Tseku" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tsk" + }, + { + "Type": 1, + "SubTag": "tsl", + "Description": [ + "Ts\u0027\u00FCn-Lao" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tsl" + }, + { + "Type": 1, + "SubTag": "tsm", + "Description": [ + "Turkish Sign Language", + "T\u00FCrk \u0130\u015Faret Dili" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tsm" + }, + { + "Type": 1, + "SubTag": "tsp", + "Description": [ + "Northern Toussian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tsp" + }, + { + "Type": 1, + "SubTag": "tsq", + "Description": [ + "Thai Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tsq" + }, + { + "Type": 1, + "SubTag": "tsr", + "Description": [ + "Akei" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tsr" + }, + { + "Type": 1, + "SubTag": "tss", + "Description": [ + "Taiwan Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tss" + }, + { + "Type": 1, + "SubTag": "tst", + "Description": [ + "Tondi Songway Kiini" + ], + "Added": "2011-08-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tst" + }, + { + "Type": 1, + "SubTag": "tsu", + "Description": [ + "Tsou" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tsu" + }, + { + "Type": 1, + "SubTag": "tsv", + "Description": [ + "Tsogo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tsv" + }, + { + "Type": 1, + "SubTag": "tsw", + "Description": [ + "Tsishingini" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tsw" + }, + { + "Type": 1, + "SubTag": "tsx", + "Description": [ + "Mubami" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tsx" + }, + { + "Type": 1, + "SubTag": "tsy", + "Description": [ + "Tebul Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tsy" + }, + { + "Type": 1, + "SubTag": "tsz", + "Description": [ + "Purepecha" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tsz" + }, + { + "Type": 1, + "SubTag": "tta", + "Description": [ + "Tutelo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tta" + }, + { + "Type": 1, + "SubTag": "ttb", + "Description": [ + "Gaa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ttb" + }, + { + "Type": 1, + "SubTag": "ttc", + "Description": [ + "Tektiteko" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ttc" + }, + { + "Type": 1, + "SubTag": "ttd", + "Description": [ + "Tauade" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ttd" + }, + { + "Type": 1, + "SubTag": "tte", + "Description": [ + "Bwanabwana" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tte" + }, + { + "Type": 1, + "SubTag": "ttf", + "Description": [ + "Tuotomb" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ttf" + }, + { + "Type": 1, + "SubTag": "ttg", + "Description": [ + "Tutong" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ttg" + }, + { + "Type": 1, + "SubTag": "tth", + "Description": [ + "Upper Ta\u0027oih" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tth" + }, + { + "Type": 1, + "SubTag": "tti", + "Description": [ + "Tobati" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tti" + }, + { + "Type": 1, + "SubTag": "ttj", + "Description": [ + "Tooro" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ttj" + }, + { + "Type": 1, + "SubTag": "ttk", + "Description": [ + "Totoro" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ttk" + }, + { + "Type": 1, + "SubTag": "ttl", + "Description": [ + "Totela" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ttl" + }, + { + "Type": 1, + "SubTag": "ttm", + "Description": [ + "Northern Tutchone" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ttm" + }, + { + "Type": 1, + "SubTag": "ttn", + "Description": [ + "Towei" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ttn" + }, + { + "Type": 1, + "SubTag": "tto", + "Description": [ + "Lower Ta\u0027oih" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tto" + }, + { + "Type": 1, + "SubTag": "ttp", + "Description": [ + "Tombelala" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ttp" + }, + { + "Type": 1, + "SubTag": "ttq", + "Description": [ + "Tawallammat Tamajaq" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "tmh", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ttq" + }, + { + "Type": 1, + "SubTag": "ttr", + "Description": [ + "Tera" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ttr" + }, + { + "Type": 1, + "SubTag": "tts", + "Description": [ + "Northeastern Thai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tts" + }, + { + "Type": 1, + "SubTag": "ttt", + "Description": [ + "Muslim Tat" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ttt" + }, + { + "Type": 1, + "SubTag": "ttu", + "Description": [ + "Torau" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ttu" + }, + { + "Type": 1, + "SubTag": "ttv", + "Description": [ + "Titan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ttv" + }, + { + "Type": 1, + "SubTag": "ttw", + "Description": [ + "Long Wat" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ttw" + }, + { + "Type": 1, + "SubTag": "tty", + "Description": [ + "Sikaritai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tty" + }, + { + "Type": 1, + "SubTag": "ttz", + "Description": [ + "Tsum" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ttz" + }, + { + "Type": 1, + "SubTag": "tua", + "Description": [ + "Wiarumus" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tua" + }, + { + "Type": 1, + "SubTag": "tub", + "Description": [ + "T\u00FCbatulabal" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tub" + }, + { + "Type": 1, + "SubTag": "tuc", + "Description": [ + "Mutu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tuc" + }, + { + "Type": 1, + "SubTag": "tud", + "Description": [ + "Tux\u00E1" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tud" + }, + { + "Type": 1, + "SubTag": "tue", + "Description": [ + "Tuyuca" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tue" + }, + { + "Type": 1, + "SubTag": "tuf", + "Description": [ + "Central Tunebo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tuf" + }, + { + "Type": 1, + "SubTag": "tug", + "Description": [ + "Tunia" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tug" + }, + { + "Type": 1, + "SubTag": "tuh", + "Description": [ + "Taulil" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tuh" + }, + { + "Type": 1, + "SubTag": "tui", + "Description": [ + "Tupuri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tui" + }, + { + "Type": 1, + "SubTag": "tuj", + "Description": [ + "Tugutil" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tuj" + }, + { + "Type": 1, + "SubTag": "tul", + "Description": [ + "Tula" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tul" + }, + { + "Type": 1, + "SubTag": "tum", + "Description": [ + "Tumbuka" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tum" + }, + { + "Type": 1, + "SubTag": "tun", + "Description": [ + "Tunica" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tun" + }, + { + "Type": 1, + "SubTag": "tuo", + "Description": [ + "Tucano" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tuo" + }, + { + "Type": 1, + "SubTag": "tup", + "Description": [ + "Tupi languages" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tup" + }, + { + "Type": 1, + "SubTag": "tuq", + "Description": [ + "Tedaga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tuq" + }, + { + "Type": 1, + "SubTag": "tus", + "Description": [ + "Tuscarora" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tus" + }, + { + "Type": 1, + "SubTag": "tut", + "Description": [ + "Altaic languages" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tut" + }, + { + "Type": 1, + "SubTag": "tuu", + "Description": [ + "Tututni" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tuu" + }, + { + "Type": 1, + "SubTag": "tuv", + "Description": [ + "Turkana" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tuv" + }, + { + "Type": 1, + "SubTag": "tuw", + "Description": [ + "Tungus languages" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tuw" + }, + { + "Type": 1, + "SubTag": "tux", + "Description": [ + "Tuxin\u00E1wa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tux" + }, + { + "Type": 1, + "SubTag": "tuy", + "Description": [ + "Tugen" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "kln", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tuy" + }, + { + "Type": 1, + "SubTag": "tuz", + "Description": [ + "Turka" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tuz" + }, + { + "Type": 1, + "SubTag": "tva", + "Description": [ + "Vaghua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tva" + }, + { + "Type": 1, + "SubTag": "tvd", + "Description": [ + "Tsuvadi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tvd" + }, + { + "Type": 1, + "SubTag": "tve", + "Description": [ + "Te\u0027un" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tve" + }, + { + "Type": 1, + "SubTag": "tvi", + "Description": [ + "Tulai" + ], + "Added": "2023-03-17", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tvi" + }, + { + "Type": 1, + "SubTag": "tvk", + "Description": [ + "Southeast Ambrym" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tvk" + }, + { + "Type": 1, + "SubTag": "tvl", + "Description": [ + "Tuvalu" + ], + "Added": "2005-10-16", + "SuppressScript": "Latn", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tvl" + }, + { + "Type": 1, + "SubTag": "tvm", + "Description": [ + "Tela-Masbuar" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tvm" + }, + { + "Type": 1, + "SubTag": "tvn", + "Description": [ + "Tavoyan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tvn" + }, + { + "Type": 1, + "SubTag": "tvo", + "Description": [ + "Tidore" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tvo" + }, + { + "Type": 1, + "SubTag": "tvs", + "Description": [ + "Taveta" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tvs" + }, + { + "Type": 1, + "SubTag": "tvt", + "Description": [ + "Tutsa Naga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tvt" + }, + { + "Type": 1, + "SubTag": "tvu", + "Description": [ + "Tunen" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tvu" + }, + { + "Type": 1, + "SubTag": "tvw", + "Description": [ + "Sedoa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tvw" + }, + { + "Type": 1, + "SubTag": "tvx", + "Description": [ + "Taivoan" + ], + "Added": "2019-04-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tvx" + }, + { + "Type": 1, + "SubTag": "tvy", + "Description": [ + "Timor Pidgin" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tvy" + }, + { + "Type": 1, + "SubTag": "twa", + "Description": [ + "Twana" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "twa" + }, + { + "Type": 1, + "SubTag": "twb", + "Description": [ + "Western Tawbuid" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "twb" + }, + { + "Type": 1, + "SubTag": "twc", + "Description": [ + "Teshenawa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "twc" + }, + { + "Type": 1, + "SubTag": "twd", + "Description": [ + "Twents" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "twd" + }, + { + "Type": 1, + "SubTag": "twe", + "Description": [ + "Tewa (Indonesia)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "twe" + }, + { + "Type": 1, + "SubTag": "twf", + "Description": [ + "Northern Tiwa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "twf" + }, + { + "Type": 1, + "SubTag": "twg", + "Description": [ + "Tereweng" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "twg" + }, + { + "Type": 1, + "SubTag": "twh", + "Description": [ + "Tai D\u00F3n" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "twh" + }, + { + "Type": 1, + "SubTag": "twl", + "Description": [ + "Tawara" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "twl" + }, + { + "Type": 1, + "SubTag": "twm", + "Description": [ + "Tawang Monpa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "twm" + }, + { + "Type": 1, + "SubTag": "twn", + "Description": [ + "Twendi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "twn" + }, + { + "Type": 1, + "SubTag": "two", + "Description": [ + "Tswapong" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "two" + }, + { + "Type": 1, + "SubTag": "twp", + "Description": [ + "Ere" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "twp" + }, + { + "Type": 1, + "SubTag": "twq", + "Description": [ + "Tasawaq" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "twq" + }, + { + "Type": 1, + "SubTag": "twr", + "Description": [ + "Southwestern Tarahumara" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "twr" + }, + { + "Type": 1, + "SubTag": "twt", + "Description": [ + "Turiw\u00E1ra" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "twt" + }, + { + "Type": 1, + "SubTag": "twu", + "Description": [ + "Termanu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "twu" + }, + { + "Type": 1, + "SubTag": "tww", + "Description": [ + "Tuwari" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tww" + }, + { + "Type": 1, + "SubTag": "twx", + "Description": [ + "Tewe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "twx" + }, + { + "Type": 1, + "SubTag": "twy", + "Description": [ + "Tawoyan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "twy" + }, + { + "Type": 1, + "SubTag": "txa", + "Description": [ + "Tombonuo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "txa" + }, + { + "Type": 1, + "SubTag": "txb", + "Description": [ + "Tokharian B" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "txb" + }, + { + "Type": 1, + "SubTag": "txc", + "Description": [ + "Tsetsaut" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "txc" + }, + { + "Type": 1, + "SubTag": "txe", + "Description": [ + "Totoli" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "txe" + }, + { + "Type": 1, + "SubTag": "txg", + "Description": [ + "Tangut" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "txg" + }, + { + "Type": 1, + "SubTag": "txh", + "Description": [ + "Thracian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "txh" + }, + { + "Type": 1, + "SubTag": "txi", + "Description": [ + "Ikpeng" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "txi" + }, + { + "Type": 1, + "SubTag": "txj", + "Description": [ + "Tarjumo" + ], + "Added": "2015-02-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "txj" + }, + { + "Type": 1, + "SubTag": "txm", + "Description": [ + "Tomini" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "txm" + }, + { + "Type": 1, + "SubTag": "txn", + "Description": [ + "West Tarangan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "txn" + }, + { + "Type": 1, + "SubTag": "txo", + "Description": [ + "Toto" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "txo" + }, + { + "Type": 1, + "SubTag": "txq", + "Description": [ + "Tii" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "txq" + }, + { + "Type": 1, + "SubTag": "txr", + "Description": [ + "Tartessian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "txr" + }, + { + "Type": 1, + "SubTag": "txs", + "Description": [ + "Tonsea" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "txs" + }, + { + "Type": 1, + "SubTag": "txt", + "Description": [ + "Citak" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "txt" + }, + { + "Type": 1, + "SubTag": "txu", + "Description": [ + "Kayap\u00F3" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "txu" + }, + { + "Type": 1, + "SubTag": "txx", + "Description": [ + "Tatana" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "txx" + }, + { + "Type": 1, + "SubTag": "txy", + "Description": [ + "Tanosy Malagasy" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "mg", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "txy" + }, + { + "Type": 1, + "SubTag": "tya", + "Description": [ + "Tauya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tya" + }, + { + "Type": 1, + "SubTag": "tye", + "Description": [ + "Kyanga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tye" + }, + { + "Type": 1, + "SubTag": "tyh", + "Description": [ + "O\u0027du" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tyh" + }, + { + "Type": 1, + "SubTag": "tyi", + "Description": [ + "Teke-Tsaayi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tyi" + }, + { + "Type": 1, + "SubTag": "tyj", + "Description": [ + "Tai Do", + "Tai Yo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tyj" + }, + { + "Type": 1, + "SubTag": "tyl", + "Description": [ + "Thu Lao" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tyl" + }, + { + "Type": 1, + "SubTag": "tyn", + "Description": [ + "Kombai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tyn" + }, + { + "Type": 1, + "SubTag": "typ", + "Description": [ + "Thaypan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "typ" + }, + { + "Type": 1, + "SubTag": "tyr", + "Description": [ + "Tai Daeng" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tyr" + }, + { + "Type": 1, + "SubTag": "tys", + "Description": [ + "T\u00E0y Sa Pa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tys" + }, + { + "Type": 1, + "SubTag": "tyt", + "Description": [ + "T\u00E0y Tac" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tyt" + }, + { + "Type": 1, + "SubTag": "tyu", + "Description": [ + "Kua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tyu" + }, + { + "Type": 1, + "SubTag": "tyv", + "Description": [ + "Tuvinian" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tyv" + }, + { + "Type": 1, + "SubTag": "tyx", + "Description": [ + "Teke-Tyee" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tyx" + }, + { + "Type": 1, + "SubTag": "tyy", + "Description": [ + "Tiyaa" + ], + "Added": "2021-02-20", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tyy" + }, + { + "Type": 1, + "SubTag": "tyz", + "Description": [ + "T\u00E0y" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tyz" + }, + { + "Type": 1, + "SubTag": "tza", + "Description": [ + "Tanzanian Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tza" + }, + { + "Type": 1, + "SubTag": "tzh", + "Description": [ + "Tzeltal" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tzh" + }, + { + "Type": 1, + "SubTag": "tzj", + "Description": [ + "Tz\u0027utujil" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tzj" + }, + { + "Type": 1, + "SubTag": "tzl", + "Description": [ + "Talossan" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tzl" + }, + { + "Type": 1, + "SubTag": "tzm", + "Description": [ + "Central Atlas Tamazight" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tzm" + }, + { + "Type": 1, + "SubTag": "tzn", + "Description": [ + "Tugun" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tzn" + }, + { + "Type": 1, + "SubTag": "tzo", + "Description": [ + "Tzotzil" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tzo" + }, + { + "Type": 1, + "SubTag": "tzx", + "Description": [ + "Tabriak" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "tzx" + }, + { + "Type": 1, + "SubTag": "uam", + "Description": [ + "Uamu\u00E9" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "uam" + }, + { + "Type": 1, + "SubTag": "uan", + "Description": [ + "Kuan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "uan" + }, + { + "Type": 1, + "SubTag": "uar", + "Description": [ + "Tairuma" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "uar" + }, + { + "Type": 1, + "SubTag": "uba", + "Description": [ + "Ubang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "uba" + }, + { + "Type": 1, + "SubTag": "ubi", + "Description": [ + "Ubi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ubi" + }, + { + "Type": 1, + "SubTag": "ubl", + "Description": [ + "Buhi\u0027non Bikol" + ], + "Added": "2010-03-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "bik", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ubl" + }, + { + "Type": 1, + "SubTag": "ubr", + "Description": [ + "Ubir" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ubr" + }, + { + "Type": 1, + "SubTag": "ubu", + "Description": [ + "Umbu-Ungu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ubu" + }, + { + "Type": 1, + "SubTag": "uby", + "Description": [ + "Ubykh" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "uby" + }, + { + "Type": 1, + "SubTag": "uda", + "Description": [ + "Uda" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "uda" + }, + { + "Type": 1, + "SubTag": "ude", + "Description": [ + "Udihe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ude" + }, + { + "Type": 1, + "SubTag": "udg", + "Description": [ + "Muduga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "udg" + }, + { + "Type": 1, + "SubTag": "udi", + "Description": [ + "Udi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "udi" + }, + { + "Type": 1, + "SubTag": "udj", + "Description": [ + "Ujir" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "udj" + }, + { + "Type": 1, + "SubTag": "udl", + "Description": [ + "Wuzlam" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "udl" + }, + { + "Type": 1, + "SubTag": "udm", + "Description": [ + "Udmurt" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "udm" + }, + { + "Type": 1, + "SubTag": "udu", + "Description": [ + "Uduk" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "udu" + }, + { + "Type": 1, + "SubTag": "ues", + "Description": [ + "Kioko" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ues" + }, + { + "Type": 1, + "SubTag": "ufi", + "Description": [ + "Ufim" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ufi" + }, + { + "Type": 1, + "SubTag": "uga", + "Description": [ + "Ugaritic" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "uga" + }, + { + "Type": 1, + "SubTag": "ugb", + "Description": [ + "Kuku-Ugbanh" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ugb" + }, + { + "Type": 1, + "SubTag": "uge", + "Description": [ + "Ughele" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "uge" + }, + { + "Type": 1, + "SubTag": "ugh", + "Description": [ + "Kubachi" + ], + "Added": "2022-02-25", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ugh" + }, + { + "Type": 1, + "SubTag": "ugn", + "Description": [ + "Ugandan Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ugn" + }, + { + "Type": 1, + "SubTag": "ugo", + "Description": [ + "Ugong" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ugo" + }, + { + "Type": 1, + "SubTag": "ugy", + "Description": [ + "Uruguayan Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ugy" + }, + { + "Type": 1, + "SubTag": "uha", + "Description": [ + "Uhami" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "uha" + }, + { + "Type": 1, + "SubTag": "uhn", + "Description": [ + "Damal" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "uhn" + }, + { + "Type": 1, + "SubTag": "uis", + "Description": [ + "Uisai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "uis" + }, + { + "Type": 1, + "SubTag": "uiv", + "Description": [ + "Iyive" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "uiv" + }, + { + "Type": 1, + "SubTag": "uji", + "Description": [ + "Tanjijili" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "uji" + }, + { + "Type": 1, + "SubTag": "uka", + "Description": [ + "Kaburi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "uka" + }, + { + "Type": 1, + "SubTag": "ukg", + "Description": [ + "Ukuriguma" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ukg" + }, + { + "Type": 1, + "SubTag": "ukh", + "Description": [ + "Ukhwejo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ukh" + }, + { + "Type": 1, + "SubTag": "uki", + "Description": [ + "Kui (India)" + ], + "Added": "2020-03-28", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "uki" + }, + { + "Type": 1, + "SubTag": "ukk", + "Description": [ + "Muak Sa-aak" + ], + "Added": "2017-02-23", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ukk" + }, + { + "Type": 1, + "SubTag": "ukl", + "Description": [ + "Ukrainian Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ukl" + }, + { + "Type": 1, + "SubTag": "ukp", + "Description": [ + "Ukpe-Bayobiri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ukp" + }, + { + "Type": 1, + "SubTag": "ukq", + "Description": [ + "Ukwa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ukq" + }, + { + "Type": 1, + "SubTag": "uks", + "Description": [ + "Urub\u00FA-Kaapor Sign Language", + "Kaapor Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "uks" + }, + { + "Type": 1, + "SubTag": "uku", + "Description": [ + "Ukue" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "uku" + }, + { + "Type": 1, + "SubTag": "ukv", + "Description": [ + "Kuku" + ], + "Added": "2020-03-28", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ukv" + }, + { + "Type": 1, + "SubTag": "ukw", + "Description": [ + "Ukwuani-Aboh-Ndoni" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ukw" + }, + { + "Type": 1, + "SubTag": "uky", + "Description": [ + "Kuuk-Yak" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "uky" + }, + { + "Type": 1, + "SubTag": "ula", + "Description": [ + "Fungwa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ula" + }, + { + "Type": 1, + "SubTag": "ulb", + "Description": [ + "Ulukwumi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ulb" + }, + { + "Type": 1, + "SubTag": "ulc", + "Description": [ + "Ulch" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ulc" + }, + { + "Type": 1, + "SubTag": "ule", + "Description": [ + "Lule" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ule" + }, + { + "Type": 1, + "SubTag": "ulf", + "Description": [ + "Usku", + "Afra" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ulf" + }, + { + "Type": 1, + "SubTag": "uli", + "Description": [ + "Ulithian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "uli" + }, + { + "Type": 1, + "SubTag": "ulk", + "Description": [ + "Meriam Mir" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ulk" + }, + { + "Type": 1, + "SubTag": "ull", + "Description": [ + "Ullatan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ull" + }, + { + "Type": 1, + "SubTag": "ulm", + "Description": [ + "Ulumanda\u0027" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ulm" + }, + { + "Type": 1, + "SubTag": "uln", + "Description": [ + "Unserdeutsch" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "uln" + }, + { + "Type": 1, + "SubTag": "ulu", + "Description": [ + "Uma\u0027 Lung" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ulu" + }, + { + "Type": 1, + "SubTag": "ulw", + "Description": [ + "Ulwa" + ], + "Added": "2010-03-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ulw" + }, + { + "Type": 1, + "SubTag": "uly", + "Description": [ + "Buli" + ], + "Added": "2023-03-17", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "uly" + }, + { + "Type": 1, + "SubTag": "uma", + "Description": [ + "Umatilla" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "uma" + }, + { + "Type": 1, + "SubTag": "umb", + "Description": [ + "Umbundu" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "umb" + }, + { + "Type": 1, + "SubTag": "umc", + "Description": [ + "Marrucinian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "umc" + }, + { + "Type": 1, + "SubTag": "umd", + "Description": [ + "Umbindhamu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "umd" + }, + { + "Type": 1, + "SubTag": "umg", + "Description": [ + "Morrobalama", + "Umbuygamu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "umg" + }, + { + "Type": 1, + "SubTag": "umi", + "Description": [ + "Ukit" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "umi" + }, + { + "Type": 1, + "SubTag": "umm", + "Description": [ + "Umon" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "umm" + }, + { + "Type": 1, + "SubTag": "umn", + "Description": [ + "Makyan Naga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "umn" + }, + { + "Type": 1, + "SubTag": "umo", + "Description": [ + "Umot\u00EDna" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "umo" + }, + { + "Type": 1, + "SubTag": "ump", + "Description": [ + "Umpila" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ump" + }, + { + "Type": 1, + "SubTag": "umr", + "Description": [ + "Umbugarla" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "umr" + }, + { + "Type": 1, + "SubTag": "ums", + "Description": [ + "Pendau" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ums" + }, + { + "Type": 1, + "SubTag": "umu", + "Description": [ + "Munsee" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "del", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "umu" + }, + { + "Type": 1, + "SubTag": "una", + "Description": [ + "North Watut" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "una" + }, + { + "Type": 1, + "SubTag": "und", + "Description": [ + "Undetermined" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "special", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "und" + }, + { + "Type": 1, + "SubTag": "une", + "Description": [ + "Uneme" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "une" + }, + { + "Type": 1, + "SubTag": "ung", + "Description": [ + "Ngarinyin" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ung" + }, + { + "Type": 1, + "SubTag": "uni", + "Description": [ + "Uni" + ], + "Added": "2021-02-20", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "uni" + }, + { + "Type": 1, + "SubTag": "unk", + "Description": [ + "Enawen\u00E9-Naw\u00E9" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "unk" + }, + { + "Type": 1, + "SubTag": "unm", + "Description": [ + "Unami" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "del", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "unm" + }, + { + "Type": 1, + "SubTag": "unn", + "Description": [ + "Kurnai" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "unn" + }, + { + "Type": 1, + "SubTag": "unp", + "Description": [ + "Worora" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2012-08-12", + "Comments": [ + "see wro, xgu" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "unp" + }, + { + "Type": 1, + "SubTag": "unr", + "Description": [ + "Mundari" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "unr" + }, + { + "Type": 1, + "SubTag": "unu", + "Description": [ + "Unubahe" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "unu" + }, + { + "Type": 1, + "SubTag": "unx", + "Description": [ + "Munda" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "unx" + }, + { + "Type": 1, + "SubTag": "unz", + "Description": [ + "Unde Kaili" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "unz" + }, + { + "Type": 1, + "SubTag": "uok", + "Description": [ + "Uokha" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2015-02-12", + "Comments": [], + "Prefix": [], + "PreferredValue": "ema", + "Tag": "", + "TagAny": "uok" + }, + { + "Type": 1, + "SubTag": "uon", + "Description": [ + "Kulon" + ], + "Added": "2022-02-25", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "uon" + }, + { + "Type": 1, + "SubTag": "upi", + "Description": [ + "Umeda" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "upi" + }, + { + "Type": 1, + "SubTag": "upv", + "Description": [ + "Uripiv-Wala-Rano-Atchin" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "upv" + }, + { + "Type": 1, + "SubTag": "ura", + "Description": [ + "Urarina" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ura" + }, + { + "Type": 1, + "SubTag": "urb", + "Description": [ + "Urub\u00FA-Kaapor", + "Kaapor" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "urb" + }, + { + "Type": 1, + "SubTag": "urc", + "Description": [ + "Urningangg" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "urc" + }, + { + "Type": 1, + "SubTag": "ure", + "Description": [ + "Uru" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ure" + }, + { + "Type": 1, + "SubTag": "urf", + "Description": [ + "Uradhi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "urf" + }, + { + "Type": 1, + "SubTag": "urg", + "Description": [ + "Urigina" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "urg" + }, + { + "Type": 1, + "SubTag": "urh", + "Description": [ + "Urhobo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "urh" + }, + { + "Type": 1, + "SubTag": "uri", + "Description": [ + "Urim" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "uri" + }, + { + "Type": 1, + "SubTag": "urj", + "Description": [ + "Uralic languages" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "urj" + }, + { + "Type": 1, + "SubTag": "urk", + "Description": [ + "Urak Lawoi\u0027" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ms", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "urk" + }, + { + "Type": 1, + "SubTag": "url", + "Description": [ + "Urali" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "url" + }, + { + "Type": 1, + "SubTag": "urm", + "Description": [ + "Urapmin" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "urm" + }, + { + "Type": 1, + "SubTag": "urn", + "Description": [ + "Uruangnirin" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "urn" + }, + { + "Type": 1, + "SubTag": "uro", + "Description": [ + "Ura (Papua New Guinea)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "uro" + }, + { + "Type": 1, + "SubTag": "urp", + "Description": [ + "Uru-Pa-In" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "urp" + }, + { + "Type": 1, + "SubTag": "urr", + "Description": [ + "Lehalurup", + "L\u00F6y\u00F6p" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "urr" + }, + { + "Type": 1, + "SubTag": "urt", + "Description": [ + "Urat" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "urt" + }, + { + "Type": 1, + "SubTag": "uru", + "Description": [ + "Urumi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "uru" + }, + { + "Type": 1, + "SubTag": "urv", + "Description": [ + "Uruava" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "urv" + }, + { + "Type": 1, + "SubTag": "urw", + "Description": [ + "Sop" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "urw" + }, + { + "Type": 1, + "SubTag": "urx", + "Description": [ + "Urimo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "urx" + }, + { + "Type": 1, + "SubTag": "ury", + "Description": [ + "Orya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ury" + }, + { + "Type": 1, + "SubTag": "urz", + "Description": [ + "Uru-Eu-Wau-Wau" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "urz" + }, + { + "Type": 1, + "SubTag": "usa", + "Description": [ + "Usarufa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "usa" + }, + { + "Type": 1, + "SubTag": "ush", + "Description": [ + "Ushojo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ush" + }, + { + "Type": 1, + "SubTag": "usi", + "Description": [ + "Usui" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "usi" + }, + { + "Type": 1, + "SubTag": "usk", + "Description": [ + "Usaghade" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "usk" + }, + { + "Type": 1, + "SubTag": "usp", + "Description": [ + "Uspanteco" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "usp" + }, + { + "Type": 1, + "SubTag": "uss", + "Description": [ + "us-Saare" + ], + "Added": "2019-04-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "uss" + }, + { + "Type": 1, + "SubTag": "usu", + "Description": [ + "Uya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "usu" + }, + { + "Type": 1, + "SubTag": "uta", + "Description": [ + "Otank" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "uta" + }, + { + "Type": 1, + "SubTag": "ute", + "Description": [ + "Ute-Southern Paiute" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ute" + }, + { + "Type": 1, + "SubTag": "uth", + "Description": [ + "ut-Hun" + ], + "Added": "2019-04-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "uth" + }, + { + "Type": 1, + "SubTag": "utp", + "Description": [ + "Amba (Solomon Islands)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "utp" + }, + { + "Type": 1, + "SubTag": "utr", + "Description": [ + "Etulo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "utr" + }, + { + "Type": 1, + "SubTag": "utu", + "Description": [ + "Utu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "utu" + }, + { + "Type": 1, + "SubTag": "uum", + "Description": [ + "Urum" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "uum" + }, + { + "Type": 1, + "SubTag": "uun", + "Description": [ + "Kulon-Pazeh" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2022-02-25", + "Comments": [ + "see pzh, uon" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "uun" + }, + { + "Type": 1, + "SubTag": "uur", + "Description": [ + "Ura (Vanuatu)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "uur" + }, + { + "Type": 1, + "SubTag": "uuu", + "Description": [ + "U" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "uuu" + }, + { + "Type": 1, + "SubTag": "uve", + "Description": [ + "West Uvean", + "Fagauvea" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "uve" + }, + { + "Type": 1, + "SubTag": "uvh", + "Description": [ + "Uri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "uvh" + }, + { + "Type": 1, + "SubTag": "uvl", + "Description": [ + "Lote" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "uvl" + }, + { + "Type": 1, + "SubTag": "uwa", + "Description": [ + "Kuku-Uwanh" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "uwa" + }, + { + "Type": 1, + "SubTag": "uya", + "Description": [ + "Doko-Uyanga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "uya" + }, + { + "Type": 1, + "SubTag": "uzn", + "Description": [ + "Northern Uzbek" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "uz", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "uzn" + }, + { + "Type": 1, + "SubTag": "uzs", + "Description": [ + "Southern Uzbek" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "uz", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "uzs" + }, + { + "Type": 1, + "SubTag": "vaa", + "Description": [ + "Vaagri Booli" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "vaa" + }, + { + "Type": 1, + "SubTag": "vae", + "Description": [ + "Vale" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "vae" + }, + { + "Type": 1, + "SubTag": "vaf", + "Description": [ + "Vafsi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "vaf" + }, + { + "Type": 1, + "SubTag": "vag", + "Description": [ + "Vagla" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "vag" + }, + { + "Type": 1, + "SubTag": "vah", + "Description": [ + "Varhadi-Nagpuri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "vah" + }, + { + "Type": 1, + "SubTag": "vai", + "Description": [ + "Vai" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "vai" + }, + { + "Type": 1, + "SubTag": "vaj", + "Description": [ + "Sekele", + "Northwestern \u01C3Kung", + "Vasekele" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "vaj" + }, + { + "Type": 1, + "SubTag": "val", + "Description": [ + "Vehes" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "val" + }, + { + "Type": 1, + "SubTag": "vam", + "Description": [ + "Vanimo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "vam" + }, + { + "Type": 1, + "SubTag": "van", + "Description": [ + "Valman" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "van" + }, + { + "Type": 1, + "SubTag": "vao", + "Description": [ + "Vao" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "vao" + }, + { + "Type": 1, + "SubTag": "vap", + "Description": [ + "Vaiphei" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "vap" + }, + { + "Type": 1, + "SubTag": "var", + "Description": [ + "Huarijio" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "var" + }, + { + "Type": 1, + "SubTag": "vas", + "Description": [ + "Vasavi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "vas" + }, + { + "Type": 1, + "SubTag": "vau", + "Description": [ + "Vanuma" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "vau" + }, + { + "Type": 1, + "SubTag": "vav", + "Description": [ + "Varli" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "vav" + }, + { + "Type": 1, + "SubTag": "vay", + "Description": [ + "Wayu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "vay" + }, + { + "Type": 1, + "SubTag": "vbb", + "Description": [ + "Southeast Babar" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "vbb" + }, + { + "Type": 1, + "SubTag": "vbk", + "Description": [ + "Southwestern Bontok" + ], + "Added": "2010-03-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "bnc", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "vbk" + }, + { + "Type": 1, + "SubTag": "vec", + "Description": [ + "Venetian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "vec" + }, + { + "Type": 1, + "SubTag": "ved", + "Description": [ + "Veddah" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ved" + }, + { + "Type": 1, + "SubTag": "vel", + "Description": [ + "Veluws" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "vel" + }, + { + "Type": 1, + "SubTag": "vem", + "Description": [ + "Vemgo-Mabas" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "vem" + }, + { + "Type": 1, + "SubTag": "veo", + "Description": [ + "Venture\u00F1o" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "veo" + }, + { + "Type": 1, + "SubTag": "vep", + "Description": [ + "Veps" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "vep" + }, + { + "Type": 1, + "SubTag": "ver", + "Description": [ + "Mom Jango" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ver" + }, + { + "Type": 1, + "SubTag": "vgr", + "Description": [ + "Vaghri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "vgr" + }, + { + "Type": 1, + "SubTag": "vgt", + "Description": [ + "Vlaamse Gebarentaal", + "Flemish Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "vgt" + }, + { + "Type": 1, + "SubTag": "vic", + "Description": [ + "Virgin Islands Creole English" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "vic" + }, + { + "Type": 1, + "SubTag": "vid", + "Description": [ + "Vidunda" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "vid" + }, + { + "Type": 1, + "SubTag": "vif", + "Description": [ + "Vili" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "vif" + }, + { + "Type": 1, + "SubTag": "vig", + "Description": [ + "Viemo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "vig" + }, + { + "Type": 1, + "SubTag": "vil", + "Description": [ + "Vilela" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "vil" + }, + { + "Type": 1, + "SubTag": "vin", + "Description": [ + "Vinza" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "vin" + }, + { + "Type": 1, + "SubTag": "vis", + "Description": [ + "Vishavan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "vis" + }, + { + "Type": 1, + "SubTag": "vit", + "Description": [ + "Viti" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "vit" + }, + { + "Type": 1, + "SubTag": "viv", + "Description": [ + "Iduna" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "viv" + }, + { + "Type": 1, + "SubTag": "vjk", + "Description": [ + "Bajjika" + ], + "Added": "2023-03-17", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "vjk" + }, + { + "Type": 1, + "SubTag": "vka", + "Description": [ + "Kariyarra" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "vka" + }, + { + "Type": 1, + "SubTag": "vki", + "Description": [ + "Ija-Zuba" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2021-02-20", + "Comments": [ + "see vkn, vkz" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "vki" + }, + { + "Type": 1, + "SubTag": "vkj", + "Description": [ + "Kujarge" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "vkj" + }, + { + "Type": 1, + "SubTag": "vkk", + "Description": [ + "Kaur" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ms", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "vkk" + }, + { + "Type": 1, + "SubTag": "vkl", + "Description": [ + "Kulisusu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "vkl" + }, + { + "Type": 1, + "SubTag": "vkm", + "Description": [ + "Kamakan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "vkm" + }, + { + "Type": 1, + "SubTag": "vkn", + "Description": [ + "Koro Nulu" + ], + "Added": "2021-02-20", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "vkn" + }, + { + "Type": 1, + "SubTag": "vko", + "Description": [ + "Kodeoha" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "vko" + }, + { + "Type": 1, + "SubTag": "vkp", + "Description": [ + "Korlai Creole Portuguese" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "vkp" + }, + { + "Type": 1, + "SubTag": "vkt", + "Description": [ + "Tenggarong Kutai Malay" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ms", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "vkt" + }, + { + "Type": 1, + "SubTag": "vku", + "Description": [ + "Kurrama" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "vku" + }, + { + "Type": 1, + "SubTag": "vkz", + "Description": [ + "Koro Zuba" + ], + "Added": "2021-02-20", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "vkz" + }, + { + "Type": 1, + "SubTag": "vlp", + "Description": [ + "Valpei" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "vlp" + }, + { + "Type": 1, + "SubTag": "vls", + "Description": [ + "Vlaams" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "vls" + }, + { + "Type": 1, + "SubTag": "vma", + "Description": [ + "Martuyhunira" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "vma" + }, + { + "Type": 1, + "SubTag": "vmb", + "Description": [ + "Barbaram" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "vmb" + }, + { + "Type": 1, + "SubTag": "vmc", + "Description": [ + "Juxtlahuaca Mixtec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "vmc" + }, + { + "Type": 1, + "SubTag": "vmd", + "Description": [ + "Mudu Koraga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "vmd" + }, + { + "Type": 1, + "SubTag": "vme", + "Description": [ + "East Masela" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "vme" + }, + { + "Type": 1, + "SubTag": "vmf", + "Description": [ + "Mainfr\u00E4nkisch" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "vmf" + }, + { + "Type": 1, + "SubTag": "vmg", + "Description": [ + "Lungalunga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [ + "see also bxf" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "vmg" + }, + { + "Type": 1, + "SubTag": "vmh", + "Description": [ + "Maraghei" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "vmh" + }, + { + "Type": 1, + "SubTag": "vmi", + "Description": [ + "Miwa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "vmi" + }, + { + "Type": 1, + "SubTag": "vmj", + "Description": [ + "Ixtayutla Mixtec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "vmj" + }, + { + "Type": 1, + "SubTag": "vmk", + "Description": [ + "Makhuwa-Shirima" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "vmk" + }, + { + "Type": 1, + "SubTag": "vml", + "Description": [ + "Malgana" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "vml" + }, + { + "Type": 1, + "SubTag": "vmm", + "Description": [ + "Mitlatongo Mixtec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "vmm" + }, + { + "Type": 1, + "SubTag": "vmp", + "Description": [ + "Soyaltepec Mazatec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "vmp" + }, + { + "Type": 1, + "SubTag": "vmq", + "Description": [ + "Soyaltepec Mixtec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "vmq" + }, + { + "Type": 1, + "SubTag": "vmr", + "Description": [ + "Marenje" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "vmr" + }, + { + "Type": 1, + "SubTag": "vms", + "Description": [ + "Moksela" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "vms" + }, + { + "Type": 1, + "SubTag": "vmu", + "Description": [ + "Muluridyi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "vmu" + }, + { + "Type": 1, + "SubTag": "vmv", + "Description": [ + "Valley Maidu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "vmv" + }, + { + "Type": 1, + "SubTag": "vmw", + "Description": [ + "Makhuwa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "vmw" + }, + { + "Type": 1, + "SubTag": "vmx", + "Description": [ + "Tamazola Mixtec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "vmx" + }, + { + "Type": 1, + "SubTag": "vmy", + "Description": [ + "Ayautla Mazatec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "vmy" + }, + { + "Type": 1, + "SubTag": "vmz", + "Description": [ + "Mazatl\u00E1n Mazatec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "vmz" + }, + { + "Type": 1, + "SubTag": "vnk", + "Description": [ + "Vano", + "Lovono" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "vnk" + }, + { + "Type": 1, + "SubTag": "vnm", + "Description": [ + "Vinmavis", + "Neve\u0027ei" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "vnm" + }, + { + "Type": 1, + "SubTag": "vnp", + "Description": [ + "Vunapu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "vnp" + }, + { + "Type": 1, + "SubTag": "vor", + "Description": [ + "Voro" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "vor" + }, + { + "Type": 1, + "SubTag": "vot", + "Description": [ + "Votic" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "vot" + }, + { + "Type": 1, + "SubTag": "vra", + "Description": [ + "Vera\u0027a" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "vra" + }, + { + "Type": 1, + "SubTag": "vro", + "Description": [ + "V\u00F5ro" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "et", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "vro" + }, + { + "Type": 1, + "SubTag": "vrs", + "Description": [ + "Varisi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "vrs" + }, + { + "Type": 1, + "SubTag": "vrt", + "Description": [ + "Burmbar", + "Banam Bay" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "vrt" + }, + { + "Type": 1, + "SubTag": "vsi", + "Description": [ + "Moldova Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "vsi" + }, + { + "Type": 1, + "SubTag": "vsl", + "Description": [ + "Venezuelan Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "vsl" + }, + { + "Type": 1, + "SubTag": "vsn", + "Description": [ + "Vedic Sanskrit" + ], + "Added": "2024-03-04", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "sa", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "vsn" + }, + { + "Type": 1, + "SubTag": "vsv", + "Description": [ + "Valencian Sign Language", + "Llengua de signes valenciana" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "vsv" + }, + { + "Type": 1, + "SubTag": "vto", + "Description": [ + "Vitou" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "vto" + }, + { + "Type": 1, + "SubTag": "vum", + "Description": [ + "Vumbu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "vum" + }, + { + "Type": 1, + "SubTag": "vun", + "Description": [ + "Vunjo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "vun" + }, + { + "Type": 1, + "SubTag": "vut", + "Description": [ + "Vute" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "vut" + }, + { + "Type": 1, + "SubTag": "vwa", + "Description": [ + "Awa (China)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "vwa" + }, + { + "Type": 1, + "SubTag": "waa", + "Description": [ + "Walla Walla" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "waa" + }, + { + "Type": 1, + "SubTag": "wab", + "Description": [ + "Wab" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wab" + }, + { + "Type": 1, + "SubTag": "wac", + "Description": [ + "Wasco-Wishram" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wac" + }, + { + "Type": 1, + "SubTag": "wad", + "Description": [ + "Wamesa", + "Wondama" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wad" + }, + { + "Type": 1, + "SubTag": "wae", + "Description": [ + "Walser" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wae" + }, + { + "Type": 1, + "SubTag": "waf", + "Description": [ + "Wakon\u00E1" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "waf" + }, + { + "Type": 1, + "SubTag": "wag", + "Description": [ + "Wa\u0027ema" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wag" + }, + { + "Type": 1, + "SubTag": "wah", + "Description": [ + "Watubela" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wah" + }, + { + "Type": 1, + "SubTag": "wai", + "Description": [ + "Wares" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wai" + }, + { + "Type": 1, + "SubTag": "waj", + "Description": [ + "Waffa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "waj" + }, + { + "Type": 1, + "SubTag": "wak", + "Description": [ + "Wakashan languages" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wak" + }, + { + "Type": 1, + "SubTag": "wal", + "Description": [ + "Wolaytta", + "Wolaitta" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wal" + }, + { + "Type": 1, + "SubTag": "wam", + "Description": [ + "Wampanoag" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wam" + }, + { + "Type": 1, + "SubTag": "wan", + "Description": [ + "Wan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wan" + }, + { + "Type": 1, + "SubTag": "wao", + "Description": [ + "Wappo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wao" + }, + { + "Type": 1, + "SubTag": "wap", + "Description": [ + "Wapishana" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wap" + }, + { + "Type": 1, + "SubTag": "waq", + "Description": [ + "Wagiman" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "waq" + }, + { + "Type": 1, + "SubTag": "war", + "Description": [ + "Waray (Philippines)" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "war" + }, + { + "Type": 1, + "SubTag": "was", + "Description": [ + "Washo" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "was" + }, + { + "Type": 1, + "SubTag": "wat", + "Description": [ + "Kaninuwa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wat" + }, + { + "Type": 1, + "SubTag": "wau", + "Description": [ + "Waur\u00E1" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wau" + }, + { + "Type": 1, + "SubTag": "wav", + "Description": [ + "Waka" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wav" + }, + { + "Type": 1, + "SubTag": "waw", + "Description": [ + "Waiwai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "waw" + }, + { + "Type": 1, + "SubTag": "wax", + "Description": [ + "Watam", + "Marangis" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wax" + }, + { + "Type": 1, + "SubTag": "way", + "Description": [ + "Wayana" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "way" + }, + { + "Type": 1, + "SubTag": "waz", + "Description": [ + "Wampur" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "waz" + }, + { + "Type": 1, + "SubTag": "wba", + "Description": [ + "Warao" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wba" + }, + { + "Type": 1, + "SubTag": "wbb", + "Description": [ + "Wabo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wbb" + }, + { + "Type": 1, + "SubTag": "wbe", + "Description": [ + "Waritai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wbe" + }, + { + "Type": 1, + "SubTag": "wbf", + "Description": [ + "Wara" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [ + "see also pnl" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wbf" + }, + { + "Type": 1, + "SubTag": "wbh", + "Description": [ + "Wanda" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wbh" + }, + { + "Type": 1, + "SubTag": "wbi", + "Description": [ + "Vwanji" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wbi" + }, + { + "Type": 1, + "SubTag": "wbj", + "Description": [ + "Alagwa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wbj" + }, + { + "Type": 1, + "SubTag": "wbk", + "Description": [ + "Waigali" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wbk" + }, + { + "Type": 1, + "SubTag": "wbl", + "Description": [ + "Wakhi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wbl" + }, + { + "Type": 1, + "SubTag": "wbm", + "Description": [ + "Wa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wbm" + }, + { + "Type": 1, + "SubTag": "wbp", + "Description": [ + "Warlpiri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wbp" + }, + { + "Type": 1, + "SubTag": "wbq", + "Description": [ + "Waddar" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wbq" + }, + { + "Type": 1, + "SubTag": "wbr", + "Description": [ + "Wagdi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "raj", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wbr" + }, + { + "Type": 1, + "SubTag": "wbs", + "Description": [ + "West Bengal Sign Language" + ], + "Added": "2017-02-23", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wbs" + }, + { + "Type": 1, + "SubTag": "wbt", + "Description": [ + "Warnman" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wbt" + }, + { + "Type": 1, + "SubTag": "wbv", + "Description": [ + "Wajarri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wbv" + }, + { + "Type": 1, + "SubTag": "wbw", + "Description": [ + "Woi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wbw" + }, + { + "Type": 1, + "SubTag": "wca", + "Description": [ + "Yanom\u00E1mi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wca" + }, + { + "Type": 1, + "SubTag": "wci", + "Description": [ + "Waci Gbe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wci" + }, + { + "Type": 1, + "SubTag": "wdd", + "Description": [ + "Wandji" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wdd" + }, + { + "Type": 1, + "SubTag": "wdg", + "Description": [ + "Wadaginam" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wdg" + }, + { + "Type": 1, + "SubTag": "wdj", + "Description": [ + "Wadjiginy" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wdj" + }, + { + "Type": 1, + "SubTag": "wdk", + "Description": [ + "Wadikali" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wdk" + }, + { + "Type": 1, + "SubTag": "wdt", + "Description": [ + "Wendat" + ], + "Added": "2022-02-25", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wdt" + }, + { + "Type": 1, + "SubTag": "wdu", + "Description": [ + "Wadjigu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wdu" + }, + { + "Type": 1, + "SubTag": "wdy", + "Description": [ + "Wadjabangayi" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wdy" + }, + { + "Type": 1, + "SubTag": "wea", + "Description": [ + "Wewaw" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wea" + }, + { + "Type": 1, + "SubTag": "wec", + "Description": [ + "W\u00E8 Western" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wec" + }, + { + "Type": 1, + "SubTag": "wed", + "Description": [ + "Wedau" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wed" + }, + { + "Type": 1, + "SubTag": "weg", + "Description": [ + "Wergaia" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "weg" + }, + { + "Type": 1, + "SubTag": "weh", + "Description": [ + "Weh" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "weh" + }, + { + "Type": 1, + "SubTag": "wei", + "Description": [ + "Kiunum" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wei" + }, + { + "Type": 1, + "SubTag": "wem", + "Description": [ + "Weme Gbe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wem" + }, + { + "Type": 1, + "SubTag": "wen", + "Description": [ + "Sorbian languages" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wen" + }, + { + "Type": 1, + "SubTag": "weo", + "Description": [ + "Wemale" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "weo" + }, + { + "Type": 1, + "SubTag": "wep", + "Description": [ + "Westphalien" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wep" + }, + { + "Type": 1, + "SubTag": "wer", + "Description": [ + "Weri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wer" + }, + { + "Type": 1, + "SubTag": "wes", + "Description": [ + "Cameroon Pidgin" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wes" + }, + { + "Type": 1, + "SubTag": "wet", + "Description": [ + "Perai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wet" + }, + { + "Type": 1, + "SubTag": "weu", + "Description": [ + "Rawngtu Chin" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "weu" + }, + { + "Type": 1, + "SubTag": "wew", + "Description": [ + "Wejewa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wew" + }, + { + "Type": 1, + "SubTag": "wfg", + "Description": [ + "Yafi", + "Zorop" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wfg" + }, + { + "Type": 1, + "SubTag": "wga", + "Description": [ + "Wagaya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wga" + }, + { + "Type": 1, + "SubTag": "wgb", + "Description": [ + "Wagawaga" + ], + "Added": "2010-03-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wgb" + }, + { + "Type": 1, + "SubTag": "wgg", + "Description": [ + "Wangkangurru", + "Wangganguru" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wgg" + }, + { + "Type": 1, + "SubTag": "wgi", + "Description": [ + "Wahgi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wgi" + }, + { + "Type": 1, + "SubTag": "wgo", + "Description": [ + "Waigeo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wgo" + }, + { + "Type": 1, + "SubTag": "wgu", + "Description": [ + "Wirangu" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wgu" + }, + { + "Type": 1, + "SubTag": "wgw", + "Description": [ + "Wagawaga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2010-03-11", + "Comments": [ + "see wgb, ylb" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wgw" + }, + { + "Type": 1, + "SubTag": "wgy", + "Description": [ + "Warrgamay" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wgy" + }, + { + "Type": 1, + "SubTag": "wha", + "Description": [ + "Sou Upaa", + "Manusela" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wha" + }, + { + "Type": 1, + "SubTag": "whg", + "Description": [ + "North Wahgi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "whg" + }, + { + "Type": 1, + "SubTag": "whk", + "Description": [ + "Wahau Kenyah" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "whk" + }, + { + "Type": 1, + "SubTag": "whu", + "Description": [ + "Wahau Kayan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "whu" + }, + { + "Type": 1, + "SubTag": "wib", + "Description": [ + "Southern Toussian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wib" + }, + { + "Type": 1, + "SubTag": "wic", + "Description": [ + "Wichita" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wic" + }, + { + "Type": 1, + "SubTag": "wie", + "Description": [ + "Wik-Epa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wie" + }, + { + "Type": 1, + "SubTag": "wif", + "Description": [ + "Wik-Keyangan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wif" + }, + { + "Type": 1, + "SubTag": "wig", + "Description": [ + "Wik Ngathan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wig" + }, + { + "Type": 1, + "SubTag": "wih", + "Description": [ + "Wik-Me\u0027anha" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wih" + }, + { + "Type": 1, + "SubTag": "wii", + "Description": [ + "Minidien" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wii" + }, + { + "Type": 1, + "SubTag": "wij", + "Description": [ + "Wik-Iiyanh" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wij" + }, + { + "Type": 1, + "SubTag": "wik", + "Description": [ + "Wikalkan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wik" + }, + { + "Type": 1, + "SubTag": "wil", + "Description": [ + "Wilawila" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wil" + }, + { + "Type": 1, + "SubTag": "wim", + "Description": [ + "Wik-Mungkan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wim" + }, + { + "Type": 1, + "SubTag": "win", + "Description": [ + "Ho-Chunk" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "win" + }, + { + "Type": 1, + "SubTag": "wir", + "Description": [ + "Wiraf\u00E9d" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wir" + }, + { + "Type": 1, + "SubTag": "wit", + "Description": [ + "Wintu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2013-09-10", + "Comments": [ + "see nol, pwi, wnw" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wit" + }, + { + "Type": 1, + "SubTag": "wiu", + "Description": [ + "Wiru" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wiu" + }, + { + "Type": 1, + "SubTag": "wiv", + "Description": [ + "Vitu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wiv" + }, + { + "Type": 1, + "SubTag": "wiw", + "Description": [ + "Wirangu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2012-08-12", + "Comments": [ + "see nwo, wgu" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wiw" + }, + { + "Type": 1, + "SubTag": "wiy", + "Description": [ + "Wiyot" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wiy" + }, + { + "Type": 1, + "SubTag": "wja", + "Description": [ + "Waja" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wja" + }, + { + "Type": 1, + "SubTag": "wji", + "Description": [ + "Warji" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wji" + }, + { + "Type": 1, + "SubTag": "wka", + "Description": [ + "Kw\u0027adza" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wka" + }, + { + "Type": 1, + "SubTag": "wkb", + "Description": [ + "Kumbaran" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wkb" + }, + { + "Type": 1, + "SubTag": "wkd", + "Description": [ + "Wakde", + "Mo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wkd" + }, + { + "Type": 1, + "SubTag": "wkl", + "Description": [ + "Kalanadi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wkl" + }, + { + "Type": 1, + "SubTag": "wkr", + "Description": [ + "Keerray-Woorroong" + ], + "Added": "2019-04-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wkr" + }, + { + "Type": 1, + "SubTag": "wku", + "Description": [ + "Kunduvadi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wku" + }, + { + "Type": 1, + "SubTag": "wkw", + "Description": [ + "Wakawaka" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wkw" + }, + { + "Type": 1, + "SubTag": "wky", + "Description": [ + "Wangkayutyuru" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wky" + }, + { + "Type": 1, + "SubTag": "wla", + "Description": [ + "Walio" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wla" + }, + { + "Type": 1, + "SubTag": "wlc", + "Description": [ + "Mwali Comorian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wlc" + }, + { + "Type": 1, + "SubTag": "wle", + "Description": [ + "Wolane" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wle" + }, + { + "Type": 1, + "SubTag": "wlg", + "Description": [ + "Kunbarlang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wlg" + }, + { + "Type": 1, + "SubTag": "wlh", + "Description": [ + "Welaun" + ], + "Added": "2020-03-28", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wlh" + }, + { + "Type": 1, + "SubTag": "wli", + "Description": [ + "Waioli" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wli" + }, + { + "Type": 1, + "SubTag": "wlk", + "Description": [ + "Wailaki" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wlk" + }, + { + "Type": 1, + "SubTag": "wll", + "Description": [ + "Wali (Sudan)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wll" + }, + { + "Type": 1, + "SubTag": "wlm", + "Description": [ + "Middle Welsh" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wlm" + }, + { + "Type": 1, + "SubTag": "wlo", + "Description": [ + "Wolio" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wlo" + }, + { + "Type": 1, + "SubTag": "wlr", + "Description": [ + "Wailapa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wlr" + }, + { + "Type": 1, + "SubTag": "wls", + "Description": [ + "Wallisian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wls" + }, + { + "Type": 1, + "SubTag": "wlu", + "Description": [ + "Wuliwuli" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wlu" + }, + { + "Type": 1, + "SubTag": "wlv", + "Description": [ + "Wich\u00ED Lhamt\u00E9s Vejoz" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wlv" + }, + { + "Type": 1, + "SubTag": "wlw", + "Description": [ + "Walak" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wlw" + }, + { + "Type": 1, + "SubTag": "wlx", + "Description": [ + "Wali (Ghana)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wlx" + }, + { + "Type": 1, + "SubTag": "wly", + "Description": [ + "Waling" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wly" + }, + { + "Type": 1, + "SubTag": "wma", + "Description": [ + "Mawa (Nigeria)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wma" + }, + { + "Type": 1, + "SubTag": "wmb", + "Description": [ + "Wambaya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wmb" + }, + { + "Type": 1, + "SubTag": "wmc", + "Description": [ + "Wamas" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wmc" + }, + { + "Type": 1, + "SubTag": "wmd", + "Description": [ + "Mamaind\u00E9" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wmd" + }, + { + "Type": 1, + "SubTag": "wme", + "Description": [ + "Wambule" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wme" + }, + { + "Type": 1, + "SubTag": "wmg", + "Description": [ + "Western Minyag" + ], + "Added": "2021-02-20", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wmg" + }, + { + "Type": 1, + "SubTag": "wmh", + "Description": [ + "Waima\u0027a" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wmh" + }, + { + "Type": 1, + "SubTag": "wmi", + "Description": [ + "Wamin" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wmi" + }, + { + "Type": 1, + "SubTag": "wmm", + "Description": [ + "Maiwa (Indonesia)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wmm" + }, + { + "Type": 1, + "SubTag": "wmn", + "Description": [ + "Waamwang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wmn" + }, + { + "Type": 1, + "SubTag": "wmo", + "Description": [ + "Wom (Papua New Guinea)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wmo" + }, + { + "Type": 1, + "SubTag": "wms", + "Description": [ + "Wambon" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wms" + }, + { + "Type": 1, + "SubTag": "wmt", + "Description": [ + "Walmajarri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wmt" + }, + { + "Type": 1, + "SubTag": "wmw", + "Description": [ + "Mwani" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wmw" + }, + { + "Type": 1, + "SubTag": "wmx", + "Description": [ + "Womo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wmx" + }, + { + "Type": 1, + "SubTag": "wnb", + "Description": [ + "Mokati" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wnb" + }, + { + "Type": 1, + "SubTag": "wnc", + "Description": [ + "Wantoat" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wnc" + }, + { + "Type": 1, + "SubTag": "wnd", + "Description": [ + "Wandarang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wnd" + }, + { + "Type": 1, + "SubTag": "wne", + "Description": [ + "Waneci" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wne" + }, + { + "Type": 1, + "SubTag": "wng", + "Description": [ + "Wanggom" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wng" + }, + { + "Type": 1, + "SubTag": "wni", + "Description": [ + "Ndzwani Comorian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wni" + }, + { + "Type": 1, + "SubTag": "wnk", + "Description": [ + "Wanukaka" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wnk" + }, + { + "Type": 1, + "SubTag": "wnm", + "Description": [ + "Wanggamala" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wnm" + }, + { + "Type": 1, + "SubTag": "wnn", + "Description": [ + "Wunumara" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wnn" + }, + { + "Type": 1, + "SubTag": "wno", + "Description": [ + "Wano" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wno" + }, + { + "Type": 1, + "SubTag": "wnp", + "Description": [ + "Wanap" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wnp" + }, + { + "Type": 1, + "SubTag": "wnu", + "Description": [ + "Usan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wnu" + }, + { + "Type": 1, + "SubTag": "wnw", + "Description": [ + "Wintu" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wnw" + }, + { + "Type": 1, + "SubTag": "wny", + "Description": [ + "Wanyi", + "Waanyi" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wny" + }, + { + "Type": 1, + "SubTag": "woa", + "Description": [ + "Kuwema", + "Tyaraity" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "woa" + }, + { + "Type": 1, + "SubTag": "wob", + "Description": [ + "W\u00E8 Northern" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wob" + }, + { + "Type": 1, + "SubTag": "woc", + "Description": [ + "Wogeo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "woc" + }, + { + "Type": 1, + "SubTag": "wod", + "Description": [ + "Wolani" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wod" + }, + { + "Type": 1, + "SubTag": "woe", + "Description": [ + "Woleaian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "woe" + }, + { + "Type": 1, + "SubTag": "wof", + "Description": [ + "Gambian Wolof" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wof" + }, + { + "Type": 1, + "SubTag": "wog", + "Description": [ + "Wogamusin" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wog" + }, + { + "Type": 1, + "SubTag": "woi", + "Description": [ + "Kamang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "woi" + }, + { + "Type": 1, + "SubTag": "wok", + "Description": [ + "Longto" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wok" + }, + { + "Type": 1, + "SubTag": "wom", + "Description": [ + "Wom (Nigeria)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wom" + }, + { + "Type": 1, + "SubTag": "won", + "Description": [ + "Wongo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "won" + }, + { + "Type": 1, + "SubTag": "woo", + "Description": [ + "Manombai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "woo" + }, + { + "Type": 1, + "SubTag": "wor", + "Description": [ + "Woria" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wor" + }, + { + "Type": 1, + "SubTag": "wos", + "Description": [ + "Hanga Hundi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wos" + }, + { + "Type": 1, + "SubTag": "wow", + "Description": [ + "Wawonii" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wow" + }, + { + "Type": 1, + "SubTag": "woy", + "Description": [ + "Weyto" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "woy" + }, + { + "Type": 1, + "SubTag": "wpc", + "Description": [ + "Maco" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wpc" + }, + { + "Type": 1, + "SubTag": "wra", + "Description": [ + "Warapu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2021-02-20", + "Comments": [ + "see bpe, suo, uni" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wra" + }, + { + "Type": 1, + "SubTag": "wrb", + "Description": [ + "Waluwarra", + "Warluwara" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wrb" + }, + { + "Type": 1, + "SubTag": "wrd", + "Description": [ + "Warduji" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2022-02-25", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wrd" + }, + { + "Type": 1, + "SubTag": "wrg", + "Description": [ + "Warungu", + "Gudjal" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wrg" + }, + { + "Type": 1, + "SubTag": "wrh", + "Description": [ + "Wiradjuri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wrh" + }, + { + "Type": 1, + "SubTag": "wri", + "Description": [ + "Wariyangga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wri" + }, + { + "Type": 1, + "SubTag": "wrk", + "Description": [ + "Garrwa" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wrk" + }, + { + "Type": 1, + "SubTag": "wrl", + "Description": [ + "Warlmanpa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wrl" + }, + { + "Type": 1, + "SubTag": "wrm", + "Description": [ + "Warumungu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wrm" + }, + { + "Type": 1, + "SubTag": "wrn", + "Description": [ + "Warnang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wrn" + }, + { + "Type": 1, + "SubTag": "wro", + "Description": [ + "Worrorra" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wro" + }, + { + "Type": 1, + "SubTag": "wrp", + "Description": [ + "Waropen" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wrp" + }, + { + "Type": 1, + "SubTag": "wrr", + "Description": [ + "Wardaman" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wrr" + }, + { + "Type": 1, + "SubTag": "wrs", + "Description": [ + "Waris" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wrs" + }, + { + "Type": 1, + "SubTag": "wru", + "Description": [ + "Waru" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wru" + }, + { + "Type": 1, + "SubTag": "wrv", + "Description": [ + "Waruna" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wrv" + }, + { + "Type": 1, + "SubTag": "wrw", + "Description": [ + "Gugu Warra" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wrw" + }, + { + "Type": 1, + "SubTag": "wrx", + "Description": [ + "Wae Rana" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wrx" + }, + { + "Type": 1, + "SubTag": "wry", + "Description": [ + "Merwari" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "mwr", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wry" + }, + { + "Type": 1, + "SubTag": "wrz", + "Description": [ + "Waray (Australia)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wrz" + }, + { + "Type": 1, + "SubTag": "wsa", + "Description": [ + "Warembori" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wsa" + }, + { + "Type": 1, + "SubTag": "wsg", + "Description": [ + "Adilabad Gondi" + ], + "Added": "2016-05-30", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "gon", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wsg" + }, + { + "Type": 1, + "SubTag": "wsi", + "Description": [ + "Wusi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wsi" + }, + { + "Type": 1, + "SubTag": "wsk", + "Description": [ + "Waskia" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wsk" + }, + { + "Type": 1, + "SubTag": "wsr", + "Description": [ + "Owenia" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wsr" + }, + { + "Type": 1, + "SubTag": "wss", + "Description": [ + "Wasa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wss" + }, + { + "Type": 1, + "SubTag": "wsu", + "Description": [ + "Wasu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wsu" + }, + { + "Type": 1, + "SubTag": "wsv", + "Description": [ + "Wotapuri-Katarqalai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wsv" + }, + { + "Type": 1, + "SubTag": "wtb", + "Description": [ + "Matambwe" + ], + "Added": "2023-03-17", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wtb" + }, + { + "Type": 1, + "SubTag": "wtf", + "Description": [ + "Watiwa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wtf" + }, + { + "Type": 1, + "SubTag": "wth", + "Description": [ + "Wathawurrung" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wth" + }, + { + "Type": 1, + "SubTag": "wti", + "Description": [ + "Berta" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wti" + }, + { + "Type": 1, + "SubTag": "wtk", + "Description": [ + "Watakataui" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wtk" + }, + { + "Type": 1, + "SubTag": "wtm", + "Description": [ + "Mewati" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wtm" + }, + { + "Type": 1, + "SubTag": "wtw", + "Description": [ + "Wotu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wtw" + }, + { + "Type": 1, + "SubTag": "wua", + "Description": [ + "Wikngenchera" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wua" + }, + { + "Type": 1, + "SubTag": "wub", + "Description": [ + "Wunambal" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wub" + }, + { + "Type": 1, + "SubTag": "wud", + "Description": [ + "Wudu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wud" + }, + { + "Type": 1, + "SubTag": "wuh", + "Description": [ + "Wutunhua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wuh" + }, + { + "Type": 1, + "SubTag": "wul", + "Description": [ + "Silimo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wul" + }, + { + "Type": 1, + "SubTag": "wum", + "Description": [ + "Wumbvu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wum" + }, + { + "Type": 1, + "SubTag": "wun", + "Description": [ + "Bungu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wun" + }, + { + "Type": 1, + "SubTag": "wur", + "Description": [ + "Wurrugu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wur" + }, + { + "Type": 1, + "SubTag": "wut", + "Description": [ + "Wutung" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wut" + }, + { + "Type": 1, + "SubTag": "wuu", + "Description": [ + "Wu Chinese" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zh", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wuu" + }, + { + "Type": 1, + "SubTag": "wuv", + "Description": [ + "Wuvulu-Aua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wuv" + }, + { + "Type": 1, + "SubTag": "wux", + "Description": [ + "Wulna" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wux" + }, + { + "Type": 1, + "SubTag": "wuy", + "Description": [ + "Wauyai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wuy" + }, + { + "Type": 1, + "SubTag": "wwa", + "Description": [ + "Waama" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wwa" + }, + { + "Type": 1, + "SubTag": "wwb", + "Description": [ + "Wakabunga" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wwb" + }, + { + "Type": 1, + "SubTag": "wwo", + "Description": [ + "Wetamut", + "Dorig" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wwo" + }, + { + "Type": 1, + "SubTag": "wwr", + "Description": [ + "Warrwa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wwr" + }, + { + "Type": 1, + "SubTag": "www", + "Description": [ + "Wawa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "www" + }, + { + "Type": 1, + "SubTag": "wxa", + "Description": [ + "Waxianghua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wxa" + }, + { + "Type": 1, + "SubTag": "wxw", + "Description": [ + "Wardandi" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wxw" + }, + { + "Type": 1, + "SubTag": "wya", + "Description": [ + "Wyandot" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2022-02-25", + "Comments": [ + "see wdt, wyn" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wya" + }, + { + "Type": 1, + "SubTag": "wyb", + "Description": [ + "Wangaaybuwan-Ngiyambaa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wyb" + }, + { + "Type": 1, + "SubTag": "wyi", + "Description": [ + "Woiwurrung" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wyi" + }, + { + "Type": 1, + "SubTag": "wym", + "Description": [ + "Wymysorys" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wym" + }, + { + "Type": 1, + "SubTag": "wyn", + "Description": [ + "Wyandot" + ], + "Added": "2022-02-25", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wyn" + }, + { + "Type": 1, + "SubTag": "wyr", + "Description": [ + "Wayor\u00F3" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wyr" + }, + { + "Type": 1, + "SubTag": "wyy", + "Description": [ + "Western Fijian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "wyy" + }, + { + "Type": 1, + "SubTag": "xaa", + "Description": [ + "Andalusian Arabic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xaa" + }, + { + "Type": 1, + "SubTag": "xab", + "Description": [ + "Sambe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xab" + }, + { + "Type": 1, + "SubTag": "xac", + "Description": [ + "Kachari" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xac" + }, + { + "Type": 1, + "SubTag": "xad", + "Description": [ + "Adai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xad" + }, + { + "Type": 1, + "SubTag": "xae", + "Description": [ + "Aequian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xae" + }, + { + "Type": 1, + "SubTag": "xag", + "Description": [ + "Aghwan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xag" + }, + { + "Type": 1, + "SubTag": "xai", + "Description": [ + "Kaimb\u00E9" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xai" + }, + { + "Type": 1, + "SubTag": "xaj", + "Description": [ + "Ararandew\u00E1ra" + ], + "Added": "2014-02-28", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xaj" + }, + { + "Type": 1, + "SubTag": "xak", + "Description": [ + "M\u00E1ku" + ], + "Added": "2016-05-30", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xak" + }, + { + "Type": 1, + "SubTag": "xal", + "Description": [ + "Kalmyk", + "Oirat" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xal" + }, + { + "Type": 1, + "SubTag": "xam", + "Description": [ + "\u01C0Xam" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xam" + }, + { + "Type": 1, + "SubTag": "xan", + "Description": [ + "Xamtanga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xan" + }, + { + "Type": 1, + "SubTag": "xao", + "Description": [ + "Khao" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xao" + }, + { + "Type": 1, + "SubTag": "xap", + "Description": [ + "Apalachee" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xap" + }, + { + "Type": 1, + "SubTag": "xaq", + "Description": [ + "Aquitanian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xaq" + }, + { + "Type": 1, + "SubTag": "xar", + "Description": [ + "Karami" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xar" + }, + { + "Type": 1, + "SubTag": "xas", + "Description": [ + "Kamas" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xas" + }, + { + "Type": 1, + "SubTag": "xat", + "Description": [ + "Katawixi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xat" + }, + { + "Type": 1, + "SubTag": "xau", + "Description": [ + "Kauwera" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xau" + }, + { + "Type": 1, + "SubTag": "xav", + "Description": [ + "Xav\u00E1nte" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xav" + }, + { + "Type": 1, + "SubTag": "xaw", + "Description": [ + "Kawaiisu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xaw" + }, + { + "Type": 1, + "SubTag": "xay", + "Description": [ + "Kayan Mahakam" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xay" + }, + { + "Type": 1, + "SubTag": "xba", + "Description": [ + "Kamba (Brazil)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2016-05-30", + "Comments": [], + "Prefix": [], + "PreferredValue": "cax", + "Tag": "", + "TagAny": "xba" + }, + { + "Type": 1, + "SubTag": "xbb", + "Description": [ + "Lower Burdekin" + ], + "Added": "2010-03-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xbb" + }, + { + "Type": 1, + "SubTag": "xbc", + "Description": [ + "Bactrian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xbc" + }, + { + "Type": 1, + "SubTag": "xbd", + "Description": [ + "Bindal" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xbd" + }, + { + "Type": 1, + "SubTag": "xbe", + "Description": [ + "Bigambal" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xbe" + }, + { + "Type": 1, + "SubTag": "xbg", + "Description": [ + "Bunganditj" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xbg" + }, + { + "Type": 1, + "SubTag": "xbi", + "Description": [ + "Kombio" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xbi" + }, + { + "Type": 1, + "SubTag": "xbj", + "Description": [ + "Birrpayi" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xbj" + }, + { + "Type": 1, + "SubTag": "xbm", + "Description": [ + "Middle Breton" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xbm" + }, + { + "Type": 1, + "SubTag": "xbn", + "Description": [ + "Kenaboi" + ], + "Added": "2010-03-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xbn" + }, + { + "Type": 1, + "SubTag": "xbo", + "Description": [ + "Bolgarian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xbo" + }, + { + "Type": 1, + "SubTag": "xbp", + "Description": [ + "Bibbulman" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xbp" + }, + { + "Type": 1, + "SubTag": "xbr", + "Description": [ + "Kambera" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xbr" + }, + { + "Type": 1, + "SubTag": "xbw", + "Description": [ + "Kambiw\u00E1" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xbw" + }, + { + "Type": 1, + "SubTag": "xbx", + "Description": [ + "Kabix\u00ED" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2016-05-30", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xbx" + }, + { + "Type": 1, + "SubTag": "xby", + "Description": [ + "Batjala", + "Batyala" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xby" + }, + { + "Type": 1, + "SubTag": "xcb", + "Description": [ + "Cumbric" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xcb" + }, + { + "Type": 1, + "SubTag": "xcc", + "Description": [ + "Camunic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xcc" + }, + { + "Type": 1, + "SubTag": "xce", + "Description": [ + "Celtiberian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xce" + }, + { + "Type": 1, + "SubTag": "xcg", + "Description": [ + "Cisalpine Gaulish" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xcg" + }, + { + "Type": 1, + "SubTag": "xch", + "Description": [ + "Chemakum", + "Chimakum" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xch" + }, + { + "Type": 1, + "SubTag": "xcl", + "Description": [ + "Classical Armenian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xcl" + }, + { + "Type": 1, + "SubTag": "xcm", + "Description": [ + "Comecrudo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xcm" + }, + { + "Type": 1, + "SubTag": "xcn", + "Description": [ + "Cotoname" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xcn" + }, + { + "Type": 1, + "SubTag": "xco", + "Description": [ + "Chorasmian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xco" + }, + { + "Type": 1, + "SubTag": "xcr", + "Description": [ + "Carian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xcr" + }, + { + "Type": 1, + "SubTag": "xct", + "Description": [ + "Classical Tibetan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xct" + }, + { + "Type": 1, + "SubTag": "xcu", + "Description": [ + "Curonian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xcu" + }, + { + "Type": 1, + "SubTag": "xcv", + "Description": [ + "Chuvantsy" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xcv" + }, + { + "Type": 1, + "SubTag": "xcw", + "Description": [ + "Coahuilteco" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xcw" + }, + { + "Type": 1, + "SubTag": "xcy", + "Description": [ + "Cayuse" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xcy" + }, + { + "Type": 1, + "SubTag": "xda", + "Description": [ + "Darkinyung" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xda" + }, + { + "Type": 1, + "SubTag": "xdc", + "Description": [ + "Dacian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xdc" + }, + { + "Type": 1, + "SubTag": "xdk", + "Description": [ + "Dharuk" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xdk" + }, + { + "Type": 1, + "SubTag": "xdm", + "Description": [ + "Edomite" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xdm" + }, + { + "Type": 1, + "SubTag": "xdo", + "Description": [ + "Kwandu" + ], + "Added": "2017-02-23", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xdo" + }, + { + "Type": 1, + "SubTag": "xdq", + "Description": [ + "Kaitag" + ], + "Added": "2022-02-25", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xdq" + }, + { + "Type": 1, + "SubTag": "xdy", + "Description": [ + "Malayic Dayak" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xdy" + }, + { + "Type": 1, + "SubTag": "xeb", + "Description": [ + "Eblan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xeb" + }, + { + "Type": 1, + "SubTag": "xed", + "Description": [ + "Hdi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xed" + }, + { + "Type": 1, + "SubTag": "xeg", + "Description": [ + "\u01C1Xegwi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xeg" + }, + { + "Type": 1, + "SubTag": "xel", + "Description": [ + "Kelo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xel" + }, + { + "Type": 1, + "SubTag": "xem", + "Description": [ + "Kembayan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xem" + }, + { + "Type": 1, + "SubTag": "xep", + "Description": [ + "Epi-Olmec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xep" + }, + { + "Type": 1, + "SubTag": "xer", + "Description": [ + "Xer\u00E9nte" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xer" + }, + { + "Type": 1, + "SubTag": "xes", + "Description": [ + "Kesawai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xes" + }, + { + "Type": 1, + "SubTag": "xet", + "Description": [ + "Xet\u00E1" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xet" + }, + { + "Type": 1, + "SubTag": "xeu", + "Description": [ + "Keoru-Ahia" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xeu" + }, + { + "Type": 1, + "SubTag": "xfa", + "Description": [ + "Faliscan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xfa" + }, + { + "Type": 1, + "SubTag": "xga", + "Description": [ + "Galatian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xga" + }, + { + "Type": 1, + "SubTag": "xgb", + "Description": [ + "Gbin" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xgb" + }, + { + "Type": 1, + "SubTag": "xgd", + "Description": [ + "Gudang" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xgd" + }, + { + "Type": 1, + "SubTag": "xgf", + "Description": [ + "Gabrielino-Fernande\u00F1o" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xgf" + }, + { + "Type": 1, + "SubTag": "xgg", + "Description": [ + "Goreng" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xgg" + }, + { + "Type": 1, + "SubTag": "xgi", + "Description": [ + "Garingbal" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xgi" + }, + { + "Type": 1, + "SubTag": "xgl", + "Description": [ + "Galindan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xgl" + }, + { + "Type": 1, + "SubTag": "xgm", + "Description": [ + "Dharumbal", + "Guwinmal" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xgm" + }, + { + "Type": 1, + "SubTag": "xgn", + "Description": [ + "Mongolian languages" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xgn" + }, + { + "Type": 1, + "SubTag": "xgr", + "Description": [ + "Garza" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xgr" + }, + { + "Type": 1, + "SubTag": "xgu", + "Description": [ + "Unggumi" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xgu" + }, + { + "Type": 1, + "SubTag": "xgw", + "Description": [ + "Guwa" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xgw" + }, + { + "Type": 1, + "SubTag": "xha", + "Description": [ + "Harami" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xha" + }, + { + "Type": 1, + "SubTag": "xhc", + "Description": [ + "Hunnic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xhc" + }, + { + "Type": 1, + "SubTag": "xhd", + "Description": [ + "Hadrami" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xhd" + }, + { + "Type": 1, + "SubTag": "xhe", + "Description": [ + "Khetrani" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "lah", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xhe" + }, + { + "Type": 1, + "SubTag": "xhm", + "Description": [ + "Middle Khmer (1400 to 1850 CE)" + ], + "Added": "2022-02-25", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xhm" + }, + { + "Type": 1, + "SubTag": "xhr", + "Description": [ + "Hernican" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xhr" + }, + { + "Type": 1, + "SubTag": "xht", + "Description": [ + "Hattic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xht" + }, + { + "Type": 1, + "SubTag": "xhu", + "Description": [ + "Hurrian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xhu" + }, + { + "Type": 1, + "SubTag": "xhv", + "Description": [ + "Khua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xhv" + }, + { + "Type": 1, + "SubTag": "xia", + "Description": [ + "Xiandao" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2013-09-10", + "Comments": [], + "Prefix": [], + "PreferredValue": "acn", + "Tag": "", + "TagAny": "xia" + }, + { + "Type": 1, + "SubTag": "xib", + "Description": [ + "Iberian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xib" + }, + { + "Type": 1, + "SubTag": "xii", + "Description": [ + "Xiri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xii" + }, + { + "Type": 1, + "SubTag": "xil", + "Description": [ + "Illyrian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xil" + }, + { + "Type": 1, + "SubTag": "xin", + "Description": [ + "Xinca" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xin" + }, + { + "Type": 1, + "SubTag": "xip", + "Description": [ + "Xipin\u00E1wa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2016-05-30", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xip" + }, + { + "Type": 1, + "SubTag": "xir", + "Description": [ + "Xiri\u00E2na" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xir" + }, + { + "Type": 1, + "SubTag": "xis", + "Description": [ + "Kisan" + ], + "Added": "2014-02-28", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xis" + }, + { + "Type": 1, + "SubTag": "xiv", + "Description": [ + "Indus Valley Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xiv" + }, + { + "Type": 1, + "SubTag": "xiy", + "Description": [ + "Xipaya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xiy" + }, + { + "Type": 1, + "SubTag": "xjb", + "Description": [ + "Minjungbal" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xjb" + }, + { + "Type": 1, + "SubTag": "xjt", + "Description": [ + "Jaitmatang" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xjt" + }, + { + "Type": 1, + "SubTag": "xka", + "Description": [ + "Kalkoti" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xka" + }, + { + "Type": 1, + "SubTag": "xkb", + "Description": [ + "Northern Nago" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xkb" + }, + { + "Type": 1, + "SubTag": "xkc", + "Description": [ + "Kho\u0027ini" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xkc" + }, + { + "Type": 1, + "SubTag": "xkd", + "Description": [ + "Mendalam Kayan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xkd" + }, + { + "Type": 1, + "SubTag": "xke", + "Description": [ + "Kereho" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xke" + }, + { + "Type": 1, + "SubTag": "xkf", + "Description": [ + "Khengkha" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xkf" + }, + { + "Type": 1, + "SubTag": "xkg", + "Description": [ + "Kagoro" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xkg" + }, + { + "Type": 1, + "SubTag": "xkh", + "Description": [ + "Karahawyana" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2016-05-30", + "Comments": [], + "Prefix": [], + "PreferredValue": "waw", + "Tag": "", + "TagAny": "xkh" + }, + { + "Type": 1, + "SubTag": "xki", + "Description": [ + "Kenyan Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xki" + }, + { + "Type": 1, + "SubTag": "xkj", + "Description": [ + "Kajali" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xkj" + }, + { + "Type": 1, + "SubTag": "xkk", + "Description": [ + "Kachok", + "Kaco\u0027" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xkk" + }, + { + "Type": 1, + "SubTag": "xkl", + "Description": [ + "Mainstream Kenyah" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xkl" + }, + { + "Type": 1, + "SubTag": "xkn", + "Description": [ + "Kayan River Kayan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xkn" + }, + { + "Type": 1, + "SubTag": "xko", + "Description": [ + "Kiorr" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xko" + }, + { + "Type": 1, + "SubTag": "xkp", + "Description": [ + "Kabatei" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xkp" + }, + { + "Type": 1, + "SubTag": "xkq", + "Description": [ + "Koroni" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xkq" + }, + { + "Type": 1, + "SubTag": "xkr", + "Description": [ + "Xakriab\u00E1" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xkr" + }, + { + "Type": 1, + "SubTag": "xks", + "Description": [ + "Kumbewaha" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xks" + }, + { + "Type": 1, + "SubTag": "xkt", + "Description": [ + "Kantosi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xkt" + }, + { + "Type": 1, + "SubTag": "xku", + "Description": [ + "Kaamba" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xku" + }, + { + "Type": 1, + "SubTag": "xkv", + "Description": [ + "Kgalagadi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xkv" + }, + { + "Type": 1, + "SubTag": "xkw", + "Description": [ + "Kembra" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xkw" + }, + { + "Type": 1, + "SubTag": "xkx", + "Description": [ + "Karore" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xkx" + }, + { + "Type": 1, + "SubTag": "xky", + "Description": [ + "Uma\u0027 Lasan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xky" + }, + { + "Type": 1, + "SubTag": "xkz", + "Description": [ + "Kurtokha" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xkz" + }, + { + "Type": 1, + "SubTag": "xla", + "Description": [ + "Kamula" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xla" + }, + { + "Type": 1, + "SubTag": "xlb", + "Description": [ + "Loup B" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xlb" + }, + { + "Type": 1, + "SubTag": "xlc", + "Description": [ + "Lycian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xlc" + }, + { + "Type": 1, + "SubTag": "xld", + "Description": [ + "Lydian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xld" + }, + { + "Type": 1, + "SubTag": "xle", + "Description": [ + "Lemnian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xle" + }, + { + "Type": 1, + "SubTag": "xlg", + "Description": [ + "Ligurian (Ancient)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xlg" + }, + { + "Type": 1, + "SubTag": "xli", + "Description": [ + "Liburnian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xli" + }, + { + "Type": 1, + "SubTag": "xln", + "Description": [ + "Alanic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xln" + }, + { + "Type": 1, + "SubTag": "xlo", + "Description": [ + "Loup A" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xlo" + }, + { + "Type": 1, + "SubTag": "xlp", + "Description": [ + "Lepontic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xlp" + }, + { + "Type": 1, + "SubTag": "xls", + "Description": [ + "Lusitanian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xls" + }, + { + "Type": 1, + "SubTag": "xlu", + "Description": [ + "Cuneiform Luwian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xlu" + }, + { + "Type": 1, + "SubTag": "xly", + "Description": [ + "Elymian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xly" + }, + { + "Type": 1, + "SubTag": "xma", + "Description": [ + "Mushungulu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xma" + }, + { + "Type": 1, + "SubTag": "xmb", + "Description": [ + "Mbonga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xmb" + }, + { + "Type": 1, + "SubTag": "xmc", + "Description": [ + "Makhuwa-Marrevone" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xmc" + }, + { + "Type": 1, + "SubTag": "xmd", + "Description": [ + "Mbudum" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xmd" + }, + { + "Type": 1, + "SubTag": "xme", + "Description": [ + "Median" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xme" + }, + { + "Type": 1, + "SubTag": "xmf", + "Description": [ + "Mingrelian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xmf" + }, + { + "Type": 1, + "SubTag": "xmg", + "Description": [ + "Mengaka" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xmg" + }, + { + "Type": 1, + "SubTag": "xmh", + "Description": [ + "Kugu-Muminh" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xmh" + }, + { + "Type": 1, + "SubTag": "xmj", + "Description": [ + "Majera" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xmj" + }, + { + "Type": 1, + "SubTag": "xmk", + "Description": [ + "Ancient Macedonian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xmk" + }, + { + "Type": 1, + "SubTag": "xml", + "Description": [ + "Malaysian Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xml" + }, + { + "Type": 1, + "SubTag": "xmm", + "Description": [ + "Manado Malay" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ms", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xmm" + }, + { + "Type": 1, + "SubTag": "xmn", + "Description": [ + "Manichaean Middle Persian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xmn" + }, + { + "Type": 1, + "SubTag": "xmo", + "Description": [ + "Morerebi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xmo" + }, + { + "Type": 1, + "SubTag": "xmp", + "Description": [ + "Kuku-Mu\u0027inh" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xmp" + }, + { + "Type": 1, + "SubTag": "xmq", + "Description": [ + "Kuku-Mangk" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xmq" + }, + { + "Type": 1, + "SubTag": "xmr", + "Description": [ + "Meroitic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xmr" + }, + { + "Type": 1, + "SubTag": "xms", + "Description": [ + "Moroccan Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xms" + }, + { + "Type": 1, + "SubTag": "xmt", + "Description": [ + "Matbat" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xmt" + }, + { + "Type": 1, + "SubTag": "xmu", + "Description": [ + "Kamu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xmu" + }, + { + "Type": 1, + "SubTag": "xmv", + "Description": [ + "Antankarana Malagasy", + "Tankarana Malagasy" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "mg", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xmv" + }, + { + "Type": 1, + "SubTag": "xmw", + "Description": [ + "Tsimihety Malagasy" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "mg", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xmw" + }, + { + "Type": 1, + "SubTag": "xmx", + "Description": [ + "Salawati", + "Maden" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xmx" + }, + { + "Type": 1, + "SubTag": "xmy", + "Description": [ + "Mayaguduna" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xmy" + }, + { + "Type": 1, + "SubTag": "xmz", + "Description": [ + "Mori Bawah" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xmz" + }, + { + "Type": 1, + "SubTag": "xna", + "Description": [ + "Ancient North Arabian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xna" + }, + { + "Type": 1, + "SubTag": "xnb", + "Description": [ + "Kanakanabu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xnb" + }, + { + "Type": 1, + "SubTag": "xnd", + "Description": [ + "Na-Dene languages" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xnd" + }, + { + "Type": 1, + "SubTag": "xng", + "Description": [ + "Middle Mongolian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xng" + }, + { + "Type": 1, + "SubTag": "xnh", + "Description": [ + "Kuanhua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xnh" + }, + { + "Type": 1, + "SubTag": "xni", + "Description": [ + "Ngarigu" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xni" + }, + { + "Type": 1, + "SubTag": "xnj", + "Description": [ + "Ngoni (Tanzania)" + ], + "Added": "2021-02-20", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xnj" + }, + { + "Type": 1, + "SubTag": "xnk", + "Description": [ + "Nganakarti" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xnk" + }, + { + "Type": 1, + "SubTag": "xnm", + "Description": [ + "Ngumbarl" + ], + "Added": "2020-03-28", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xnm" + }, + { + "Type": 1, + "SubTag": "xnn", + "Description": [ + "Northern Kankanay" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xnn" + }, + { + "Type": 1, + "SubTag": "xno", + "Description": [ + "Anglo-Norman" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xno" + }, + { + "Type": 1, + "SubTag": "xnq", + "Description": [ + "Ngoni (Mozambique)" + ], + "Added": "2021-02-20", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xnq" + }, + { + "Type": 1, + "SubTag": "xnr", + "Description": [ + "Kangri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "doi", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xnr" + }, + { + "Type": 1, + "SubTag": "xns", + "Description": [ + "Kanashi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xns" + }, + { + "Type": 1, + "SubTag": "xnt", + "Description": [ + "Narragansett" + ], + "Added": "2010-03-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xnt" + }, + { + "Type": 1, + "SubTag": "xnu", + "Description": [ + "Nukunul" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xnu" + }, + { + "Type": 1, + "SubTag": "xny", + "Description": [ + "Nyiyaparli" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xny" + }, + { + "Type": 1, + "SubTag": "xnz", + "Description": [ + "Kenzi", + "Mattoki" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xnz" + }, + { + "Type": 1, + "SubTag": "xoc", + "Description": [ + "O\u0027chi\u0027chi\u0027" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xoc" + }, + { + "Type": 1, + "SubTag": "xod", + "Description": [ + "Kokoda" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xod" + }, + { + "Type": 1, + "SubTag": "xog", + "Description": [ + "Soga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xog" + }, + { + "Type": 1, + "SubTag": "xoi", + "Description": [ + "Kominimung" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xoi" + }, + { + "Type": 1, + "SubTag": "xok", + "Description": [ + "Xokleng" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xok" + }, + { + "Type": 1, + "SubTag": "xom", + "Description": [ + "Komo (Sudan)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xom" + }, + { + "Type": 1, + "SubTag": "xon", + "Description": [ + "Konkomba" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xon" + }, + { + "Type": 1, + "SubTag": "xoo", + "Description": [ + "Xukur\u00FA" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xoo" + }, + { + "Type": 1, + "SubTag": "xop", + "Description": [ + "Kopar" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xop" + }, + { + "Type": 1, + "SubTag": "xor", + "Description": [ + "Korubo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xor" + }, + { + "Type": 1, + "SubTag": "xow", + "Description": [ + "Kowaki" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xow" + }, + { + "Type": 1, + "SubTag": "xpa", + "Description": [ + "Pirriya" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xpa" + }, + { + "Type": 1, + "SubTag": "xpb", + "Description": [ + "Northeastern Tasmanian", + "Pyemmairrener" + ], + "Added": "2020-03-28", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xpb" + }, + { + "Type": 1, + "SubTag": "xpc", + "Description": [ + "Pecheneg" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xpc" + }, + { + "Type": 1, + "SubTag": "xpd", + "Description": [ + "Oyster Bay Tasmanian" + ], + "Added": "2020-03-28", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xpd" + }, + { + "Type": 1, + "SubTag": "xpe", + "Description": [ + "Liberia Kpelle" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "kpe", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xpe" + }, + { + "Type": 1, + "SubTag": "xpf", + "Description": [ + "Southeast Tasmanian", + "Nuenonne" + ], + "Added": "2020-03-28", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xpf" + }, + { + "Type": 1, + "SubTag": "xpg", + "Description": [ + "Phrygian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xpg" + }, + { + "Type": 1, + "SubTag": "xph", + "Description": [ + "North Midlands Tasmanian", + "Tyerrenoterpanner" + ], + "Added": "2020-03-28", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xph" + }, + { + "Type": 1, + "SubTag": "xpi", + "Description": [ + "Pictish" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xpi" + }, + { + "Type": 1, + "SubTag": "xpj", + "Description": [ + "Mpalitjanh" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xpj" + }, + { + "Type": 1, + "SubTag": "xpk", + "Description": [ + "Kulina Pano" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xpk" + }, + { + "Type": 1, + "SubTag": "xpl", + "Description": [ + "Port Sorell Tasmanian" + ], + "Added": "2020-03-28", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xpl" + }, + { + "Type": 1, + "SubTag": "xpm", + "Description": [ + "Pumpokol" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xpm" + }, + { + "Type": 1, + "SubTag": "xpn", + "Description": [ + "Kapinaw\u00E1" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xpn" + }, + { + "Type": 1, + "SubTag": "xpo", + "Description": [ + "Pochutec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xpo" + }, + { + "Type": 1, + "SubTag": "xpp", + "Description": [ + "Puyo-Paekche" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xpp" + }, + { + "Type": 1, + "SubTag": "xpq", + "Description": [ + "Mohegan-Pequot" + ], + "Added": "2010-03-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xpq" + }, + { + "Type": 1, + "SubTag": "xpr", + "Description": [ + "Parthian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xpr" + }, + { + "Type": 1, + "SubTag": "xps", + "Description": [ + "Pisidian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xps" + }, + { + "Type": 1, + "SubTag": "xpt", + "Description": [ + "Punthamara" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xpt" + }, + { + "Type": 1, + "SubTag": "xpu", + "Description": [ + "Punic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xpu" + }, + { + "Type": 1, + "SubTag": "xpv", + "Description": [ + "Northern Tasmanian", + "Tommeginne" + ], + "Added": "2020-03-28", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xpv" + }, + { + "Type": 1, + "SubTag": "xpw", + "Description": [ + "Northwestern Tasmanian", + "Peerapper" + ], + "Added": "2020-03-28", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xpw" + }, + { + "Type": 1, + "SubTag": "xpx", + "Description": [ + "Southwestern Tasmanian", + "Toogee" + ], + "Added": "2020-03-28", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xpx" + }, + { + "Type": 1, + "SubTag": "xpy", + "Description": [ + "Puyo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xpy" + }, + { + "Type": 1, + "SubTag": "xpz", + "Description": [ + "Bruny Island Tasmanian" + ], + "Added": "2020-03-28", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xpz" + }, + { + "Type": 1, + "SubTag": "xqa", + "Description": [ + "Karakhanid" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xqa" + }, + { + "Type": 1, + "SubTag": "xqt", + "Description": [ + "Qatabanian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xqt" + }, + { + "Type": 1, + "SubTag": "xra", + "Description": [ + "Krah\u00F4" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xra" + }, + { + "Type": 1, + "SubTag": "xrb", + "Description": [ + "Eastern Karaboro" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xrb" + }, + { + "Type": 1, + "SubTag": "xrd", + "Description": [ + "Gundungurra" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xrd" + }, + { + "Type": 1, + "SubTag": "xre", + "Description": [ + "Kreye" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xre" + }, + { + "Type": 1, + "SubTag": "xrg", + "Description": [ + "Minang" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xrg" + }, + { + "Type": 1, + "SubTag": "xri", + "Description": [ + "Krikati-Timbira" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xri" + }, + { + "Type": 1, + "SubTag": "xrm", + "Description": [ + "Armazic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xrm" + }, + { + "Type": 1, + "SubTag": "xrn", + "Description": [ + "Arin" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xrn" + }, + { + "Type": 1, + "SubTag": "xrq", + "Description": [ + "Karranga" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2020-03-28", + "Comments": [], + "Prefix": [], + "PreferredValue": "dmw", + "Tag": "", + "TagAny": "xrq" + }, + { + "Type": 1, + "SubTag": "xrr", + "Description": [ + "Raetic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xrr" + }, + { + "Type": 1, + "SubTag": "xrt", + "Description": [ + "Aranama-Tamique" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xrt" + }, + { + "Type": 1, + "SubTag": "xru", + "Description": [ + "Marriammu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xru" + }, + { + "Type": 1, + "SubTag": "xrw", + "Description": [ + "Karawa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xrw" + }, + { + "Type": 1, + "SubTag": "xsa", + "Description": [ + "Sabaean" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xsa" + }, + { + "Type": 1, + "SubTag": "xsb", + "Description": [ + "Sambal" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xsb" + }, + { + "Type": 1, + "SubTag": "xsc", + "Description": [ + "Scythian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xsc" + }, + { + "Type": 1, + "SubTag": "xsd", + "Description": [ + "Sidetic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xsd" + }, + { + "Type": 1, + "SubTag": "xse", + "Description": [ + "Sempan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xse" + }, + { + "Type": 1, + "SubTag": "xsh", + "Description": [ + "Shamang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xsh" + }, + { + "Type": 1, + "SubTag": "xsi", + "Description": [ + "Sio" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xsi" + }, + { + "Type": 1, + "SubTag": "xsj", + "Description": [ + "Subi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [ + "see also suj" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xsj" + }, + { + "Type": 1, + "SubTag": "xsl", + "Description": [ + "South Slavey" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "den", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xsl" + }, + { + "Type": 1, + "SubTag": "xsm", + "Description": [ + "Kasem" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xsm" + }, + { + "Type": 1, + "SubTag": "xsn", + "Description": [ + "Sanga (Nigeria)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xsn" + }, + { + "Type": 1, + "SubTag": "xso", + "Description": [ + "Solano" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xso" + }, + { + "Type": 1, + "SubTag": "xsp", + "Description": [ + "Silopi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xsp" + }, + { + "Type": 1, + "SubTag": "xsq", + "Description": [ + "Makhuwa-Saka" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xsq" + }, + { + "Type": 1, + "SubTag": "xsr", + "Description": [ + "Sherpa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xsr" + }, + { + "Type": 1, + "SubTag": "xss", + "Description": [ + "Assan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2023-03-17", + "Comments": [], + "Prefix": [], + "PreferredValue": "zko", + "Tag": "", + "TagAny": "xss" + }, + { + "Type": 1, + "SubTag": "xsu", + "Description": [ + "Sanum\u00E1" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xsu" + }, + { + "Type": 1, + "SubTag": "xsv", + "Description": [ + "Sudovian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xsv" + }, + { + "Type": 1, + "SubTag": "xsy", + "Description": [ + "Saisiyat" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xsy" + }, + { + "Type": 1, + "SubTag": "xta", + "Description": [ + "Alcozauca Mixtec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xta" + }, + { + "Type": 1, + "SubTag": "xtb", + "Description": [ + "Chazumba Mixtec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xtb" + }, + { + "Type": 1, + "SubTag": "xtc", + "Description": [ + "Katcha-Kadugli-Miri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xtc" + }, + { + "Type": 1, + "SubTag": "xtd", + "Description": [ + "Diuxi-Tilantongo Mixtec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xtd" + }, + { + "Type": 1, + "SubTag": "xte", + "Description": [ + "Ketengban" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xte" + }, + { + "Type": 1, + "SubTag": "xtg", + "Description": [ + "Transalpine Gaulish" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xtg" + }, + { + "Type": 1, + "SubTag": "xth", + "Description": [ + "Yitha Yitha" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xth" + }, + { + "Type": 1, + "SubTag": "xti", + "Description": [ + "Sinicahua Mixtec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xti" + }, + { + "Type": 1, + "SubTag": "xtj", + "Description": [ + "San Juan Teita Mixtec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xtj" + }, + { + "Type": 1, + "SubTag": "xtl", + "Description": [ + "Tijaltepec Mixtec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xtl" + }, + { + "Type": 1, + "SubTag": "xtm", + "Description": [ + "Magdalena Pe\u00F1asco Mixtec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xtm" + }, + { + "Type": 1, + "SubTag": "xtn", + "Description": [ + "Northern Tlaxiaco Mixtec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xtn" + }, + { + "Type": 1, + "SubTag": "xto", + "Description": [ + "Tokharian A" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xto" + }, + { + "Type": 1, + "SubTag": "xtp", + "Description": [ + "San Miguel Piedras Mixtec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xtp" + }, + { + "Type": 1, + "SubTag": "xtq", + "Description": [ + "Tumshuqese" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xtq" + }, + { + "Type": 1, + "SubTag": "xtr", + "Description": [ + "Early Tripuri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xtr" + }, + { + "Type": 1, + "SubTag": "xts", + "Description": [ + "Sindihui Mixtec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xts" + }, + { + "Type": 1, + "SubTag": "xtt", + "Description": [ + "Tacahua Mixtec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xtt" + }, + { + "Type": 1, + "SubTag": "xtu", + "Description": [ + "Cuyamecalco Mixtec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xtu" + }, + { + "Type": 1, + "SubTag": "xtv", + "Description": [ + "Thawa" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xtv" + }, + { + "Type": 1, + "SubTag": "xtw", + "Description": [ + "Tawand\u00EA" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xtw" + }, + { + "Type": 1, + "SubTag": "xty", + "Description": [ + "Yoloxochitl Mixtec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xty" + }, + { + "Type": 1, + "SubTag": "xtz", + "Description": [ + "Tasmanian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2020-03-28", + "Comments": [ + "see xpb, xpd, xpf, xph, xpl, xpv, xpw, xpx, xpz" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xtz" + }, + { + "Type": 1, + "SubTag": "xua", + "Description": [ + "Alu Kurumba" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xua" + }, + { + "Type": 1, + "SubTag": "xub", + "Description": [ + "Betta Kurumba" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xub" + }, + { + "Type": 1, + "SubTag": "xud", + "Description": [ + "Umiida" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xud" + }, + { + "Type": 1, + "SubTag": "xug", + "Description": [ + "Kunigami" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xug" + }, + { + "Type": 1, + "SubTag": "xuj", + "Description": [ + "Jennu Kurumba" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xuj" + }, + { + "Type": 1, + "SubTag": "xul", + "Description": [ + "Ngunawal", + "Nunukul" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xul" + }, + { + "Type": 1, + "SubTag": "xum", + "Description": [ + "Umbrian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xum" + }, + { + "Type": 1, + "SubTag": "xun", + "Description": [ + "Unggaranggu" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xun" + }, + { + "Type": 1, + "SubTag": "xuo", + "Description": [ + "Kuo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xuo" + }, + { + "Type": 1, + "SubTag": "xup", + "Description": [ + "Upper Umpqua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xup" + }, + { + "Type": 1, + "SubTag": "xur", + "Description": [ + "Urartian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xur" + }, + { + "Type": 1, + "SubTag": "xut", + "Description": [ + "Kuthant" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xut" + }, + { + "Type": 1, + "SubTag": "xuu", + "Description": [ + "Kxoe", + "Khwedam" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xuu" + }, + { + "Type": 1, + "SubTag": "xve", + "Description": [ + "Venetic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xve" + }, + { + "Type": 1, + "SubTag": "xvi", + "Description": [ + "Kamviri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xvi" + }, + { + "Type": 1, + "SubTag": "xvn", + "Description": [ + "Vandalic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xvn" + }, + { + "Type": 1, + "SubTag": "xvo", + "Description": [ + "Volscian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xvo" + }, + { + "Type": 1, + "SubTag": "xvs", + "Description": [ + "Vestinian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xvs" + }, + { + "Type": 1, + "SubTag": "xwa", + "Description": [ + "Kwaza" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xwa" + }, + { + "Type": 1, + "SubTag": "xwc", + "Description": [ + "Woccon" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xwc" + }, + { + "Type": 1, + "SubTag": "xwd", + "Description": [ + "Wadi Wadi" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xwd" + }, + { + "Type": 1, + "SubTag": "xwe", + "Description": [ + "Xwela Gbe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xwe" + }, + { + "Type": 1, + "SubTag": "xwg", + "Description": [ + "Kwegu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xwg" + }, + { + "Type": 1, + "SubTag": "xwj", + "Description": [ + "Wajuk" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xwj" + }, + { + "Type": 1, + "SubTag": "xwk", + "Description": [ + "Wangkumara" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xwk" + }, + { + "Type": 1, + "SubTag": "xwl", + "Description": [ + "Western Xwla Gbe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xwl" + }, + { + "Type": 1, + "SubTag": "xwo", + "Description": [ + "Written Oirat" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xwo" + }, + { + "Type": 1, + "SubTag": "xwr", + "Description": [ + "Kwerba Mamberamo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xwr" + }, + { + "Type": 1, + "SubTag": "xwt", + "Description": [ + "Wotjobaluk" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xwt" + }, + { + "Type": 1, + "SubTag": "xww", + "Description": [ + "Wemba Wemba" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xww" + }, + { + "Type": 1, + "SubTag": "xxb", + "Description": [ + "Boro (Ghana)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xxb" + }, + { + "Type": 1, + "SubTag": "xxk", + "Description": [ + "Ke\u0027o" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xxk" + }, + { + "Type": 1, + "SubTag": "xxm", + "Description": [ + "Minkin" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xxm" + }, + { + "Type": 1, + "SubTag": "xxr", + "Description": [ + "Korop\u00F3" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xxr" + }, + { + "Type": 1, + "SubTag": "xxt", + "Description": [ + "Tambora" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xxt" + }, + { + "Type": 1, + "SubTag": "xya", + "Description": [ + "Yaygir" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xya" + }, + { + "Type": 1, + "SubTag": "xyb", + "Description": [ + "Yandjibara" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xyb" + }, + { + "Type": 1, + "SubTag": "xyj", + "Description": [ + "Mayi-Yapi" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xyj" + }, + { + "Type": 1, + "SubTag": "xyk", + "Description": [ + "Mayi-Kulan" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xyk" + }, + { + "Type": 1, + "SubTag": "xyl", + "Description": [ + "Yalakalore" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xyl" + }, + { + "Type": 1, + "SubTag": "xyt", + "Description": [ + "Mayi-Thakurti" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xyt" + }, + { + "Type": 1, + "SubTag": "xyy", + "Description": [ + "Yorta Yorta" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xyy" + }, + { + "Type": 1, + "SubTag": "xzh", + "Description": [ + "Zhang-Zhung" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xzh" + }, + { + "Type": 1, + "SubTag": "xzm", + "Description": [ + "Zemgalian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xzm" + }, + { + "Type": 1, + "SubTag": "xzp", + "Description": [ + "Ancient Zapotec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "xzp" + }, + { + "Type": 1, + "SubTag": "yaa", + "Description": [ + "Yaminahua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yaa" + }, + { + "Type": 1, + "SubTag": "yab", + "Description": [ + "Yuhup" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yab" + }, + { + "Type": 1, + "SubTag": "yac", + "Description": [ + "Pass Valley Yali" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yac" + }, + { + "Type": 1, + "SubTag": "yad", + "Description": [ + "Yagua" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yad" + }, + { + "Type": 1, + "SubTag": "yae", + "Description": [ + "Pum\u00E9" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yae" + }, + { + "Type": 1, + "SubTag": "yaf", + "Description": [ + "Yaka (Democratic Republic of Congo)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yaf" + }, + { + "Type": 1, + "SubTag": "yag", + "Description": [ + "Y\u00E1mana" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yag" + }, + { + "Type": 1, + "SubTag": "yah", + "Description": [ + "Yazgulyam" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yah" + }, + { + "Type": 1, + "SubTag": "yai", + "Description": [ + "Yagnobi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yai" + }, + { + "Type": 1, + "SubTag": "yaj", + "Description": [ + "Banda-Yangere" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yaj" + }, + { + "Type": 1, + "SubTag": "yak", + "Description": [ + "Yakama" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yak" + }, + { + "Type": 1, + "SubTag": "yal", + "Description": [ + "Yalunka" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yal" + }, + { + "Type": 1, + "SubTag": "yam", + "Description": [ + "Yamba" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yam" + }, + { + "Type": 1, + "SubTag": "yan", + "Description": [ + "Mayangna" + ], + "Added": "2010-03-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yan" + }, + { + "Type": 1, + "SubTag": "yao", + "Description": [ + "Yao" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yao" + }, + { + "Type": 1, + "SubTag": "yap", + "Description": [ + "Yapese" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yap" + }, + { + "Type": 1, + "SubTag": "yaq", + "Description": [ + "Yaqui" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yaq" + }, + { + "Type": 1, + "SubTag": "yar", + "Description": [ + "Yabarana" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yar" + }, + { + "Type": 1, + "SubTag": "yas", + "Description": [ + "Nugunu (Cameroon)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yas" + }, + { + "Type": 1, + "SubTag": "yat", + "Description": [ + "Yambeta" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yat" + }, + { + "Type": 1, + "SubTag": "yau", + "Description": [ + "Yuwana" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yau" + }, + { + "Type": 1, + "SubTag": "yav", + "Description": [ + "Yangben" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yav" + }, + { + "Type": 1, + "SubTag": "yaw", + "Description": [ + "Yawalapit\u00ED" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yaw" + }, + { + "Type": 1, + "SubTag": "yax", + "Description": [ + "Yauma" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yax" + }, + { + "Type": 1, + "SubTag": "yay", + "Description": [ + "Agwagwune" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yay" + }, + { + "Type": 1, + "SubTag": "yaz", + "Description": [ + "Lokaa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yaz" + }, + { + "Type": 1, + "SubTag": "yba", + "Description": [ + "Yala" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yba" + }, + { + "Type": 1, + "SubTag": "ybb", + "Description": [ + "Yemba" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ybb" + }, + { + "Type": 1, + "SubTag": "ybd", + "Description": [ + "Yangbye" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2012-08-12", + "Comments": [], + "Prefix": [], + "PreferredValue": "rki", + "Tag": "", + "TagAny": "ybd" + }, + { + "Type": 1, + "SubTag": "ybe", + "Description": [ + "West Yugur" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ybe" + }, + { + "Type": 1, + "SubTag": "ybh", + "Description": [ + "Yakha" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ybh" + }, + { + "Type": 1, + "SubTag": "ybi", + "Description": [ + "Yamphu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ybi" + }, + { + "Type": 1, + "SubTag": "ybj", + "Description": [ + "Hasha" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ybj" + }, + { + "Type": 1, + "SubTag": "ybk", + "Description": [ + "Bokha" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ybk" + }, + { + "Type": 1, + "SubTag": "ybl", + "Description": [ + "Yukuben" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ybl" + }, + { + "Type": 1, + "SubTag": "ybm", + "Description": [ + "Yaben" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ybm" + }, + { + "Type": 1, + "SubTag": "ybn", + "Description": [ + "Yaba\u00E2na" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ybn" + }, + { + "Type": 1, + "SubTag": "ybo", + "Description": [ + "Yabong" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ybo" + }, + { + "Type": 1, + "SubTag": "ybx", + "Description": [ + "Yawiyo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ybx" + }, + { + "Type": 1, + "SubTag": "yby", + "Description": [ + "Yaweyuha" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yby" + }, + { + "Type": 1, + "SubTag": "ych", + "Description": [ + "Chesu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ych" + }, + { + "Type": 1, + "SubTag": "ycl", + "Description": [ + "Lolopo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ycl" + }, + { + "Type": 1, + "SubTag": "ycn", + "Description": [ + "Yucuna" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ycn" + }, + { + "Type": 1, + "SubTag": "ycp", + "Description": [ + "Chepya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ycp" + }, + { + "Type": 1, + "SubTag": "ycr", + "Description": [ + "Yilan Creole" + ], + "Added": "2023-03-17", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ycr" + }, + { + "Type": 1, + "SubTag": "yda", + "Description": [ + "Yanda" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yda" + }, + { + "Type": 1, + "SubTag": "ydd", + "Description": [ + "Eastern Yiddish" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "yi", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ydd" + }, + { + "Type": 1, + "SubTag": "yde", + "Description": [ + "Yangum Dey" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yde" + }, + { + "Type": 1, + "SubTag": "ydg", + "Description": [ + "Yidgha" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ydg" + }, + { + "Type": 1, + "SubTag": "ydk", + "Description": [ + "Yoidik" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ydk" + }, + { + "Type": 1, + "SubTag": "yds", + "Description": [ + "Yiddish Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2015-02-12", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yds" + }, + { + "Type": 1, + "SubTag": "yea", + "Description": [ + "Ravula" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yea" + }, + { + "Type": 1, + "SubTag": "yec", + "Description": [ + "Yeniche" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yec" + }, + { + "Type": 1, + "SubTag": "yee", + "Description": [ + "Yimas" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yee" + }, + { + "Type": 1, + "SubTag": "yei", + "Description": [ + "Yeni" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yei" + }, + { + "Type": 1, + "SubTag": "yej", + "Description": [ + "Yevanic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yej" + }, + { + "Type": 1, + "SubTag": "yel", + "Description": [ + "Yela" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yel" + }, + { + "Type": 1, + "SubTag": "yen", + "Description": [ + "Yendang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2012-08-12", + "Comments": [ + "see ynq, yot" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yen" + }, + { + "Type": 1, + "SubTag": "yer", + "Description": [ + "Tarok" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yer" + }, + { + "Type": 1, + "SubTag": "yes", + "Description": [ + "Nyankpa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yes" + }, + { + "Type": 1, + "SubTag": "yet", + "Description": [ + "Yetfa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yet" + }, + { + "Type": 1, + "SubTag": "yeu", + "Description": [ + "Yerukula" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yeu" + }, + { + "Type": 1, + "SubTag": "yev", + "Description": [ + "Yapunda" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yev" + }, + { + "Type": 1, + "SubTag": "yey", + "Description": [ + "Yeyi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yey" + }, + { + "Type": 1, + "SubTag": "yga", + "Description": [ + "Malyangapa" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yga" + }, + { + "Type": 1, + "SubTag": "ygi", + "Description": [ + "Yiningayi" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ygi" + }, + { + "Type": 1, + "SubTag": "ygl", + "Description": [ + "Yangum Gel" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ygl" + }, + { + "Type": 1, + "SubTag": "ygm", + "Description": [ + "Yagomi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ygm" + }, + { + "Type": 1, + "SubTag": "ygp", + "Description": [ + "Gepo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ygp" + }, + { + "Type": 1, + "SubTag": "ygr", + "Description": [ + "Yagaria" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ygr" + }, + { + "Type": 1, + "SubTag": "ygs", + "Description": [ + "Yol\u014Bu Sign Language" + ], + "Added": "2014-02-28", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ygs" + }, + { + "Type": 1, + "SubTag": "ygu", + "Description": [ + "Yugul" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ygu" + }, + { + "Type": 1, + "SubTag": "ygw", + "Description": [ + "Yagwoia" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ygw" + }, + { + "Type": 1, + "SubTag": "yha", + "Description": [ + "Baha Buyang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yha" + }, + { + "Type": 1, + "SubTag": "yhd", + "Description": [ + "Judeo-Iraqi Arabic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "jrb", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yhd" + }, + { + "Type": 1, + "SubTag": "yhl", + "Description": [ + "Hlepho Phowa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yhl" + }, + { + "Type": 1, + "SubTag": "yhs", + "Description": [ + "Yan-nha\u014Bu Sign Language" + ], + "Added": "2015-04-17", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yhs" + }, + { + "Type": 1, + "SubTag": "yia", + "Description": [ + "Yinggarda" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yia" + }, + { + "Type": 1, + "SubTag": "yif", + "Description": [ + "Ache" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yif" + }, + { + "Type": 1, + "SubTag": "yig", + "Description": [ + "Wusa Nasu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yig" + }, + { + "Type": 1, + "SubTag": "yih", + "Description": [ + "Western Yiddish" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "yi", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yih" + }, + { + "Type": 1, + "SubTag": "yii", + "Description": [ + "Yidiny" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yii" + }, + { + "Type": 1, + "SubTag": "yij", + "Description": [ + "Yindjibarndi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yij" + }, + { + "Type": 1, + "SubTag": "yik", + "Description": [ + "Dongshanba Lalo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yik" + }, + { + "Type": 1, + "SubTag": "yil", + "Description": [ + "Yindjilandji" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yil" + }, + { + "Type": 1, + "SubTag": "yim", + "Description": [ + "Yimchungru Naga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yim" + }, + { + "Type": 1, + "SubTag": "yin", + "Description": [ + "Riang Lai", + "Yinchia" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yin" + }, + { + "Type": 1, + "SubTag": "yip", + "Description": [ + "Pholo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yip" + }, + { + "Type": 1, + "SubTag": "yiq", + "Description": [ + "Miqie" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yiq" + }, + { + "Type": 1, + "SubTag": "yir", + "Description": [ + "North Awyu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yir" + }, + { + "Type": 1, + "SubTag": "yis", + "Description": [ + "Yis" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yis" + }, + { + "Type": 1, + "SubTag": "yit", + "Description": [ + "Eastern Lalu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yit" + }, + { + "Type": 1, + "SubTag": "yiu", + "Description": [ + "Awu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yiu" + }, + { + "Type": 1, + "SubTag": "yiv", + "Description": [ + "Northern Nisu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yiv" + }, + { + "Type": 1, + "SubTag": "yix", + "Description": [ + "Axi Yi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yix" + }, + { + "Type": 1, + "SubTag": "yiy", + "Description": [ + "Yir Yoront" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2013-09-10", + "Comments": [ + "see yrm, yyr" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yiy" + }, + { + "Type": 1, + "SubTag": "yiz", + "Description": [ + "Azhe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yiz" + }, + { + "Type": 1, + "SubTag": "yka", + "Description": [ + "Yakan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yka" + }, + { + "Type": 1, + "SubTag": "ykg", + "Description": [ + "Northern Yukaghir" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ykg" + }, + { + "Type": 1, + "SubTag": "ykh", + "Description": [ + "Khamnigan Mongol" + ], + "Added": "2023-03-17", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ykh" + }, + { + "Type": 1, + "SubTag": "yki", + "Description": [ + "Yoke" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yki" + }, + { + "Type": 1, + "SubTag": "ykk", + "Description": [ + "Yakaikeke" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ykk" + }, + { + "Type": 1, + "SubTag": "ykl", + "Description": [ + "Khlula" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ykl" + }, + { + "Type": 1, + "SubTag": "ykm", + "Description": [ + "Kap" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ykm" + }, + { + "Type": 1, + "SubTag": "ykn", + "Description": [ + "Kua-nsi" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ykn" + }, + { + "Type": 1, + "SubTag": "yko", + "Description": [ + "Yasa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yko" + }, + { + "Type": 1, + "SubTag": "ykr", + "Description": [ + "Yekora" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ykr" + }, + { + "Type": 1, + "SubTag": "ykt", + "Description": [ + "Kathu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ykt" + }, + { + "Type": 1, + "SubTag": "yku", + "Description": [ + "Kuamasi" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yku" + }, + { + "Type": 1, + "SubTag": "yky", + "Description": [ + "Yakoma" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yky" + }, + { + "Type": 1, + "SubTag": "yla", + "Description": [ + "Yaul" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yla" + }, + { + "Type": 1, + "SubTag": "ylb", + "Description": [ + "Yaleba" + ], + "Added": "2010-03-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ylb" + }, + { + "Type": 1, + "SubTag": "yle", + "Description": [ + "Yele" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yle" + }, + { + "Type": 1, + "SubTag": "ylg", + "Description": [ + "Yelogu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ylg" + }, + { + "Type": 1, + "SubTag": "yli", + "Description": [ + "Angguruk Yali" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yli" + }, + { + "Type": 1, + "SubTag": "yll", + "Description": [ + "Yil" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yll" + }, + { + "Type": 1, + "SubTag": "ylm", + "Description": [ + "Limi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ylm" + }, + { + "Type": 1, + "SubTag": "yln", + "Description": [ + "Langnian Buyang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yln" + }, + { + "Type": 1, + "SubTag": "ylo", + "Description": [ + "Naluo Yi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ylo" + }, + { + "Type": 1, + "SubTag": "ylr", + "Description": [ + "Yalarnnga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ylr" + }, + { + "Type": 1, + "SubTag": "ylu", + "Description": [ + "Aribwaung" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ylu" + }, + { + "Type": 1, + "SubTag": "yly", + "Description": [ + "Ny\u00E2layu", + "Nyel\u00E2yu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yly" + }, + { + "Type": 1, + "SubTag": "yma", + "Description": [ + "Yamphe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2012-08-12", + "Comments": [], + "Prefix": [], + "PreferredValue": "lrr", + "Tag": "", + "TagAny": "yma" + }, + { + "Type": 1, + "SubTag": "ymb", + "Description": [ + "Yambes" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ymb" + }, + { + "Type": 1, + "SubTag": "ymc", + "Description": [ + "Southern Muji" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ymc" + }, + { + "Type": 1, + "SubTag": "ymd", + "Description": [ + "Muda" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ymd" + }, + { + "Type": 1, + "SubTag": "yme", + "Description": [ + "Yameo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yme" + }, + { + "Type": 1, + "SubTag": "ymg", + "Description": [ + "Yamongeri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ymg" + }, + { + "Type": 1, + "SubTag": "ymh", + "Description": [ + "Mili" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ymh" + }, + { + "Type": 1, + "SubTag": "ymi", + "Description": [ + "Moji" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ymi" + }, + { + "Type": 1, + "SubTag": "ymk", + "Description": [ + "Makwe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ymk" + }, + { + "Type": 1, + "SubTag": "yml", + "Description": [ + "Iamalele" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yml" + }, + { + "Type": 1, + "SubTag": "ymm", + "Description": [ + "Maay" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ymm" + }, + { + "Type": 1, + "SubTag": "ymn", + "Description": [ + "Yamna", + "Sunum" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ymn" + }, + { + "Type": 1, + "SubTag": "ymo", + "Description": [ + "Yangum Mon" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ymo" + }, + { + "Type": 1, + "SubTag": "ymp", + "Description": [ + "Yamap" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ymp" + }, + { + "Type": 1, + "SubTag": "ymq", + "Description": [ + "Qila Muji" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ymq" + }, + { + "Type": 1, + "SubTag": "ymr", + "Description": [ + "Malasar" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ymr" + }, + { + "Type": 1, + "SubTag": "yms", + "Description": [ + "Mysian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yms" + }, + { + "Type": 1, + "SubTag": "ymt", + "Description": [ + "Mator-Taygi-Karagas" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2015-02-12", + "Comments": [], + "Prefix": [], + "PreferredValue": "mtm", + "Tag": "", + "TagAny": "ymt" + }, + { + "Type": 1, + "SubTag": "ymx", + "Description": [ + "Northern Muji" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ymx" + }, + { + "Type": 1, + "SubTag": "ymz", + "Description": [ + "Muzi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ymz" + }, + { + "Type": 1, + "SubTag": "yna", + "Description": [ + "Aluo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yna" + }, + { + "Type": 1, + "SubTag": "ynb", + "Description": [ + "Yamben" + ], + "Added": "2025-02-06", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ynb" + }, + { + "Type": 1, + "SubTag": "ynd", + "Description": [ + "Yandruwandha" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ynd" + }, + { + "Type": 1, + "SubTag": "yne", + "Description": [ + "Lang\u0027e" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yne" + }, + { + "Type": 1, + "SubTag": "yng", + "Description": [ + "Yango" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yng" + }, + { + "Type": 1, + "SubTag": "ynh", + "Description": [ + "Yangho" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2015-02-12", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ynh" + }, + { + "Type": 1, + "SubTag": "ynk", + "Description": [ + "Naukan Yupik" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ynk" + }, + { + "Type": 1, + "SubTag": "ynl", + "Description": [ + "Yangulam" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ynl" + }, + { + "Type": 1, + "SubTag": "ynn", + "Description": [ + "Yana" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ynn" + }, + { + "Type": 1, + "SubTag": "yno", + "Description": [ + "Yong" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yno" + }, + { + "Type": 1, + "SubTag": "ynq", + "Description": [ + "Yendang" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ynq" + }, + { + "Type": 1, + "SubTag": "yns", + "Description": [ + "Yansi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yns" + }, + { + "Type": 1, + "SubTag": "ynu", + "Description": [ + "Yahuna" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ynu" + }, + { + "Type": 1, + "SubTag": "yob", + "Description": [ + "Yoba" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yob" + }, + { + "Type": 1, + "SubTag": "yog", + "Description": [ + "Yogad" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yog" + }, + { + "Type": 1, + "SubTag": "yoi", + "Description": [ + "Yonaguni" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yoi" + }, + { + "Type": 1, + "SubTag": "yok", + "Description": [ + "Yokuts" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yok" + }, + { + "Type": 1, + "SubTag": "yol", + "Description": [ + "Yola" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yol" + }, + { + "Type": 1, + "SubTag": "yom", + "Description": [ + "Yombe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yom" + }, + { + "Type": 1, + "SubTag": "yon", + "Description": [ + "Yongkom" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yon" + }, + { + "Type": 1, + "SubTag": "yos", + "Description": [ + "Yos" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2013-09-10", + "Comments": [], + "Prefix": [], + "PreferredValue": "zom", + "Tag": "", + "TagAny": "yos" + }, + { + "Type": 1, + "SubTag": "yot", + "Description": [ + "Yotti" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yot" + }, + { + "Type": 1, + "SubTag": "yox", + "Description": [ + "Yoron" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yox" + }, + { + "Type": 1, + "SubTag": "yoy", + "Description": [ + "Yoy" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yoy" + }, + { + "Type": 1, + "SubTag": "ypa", + "Description": [ + "Phala" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ypa" + }, + { + "Type": 1, + "SubTag": "ypb", + "Description": [ + "Labo Phowa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ypb" + }, + { + "Type": 1, + "SubTag": "ypg", + "Description": [ + "Phola" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ypg" + }, + { + "Type": 1, + "SubTag": "yph", + "Description": [ + "Phupha" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yph" + }, + { + "Type": 1, + "SubTag": "ypk", + "Description": [ + "Yupik languages" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ypk" + }, + { + "Type": 1, + "SubTag": "ypm", + "Description": [ + "Phuma" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ypm" + }, + { + "Type": 1, + "SubTag": "ypn", + "Description": [ + "Ani Phowa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ypn" + }, + { + "Type": 1, + "SubTag": "ypo", + "Description": [ + "Alo Phola" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ypo" + }, + { + "Type": 1, + "SubTag": "ypp", + "Description": [ + "Phupa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ypp" + }, + { + "Type": 1, + "SubTag": "ypz", + "Description": [ + "Phuza" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ypz" + }, + { + "Type": 1, + "SubTag": "yra", + "Description": [ + "Yerakai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yra" + }, + { + "Type": 1, + "SubTag": "yrb", + "Description": [ + "Yareba" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yrb" + }, + { + "Type": 1, + "SubTag": "yre", + "Description": [ + "Yaour\u00E9" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yre" + }, + { + "Type": 1, + "SubTag": "yri", + "Description": [ + "Yar\u00ED" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2016-05-30", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yri" + }, + { + "Type": 1, + "SubTag": "yrk", + "Description": [ + "Nenets" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yrk" + }, + { + "Type": 1, + "SubTag": "yrl", + "Description": [ + "Nhengatu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yrl" + }, + { + "Type": 1, + "SubTag": "yrm", + "Description": [ + "Yirrk-Mel" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yrm" + }, + { + "Type": 1, + "SubTag": "yrn", + "Description": [ + "Yerong" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yrn" + }, + { + "Type": 1, + "SubTag": "yro", + "Description": [ + "Yaroam\u00EB" + ], + "Added": "2016-05-30", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yro" + }, + { + "Type": 1, + "SubTag": "yrs", + "Description": [ + "Yarsun" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yrs" + }, + { + "Type": 1, + "SubTag": "yrw", + "Description": [ + "Yarawata" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yrw" + }, + { + "Type": 1, + "SubTag": "yry", + "Description": [ + "Yarluyandi" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yry" + }, + { + "Type": 1, + "SubTag": "ysc", + "Description": [ + "Yassic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ysc" + }, + { + "Type": 1, + "SubTag": "ysd", + "Description": [ + "Samatao" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ysd" + }, + { + "Type": 1, + "SubTag": "ysg", + "Description": [ + "Sonaga" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ysg" + }, + { + "Type": 1, + "SubTag": "ysl", + "Description": [ + "Yugoslavian Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ysl" + }, + { + "Type": 1, + "SubTag": "ysm", + "Description": [ + "Myanmar Sign Language" + ], + "Added": "2021-02-20", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ysm" + }, + { + "Type": 1, + "SubTag": "ysn", + "Description": [ + "Sani" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ysn" + }, + { + "Type": 1, + "SubTag": "yso", + "Description": [ + "Nisi (China)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yso" + }, + { + "Type": 1, + "SubTag": "ysp", + "Description": [ + "Southern Lolopo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ysp" + }, + { + "Type": 1, + "SubTag": "ysr", + "Description": [ + "Sirenik Yupik" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ysr" + }, + { + "Type": 1, + "SubTag": "yss", + "Description": [ + "Yessan-Mayo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yss" + }, + { + "Type": 1, + "SubTag": "ysy", + "Description": [ + "Sanie" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ysy" + }, + { + "Type": 1, + "SubTag": "yta", + "Description": [ + "Talu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yta" + }, + { + "Type": 1, + "SubTag": "ytl", + "Description": [ + "Tanglang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ytl" + }, + { + "Type": 1, + "SubTag": "ytp", + "Description": [ + "Thopho" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ytp" + }, + { + "Type": 1, + "SubTag": "ytw", + "Description": [ + "Yout Wam" + ], + "Added": "2010-03-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ytw" + }, + { + "Type": 1, + "SubTag": "yty", + "Description": [ + "Yatay" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yty" + }, + { + "Type": 1, + "SubTag": "yua", + "Description": [ + "Yucateco", + "Yucatec Maya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yua" + }, + { + "Type": 1, + "SubTag": "yub", + "Description": [ + "Yugambal" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yub" + }, + { + "Type": 1, + "SubTag": "yuc", + "Description": [ + "Yuchi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yuc" + }, + { + "Type": 1, + "SubTag": "yud", + "Description": [ + "Judeo-Tripolitanian Arabic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "jrb", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yud" + }, + { + "Type": 1, + "SubTag": "yue", + "Description": [ + "Yue Chinese", + "Cantonese" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zh", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yue" + }, + { + "Type": 1, + "SubTag": "yuf", + "Description": [ + "Havasupai-Walapai-Yavapai" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yuf" + }, + { + "Type": 1, + "SubTag": "yug", + "Description": [ + "Yug" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yug" + }, + { + "Type": 1, + "SubTag": "yui", + "Description": [ + "Yurut\u00ED" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yui" + }, + { + "Type": 1, + "SubTag": "yuj", + "Description": [ + "Karkar-Yuri" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yuj" + }, + { + "Type": 1, + "SubTag": "yuk", + "Description": [ + "Yuki" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yuk" + }, + { + "Type": 1, + "SubTag": "yul", + "Description": [ + "Yulu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yul" + }, + { + "Type": 1, + "SubTag": "yum", + "Description": [ + "Quechan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yum" + }, + { + "Type": 1, + "SubTag": "yun", + "Description": [ + "Bena (Nigeria)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yun" + }, + { + "Type": 1, + "SubTag": "yup", + "Description": [ + "Yukpa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yup" + }, + { + "Type": 1, + "SubTag": "yuq", + "Description": [ + "Yuqui" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yuq" + }, + { + "Type": 1, + "SubTag": "yur", + "Description": [ + "Yurok" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yur" + }, + { + "Type": 1, + "SubTag": "yut", + "Description": [ + "Yopno" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yut" + }, + { + "Type": 1, + "SubTag": "yuu", + "Description": [ + "Yugh" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2014-02-28", + "Comments": [], + "Prefix": [], + "PreferredValue": "yug", + "Tag": "", + "TagAny": "yuu" + }, + { + "Type": 1, + "SubTag": "yuw", + "Description": [ + "Yau (Morobe Province)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yuw" + }, + { + "Type": 1, + "SubTag": "yux", + "Description": [ + "Southern Yukaghir" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yux" + }, + { + "Type": 1, + "SubTag": "yuy", + "Description": [ + "East Yugur" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yuy" + }, + { + "Type": 1, + "SubTag": "yuz", + "Description": [ + "Yuracare" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yuz" + }, + { + "Type": 1, + "SubTag": "yva", + "Description": [ + "Yawa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yva" + }, + { + "Type": 1, + "SubTag": "yvt", + "Description": [ + "Yavitero" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yvt" + }, + { + "Type": 1, + "SubTag": "ywa", + "Description": [ + "Kalou" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ywa" + }, + { + "Type": 1, + "SubTag": "ywg", + "Description": [ + "Yinhawangka" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ywg" + }, + { + "Type": 1, + "SubTag": "ywl", + "Description": [ + "Western Lalu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ywl" + }, + { + "Type": 1, + "SubTag": "ywn", + "Description": [ + "Yawanawa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ywn" + }, + { + "Type": 1, + "SubTag": "ywq", + "Description": [ + "Wuding-Luquan Yi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ywq" + }, + { + "Type": 1, + "SubTag": "ywr", + "Description": [ + "Yawuru" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ywr" + }, + { + "Type": 1, + "SubTag": "ywt", + "Description": [ + "Xishanba Lalo", + "Central Lalo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ywt" + }, + { + "Type": 1, + "SubTag": "ywu", + "Description": [ + "Wumeng Nasu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ywu" + }, + { + "Type": 1, + "SubTag": "yww", + "Description": [ + "Yawarawarga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yww" + }, + { + "Type": 1, + "SubTag": "yxa", + "Description": [ + "Mayawali" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yxa" + }, + { + "Type": 1, + "SubTag": "yxg", + "Description": [ + "Yagara" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yxg" + }, + { + "Type": 1, + "SubTag": "yxl", + "Description": [ + "Yardliyawarra" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yxl" + }, + { + "Type": 1, + "SubTag": "yxm", + "Description": [ + "Yinwum" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yxm" + }, + { + "Type": 1, + "SubTag": "yxu", + "Description": [ + "Yuyu" + ], + "Added": "2013-09-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yxu" + }, + { + "Type": 1, + "SubTag": "yxy", + "Description": [ + "Yabula Yabula" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yxy" + }, + { + "Type": 1, + "SubTag": "yyr", + "Description": [ + "Yir Yoront" + ], + "Added": "2013-09-03", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yyr" + }, + { + "Type": 1, + "SubTag": "yyu", + "Description": [ + "Yau (Sandaun Province)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yyu" + }, + { + "Type": 1, + "SubTag": "yyz", + "Description": [ + "Ayizi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yyz" + }, + { + "Type": 1, + "SubTag": "yzg", + "Description": [ + "E\u0027ma Buyang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yzg" + }, + { + "Type": 1, + "SubTag": "yzk", + "Description": [ + "Zokhuo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "yzk" + }, + { + "Type": 1, + "SubTag": "zaa", + "Description": [ + "Sierra de Ju\u00E1rez Zapotec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zap", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zaa" + }, + { + "Type": 1, + "SubTag": "zab", + "Description": [ + "Western Tlacolula Valley Zapotec", + "San Juan Guelav\u00EDa Zapotec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zap", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zab" + }, + { + "Type": 1, + "SubTag": "zac", + "Description": [ + "Ocotl\u00E1n Zapotec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zap", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zac" + }, + { + "Type": 1, + "SubTag": "zad", + "Description": [ + "Cajonos Zapotec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zap", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zad" + }, + { + "Type": 1, + "SubTag": "zae", + "Description": [ + "Yareni Zapotec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zap", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zae" + }, + { + "Type": 1, + "SubTag": "zaf", + "Description": [ + "Ayoquesco Zapotec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zap", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zaf" + }, + { + "Type": 1, + "SubTag": "zag", + "Description": [ + "Zaghawa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zag" + }, + { + "Type": 1, + "SubTag": "zah", + "Description": [ + "Zangwal" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zah" + }, + { + "Type": 1, + "SubTag": "zai", + "Description": [ + "Isthmus Zapotec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zap", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zai" + }, + { + "Type": 1, + "SubTag": "zaj", + "Description": [ + "Zaramo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zaj" + }, + { + "Type": 1, + "SubTag": "zak", + "Description": [ + "Zanaki" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zak" + }, + { + "Type": 1, + "SubTag": "zal", + "Description": [ + "Zauzou" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zal" + }, + { + "Type": 1, + "SubTag": "zam", + "Description": [ + "Miahuatl\u00E1n Zapotec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zap", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zam" + }, + { + "Type": 1, + "SubTag": "zao", + "Description": [ + "Ozolotepec Zapotec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zap", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zao" + }, + { + "Type": 1, + "SubTag": "zap", + "Description": [ + "Zapotec" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "macrolanguage", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zap" + }, + { + "Type": 1, + "SubTag": "zaq", + "Description": [ + "Alo\u00E1pam Zapotec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zap", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zaq" + }, + { + "Type": 1, + "SubTag": "zar", + "Description": [ + "Rinc\u00F3n Zapotec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zap", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zar" + }, + { + "Type": 1, + "SubTag": "zas", + "Description": [ + "Santo Domingo Albarradas Zapotec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zap", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zas" + }, + { + "Type": 1, + "SubTag": "zat", + "Description": [ + "Tabaa Zapotec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zap", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zat" + }, + { + "Type": 1, + "SubTag": "zau", + "Description": [ + "Zangskari" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zau" + }, + { + "Type": 1, + "SubTag": "zav", + "Description": [ + "Yatzachi Zapotec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zap", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zav" + }, + { + "Type": 1, + "SubTag": "zaw", + "Description": [ + "Mitla Zapotec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zap", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zaw" + }, + { + "Type": 1, + "SubTag": "zax", + "Description": [ + "Xadani Zapotec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zap", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zax" + }, + { + "Type": 1, + "SubTag": "zay", + "Description": [ + "Zayse-Zergulla", + "Zaysete" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zay" + }, + { + "Type": 1, + "SubTag": "zaz", + "Description": [ + "Zari" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zaz" + }, + { + "Type": 1, + "SubTag": "zba", + "Description": [ + "Balaibalan" + ], + "Added": "2020-03-28", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zba" + }, + { + "Type": 1, + "SubTag": "zbc", + "Description": [ + "Central Berawan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zbc" + }, + { + "Type": 1, + "SubTag": "zbe", + "Description": [ + "East Berawan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zbe" + }, + { + "Type": 1, + "SubTag": "zbl", + "Description": [ + "Blissymbols", + "Bliss", + "Blissymbolics" + ], + "Added": "2007-08-21", + "SuppressScript": "Blis", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zbl" + }, + { + "Type": 1, + "SubTag": "zbt", + "Description": [ + "Batui" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zbt" + }, + { + "Type": 1, + "SubTag": "zbu", + "Description": [ + "Bu (Bauchi State)" + ], + "Added": "2021-02-20", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zbu" + }, + { + "Type": 1, + "SubTag": "zbw", + "Description": [ + "West Berawan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zbw" + }, + { + "Type": 1, + "SubTag": "zca", + "Description": [ + "Coatecas Altas Zapotec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zap", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zca" + }, + { + "Type": 1, + "SubTag": "zcd", + "Description": [ + "Las Delicias Zapotec" + ], + "Added": "2022-02-25", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zap", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zcd" + }, + { + "Type": 1, + "SubTag": "zch", + "Description": [ + "Central Hongshuihe Zhuang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "za", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zch" + }, + { + "Type": 1, + "SubTag": "zdj", + "Description": [ + "Ngazidja Comorian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zdj" + }, + { + "Type": 1, + "SubTag": "zea", + "Description": [ + "Zeeuws" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zea" + }, + { + "Type": 1, + "SubTag": "zeg", + "Description": [ + "Zenag" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zeg" + }, + { + "Type": 1, + "SubTag": "zeh", + "Description": [ + "Eastern Hongshuihe Zhuang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "za", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zeh" + }, + { + "Type": 1, + "SubTag": "zem", + "Description": [ + "Zeem" + ], + "Added": "2023-03-17", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zem" + }, + { + "Type": 1, + "SubTag": "zen", + "Description": [ + "Zenaga" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zen" + }, + { + "Type": 1, + "SubTag": "zga", + "Description": [ + "Kinga" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zga" + }, + { + "Type": 1, + "SubTag": "zgb", + "Description": [ + "Guibei Zhuang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "za", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zgb" + }, + { + "Type": 1, + "SubTag": "zgh", + "Description": [ + "Standard Moroccan Tamazight" + ], + "Added": "2013-01-25", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zgh" + }, + { + "Type": 1, + "SubTag": "zgm", + "Description": [ + "Minz Zhuang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "za", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zgm" + }, + { + "Type": 1, + "SubTag": "zgn", + "Description": [ + "Guibian Zhuang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "za", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zgn" + }, + { + "Type": 1, + "SubTag": "zgr", + "Description": [ + "Magori" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zgr" + }, + { + "Type": 1, + "SubTag": "zhb", + "Description": [ + "Zhaba" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zhb" + }, + { + "Type": 1, + "SubTag": "zhd", + "Description": [ + "Dai Zhuang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "za", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zhd" + }, + { + "Type": 1, + "SubTag": "zhi", + "Description": [ + "Zhire" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zhi" + }, + { + "Type": 1, + "SubTag": "zhn", + "Description": [ + "Nong Zhuang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "za", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zhn" + }, + { + "Type": 1, + "SubTag": "zhw", + "Description": [ + "Zhoa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zhw" + }, + { + "Type": 1, + "SubTag": "zhx", + "Description": [ + "Chinese (family)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zhx" + }, + { + "Type": 1, + "SubTag": "zia", + "Description": [ + "Zia" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zia" + }, + { + "Type": 1, + "SubTag": "zib", + "Description": [ + "Zimbabwe Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zib" + }, + { + "Type": 1, + "SubTag": "zik", + "Description": [ + "Zimakani" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zik" + }, + { + "Type": 1, + "SubTag": "zil", + "Description": [ + "Zialo" + ], + "Added": "2011-08-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zil" + }, + { + "Type": 1, + "SubTag": "zim", + "Description": [ + "Mesme" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zim" + }, + { + "Type": 1, + "SubTag": "zin", + "Description": [ + "Zinza" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zin" + }, + { + "Type": 1, + "SubTag": "zir", + "Description": [ + "Ziriya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2020-03-28", + "Comments": [], + "Prefix": [], + "PreferredValue": "scv", + "Tag": "", + "TagAny": "zir" + }, + { + "Type": 1, + "SubTag": "ziw", + "Description": [ + "Zigula" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ziw" + }, + { + "Type": 1, + "SubTag": "ziz", + "Description": [ + "Zizilivakan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ziz" + }, + { + "Type": 1, + "SubTag": "zka", + "Description": [ + "Kaimbulawa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zka" + }, + { + "Type": 1, + "SubTag": "zkb", + "Description": [ + "Koibal" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2023-03-17", + "Comments": [], + "Prefix": [], + "PreferredValue": "kjh", + "Tag": "", + "TagAny": "zkb" + }, + { + "Type": 1, + "SubTag": "zkd", + "Description": [ + "Kadu" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zkd" + }, + { + "Type": 1, + "SubTag": "zkg", + "Description": [ + "Koguryo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zkg" + }, + { + "Type": 1, + "SubTag": "zkh", + "Description": [ + "Khorezmian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zkh" + }, + { + "Type": 1, + "SubTag": "zkk", + "Description": [ + "Karankawa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zkk" + }, + { + "Type": 1, + "SubTag": "zkn", + "Description": [ + "Kanan" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zkn" + }, + { + "Type": 1, + "SubTag": "zko", + "Description": [ + "Kott" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zko" + }, + { + "Type": 1, + "SubTag": "zkp", + "Description": [ + "S\u00E3o Paulo Kaing\u00E1ng" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zkp" + }, + { + "Type": 1, + "SubTag": "zkr", + "Description": [ + "Zakhring" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zkr" + }, + { + "Type": 1, + "SubTag": "zkt", + "Description": [ + "Kitan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zkt" + }, + { + "Type": 1, + "SubTag": "zku", + "Description": [ + "Kaurna" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zku" + }, + { + "Type": 1, + "SubTag": "zkv", + "Description": [ + "Krevinian" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zkv" + }, + { + "Type": 1, + "SubTag": "zkz", + "Description": [ + "Khazar" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zkz" + }, + { + "Type": 1, + "SubTag": "zla", + "Description": [ + "Zula" + ], + "Added": "2021-02-20", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zla" + }, + { + "Type": 1, + "SubTag": "zle", + "Description": [ + "East Slavic languages" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zle" + }, + { + "Type": 1, + "SubTag": "zlj", + "Description": [ + "Liujiang Zhuang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "za", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zlj" + }, + { + "Type": 1, + "SubTag": "zlm", + "Description": [ + "Malay (individual language)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ms", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zlm" + }, + { + "Type": 1, + "SubTag": "zln", + "Description": [ + "Lianshan Zhuang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "za", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zln" + }, + { + "Type": 1, + "SubTag": "zlq", + "Description": [ + "Liuqian Zhuang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "za", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zlq" + }, + { + "Type": 1, + "SubTag": "zls", + "Description": [ + "South Slavic languages" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zls" + }, + { + "Type": 1, + "SubTag": "zlu", + "Description": [ + "Zul" + ], + "Added": "2023-03-17", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zlu" + }, + { + "Type": 1, + "SubTag": "zlw", + "Description": [ + "West Slavic languages" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zlw" + }, + { + "Type": 1, + "SubTag": "zma", + "Description": [ + "Manda (Australia)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zma" + }, + { + "Type": 1, + "SubTag": "zmb", + "Description": [ + "Zimba" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zmb" + }, + { + "Type": 1, + "SubTag": "zmc", + "Description": [ + "Margany" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zmc" + }, + { + "Type": 1, + "SubTag": "zmd", + "Description": [ + "Maridan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zmd" + }, + { + "Type": 1, + "SubTag": "zme", + "Description": [ + "Mangerr" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zme" + }, + { + "Type": 1, + "SubTag": "zmf", + "Description": [ + "Mfinu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zmf" + }, + { + "Type": 1, + "SubTag": "zmg", + "Description": [ + "Marti Ke" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zmg" + }, + { + "Type": 1, + "SubTag": "zmh", + "Description": [ + "Makolkol" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zmh" + }, + { + "Type": 1, + "SubTag": "zmi", + "Description": [ + "Negeri Sembilan Malay" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ms", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zmi" + }, + { + "Type": 1, + "SubTag": "zmj", + "Description": [ + "Maridjabin" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zmj" + }, + { + "Type": 1, + "SubTag": "zmk", + "Description": [ + "Mandandanyi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zmk" + }, + { + "Type": 1, + "SubTag": "zml", + "Description": [ + "Matngala" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zml" + }, + { + "Type": 1, + "SubTag": "zmm", + "Description": [ + "Marimanindji", + "Marramaninyshi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zmm" + }, + { + "Type": 1, + "SubTag": "zmn", + "Description": [ + "Mbangwe" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zmn" + }, + { + "Type": 1, + "SubTag": "zmo", + "Description": [ + "Molo" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zmo" + }, + { + "Type": 1, + "SubTag": "zmp", + "Description": [ + "Mpuono" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zmp" + }, + { + "Type": 1, + "SubTag": "zmq", + "Description": [ + "Mituku" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zmq" + }, + { + "Type": 1, + "SubTag": "zmr", + "Description": [ + "Maranunggu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zmr" + }, + { + "Type": 1, + "SubTag": "zms", + "Description": [ + "Mbesa" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zms" + }, + { + "Type": 1, + "SubTag": "zmt", + "Description": [ + "Maringarr" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zmt" + }, + { + "Type": 1, + "SubTag": "zmu", + "Description": [ + "Muruwari" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zmu" + }, + { + "Type": 1, + "SubTag": "zmv", + "Description": [ + "Mbariman-Gudhinma" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zmv" + }, + { + "Type": 1, + "SubTag": "zmw", + "Description": [ + "Mbo (Democratic Republic of Congo)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zmw" + }, + { + "Type": 1, + "SubTag": "zmx", + "Description": [ + "Bomitaba" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zmx" + }, + { + "Type": 1, + "SubTag": "zmy", + "Description": [ + "Mariyedi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zmy" + }, + { + "Type": 1, + "SubTag": "zmz", + "Description": [ + "Mbandja" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zmz" + }, + { + "Type": 1, + "SubTag": "zna", + "Description": [ + "Zan Gula" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zna" + }, + { + "Type": 1, + "SubTag": "znd", + "Description": [ + "Zande languages" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "collection", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "znd" + }, + { + "Type": 1, + "SubTag": "zne", + "Description": [ + "Zande (individual language)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zne" + }, + { + "Type": 1, + "SubTag": "zng", + "Description": [ + "Mang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zng" + }, + { + "Type": 1, + "SubTag": "znk", + "Description": [ + "Manangkari" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "znk" + }, + { + "Type": 1, + "SubTag": "zns", + "Description": [ + "Mangas" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zns" + }, + { + "Type": 1, + "SubTag": "zoc", + "Description": [ + "Copainal\u00E1 Zoque" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zoc" + }, + { + "Type": 1, + "SubTag": "zoh", + "Description": [ + "Chimalapa Zoque" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zoh" + }, + { + "Type": 1, + "SubTag": "zom", + "Description": [ + "Zou" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zom" + }, + { + "Type": 1, + "SubTag": "zoo", + "Description": [ + "Asunci\u00F3n Mixtepec Zapotec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zap", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zoo" + }, + { + "Type": 1, + "SubTag": "zoq", + "Description": [ + "Tabasco Zoque" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zoq" + }, + { + "Type": 1, + "SubTag": "zor", + "Description": [ + "Ray\u00F3n Zoque" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zor" + }, + { + "Type": 1, + "SubTag": "zos", + "Description": [ + "Francisco Le\u00F3n Zoque" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zos" + }, + { + "Type": 1, + "SubTag": "zpa", + "Description": [ + "Lachiguiri Zapotec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zap", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zpa" + }, + { + "Type": 1, + "SubTag": "zpb", + "Description": [ + "Yautepec Zapotec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zap", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zpb" + }, + { + "Type": 1, + "SubTag": "zpc", + "Description": [ + "Choapan Zapotec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zap", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zpc" + }, + { + "Type": 1, + "SubTag": "zpd", + "Description": [ + "Southeastern Ixtl\u00E1n Zapotec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zap", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zpd" + }, + { + "Type": 1, + "SubTag": "zpe", + "Description": [ + "Petapa Zapotec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zap", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zpe" + }, + { + "Type": 1, + "SubTag": "zpf", + "Description": [ + "San Pedro Quiatoni Zapotec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zap", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zpf" + }, + { + "Type": 1, + "SubTag": "zpg", + "Description": [ + "Guevea De Humboldt Zapotec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zap", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zpg" + }, + { + "Type": 1, + "SubTag": "zph", + "Description": [ + "Totomachapan Zapotec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zap", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zph" + }, + { + "Type": 1, + "SubTag": "zpi", + "Description": [ + "Santa Mar\u00EDa Quiegolani Zapotec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zap", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zpi" + }, + { + "Type": 1, + "SubTag": "zpj", + "Description": [ + "Quiavicuzas Zapotec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zap", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zpj" + }, + { + "Type": 1, + "SubTag": "zpk", + "Description": [ + "Tlacolulita Zapotec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zap", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zpk" + }, + { + "Type": 1, + "SubTag": "zpl", + "Description": [ + "Lachix\u00EDo Zapotec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zap", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zpl" + }, + { + "Type": 1, + "SubTag": "zpm", + "Description": [ + "Mixtepec Zapotec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zap", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zpm" + }, + { + "Type": 1, + "SubTag": "zpn", + "Description": [ + "Santa In\u00E9s Yatzechi Zapotec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zap", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zpn" + }, + { + "Type": 1, + "SubTag": "zpo", + "Description": [ + "Amatl\u00E1n Zapotec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zap", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zpo" + }, + { + "Type": 1, + "SubTag": "zpp", + "Description": [ + "El Alto Zapotec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zap", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zpp" + }, + { + "Type": 1, + "SubTag": "zpq", + "Description": [ + "Zoogocho Zapotec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zap", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zpq" + }, + { + "Type": 1, + "SubTag": "zpr", + "Description": [ + "Santiago Xanica Zapotec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zap", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zpr" + }, + { + "Type": 1, + "SubTag": "zps", + "Description": [ + "Coatl\u00E1n Zapotec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zap", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zps" + }, + { + "Type": 1, + "SubTag": "zpt", + "Description": [ + "San Vicente Coatl\u00E1n Zapotec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zap", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zpt" + }, + { + "Type": 1, + "SubTag": "zpu", + "Description": [ + "Yal\u00E1lag Zapotec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zap", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zpu" + }, + { + "Type": 1, + "SubTag": "zpv", + "Description": [ + "Chichicapan Zapotec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zap", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zpv" + }, + { + "Type": 1, + "SubTag": "zpw", + "Description": [ + "Zaniza Zapotec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zap", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zpw" + }, + { + "Type": 1, + "SubTag": "zpx", + "Description": [ + "San Baltazar Loxicha Zapotec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zap", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zpx" + }, + { + "Type": 1, + "SubTag": "zpy", + "Description": [ + "Mazaltepec Zapotec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zap", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zpy" + }, + { + "Type": 1, + "SubTag": "zpz", + "Description": [ + "Texmelucan Zapotec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zap", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zpz" + }, + { + "Type": 1, + "SubTag": "zqe", + "Description": [ + "Qiubei Zhuang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "za", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zqe" + }, + { + "Type": 1, + "SubTag": "zra", + "Description": [ + "Kara (Korea)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zra" + }, + { + "Type": 1, + "SubTag": "zrg", + "Description": [ + "Mirgan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zrg" + }, + { + "Type": 1, + "SubTag": "zrn", + "Description": [ + "Zerenkel" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zrn" + }, + { + "Type": 1, + "SubTag": "zro", + "Description": [ + "Z\u00E1paro" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zro" + }, + { + "Type": 1, + "SubTag": "zrp", + "Description": [ + "Zarphatic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zrp" + }, + { + "Type": 1, + "SubTag": "zrs", + "Description": [ + "Mairasi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zrs" + }, + { + "Type": 1, + "SubTag": "zsa", + "Description": [ + "Sarasira" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zsa" + }, + { + "Type": 1, + "SubTag": "zsk", + "Description": [ + "Kaskean" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zsk" + }, + { + "Type": 1, + "SubTag": "zsl", + "Description": [ + "Zambian Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zsl" + }, + { + "Type": 1, + "SubTag": "zsm", + "Description": [ + "Standard Malay" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ms", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zsm" + }, + { + "Type": 1, + "SubTag": "zsr", + "Description": [ + "Southern Rincon Zapotec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zap", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zsr" + }, + { + "Type": 1, + "SubTag": "zsu", + "Description": [ + "Sukurum" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zsu" + }, + { + "Type": 1, + "SubTag": "zte", + "Description": [ + "Elotepec Zapotec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zap", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zte" + }, + { + "Type": 1, + "SubTag": "ztg", + "Description": [ + "Xanagu\u00EDa Zapotec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zap", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ztg" + }, + { + "Type": 1, + "SubTag": "ztl", + "Description": [ + "Lapagu\u00EDa-Guivini Zapotec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zap", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ztl" + }, + { + "Type": 1, + "SubTag": "ztm", + "Description": [ + "San Agust\u00EDn Mixtepec Zapotec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zap", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ztm" + }, + { + "Type": 1, + "SubTag": "ztn", + "Description": [ + "Santa Catarina Albarradas Zapotec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zap", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ztn" + }, + { + "Type": 1, + "SubTag": "ztp", + "Description": [ + "Loxicha Zapotec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zap", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ztp" + }, + { + "Type": 1, + "SubTag": "ztq", + "Description": [ + "Quioquitani-Quier\u00ED Zapotec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zap", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ztq" + }, + { + "Type": 1, + "SubTag": "zts", + "Description": [ + "Tilquiapan Zapotec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zap", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zts" + }, + { + "Type": 1, + "SubTag": "ztt", + "Description": [ + "Tejalapan Zapotec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zap", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ztt" + }, + { + "Type": 1, + "SubTag": "ztu", + "Description": [ + "G\u00FCil\u00E1 Zapotec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zap", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ztu" + }, + { + "Type": 1, + "SubTag": "ztx", + "Description": [ + "Zaachila Zapotec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zap", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ztx" + }, + { + "Type": 1, + "SubTag": "zty", + "Description": [ + "Yatee Zapotec" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zap", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zty" + }, + { + "Type": 1, + "SubTag": "zua", + "Description": [ + "Zeem" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2023-03-17", + "Comments": [ + "see cxh, dsk, dyr, tvi, zem" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zua" + }, + { + "Type": 1, + "SubTag": "zuh", + "Description": [ + "Tokano" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zuh" + }, + { + "Type": 1, + "SubTag": "zum", + "Description": [ + "Kumzari" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zum" + }, + { + "Type": 1, + "SubTag": "zun", + "Description": [ + "Zuni" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zun" + }, + { + "Type": 1, + "SubTag": "zuy", + "Description": [ + "Zumaya" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zuy" + }, + { + "Type": 1, + "SubTag": "zwa", + "Description": [ + "Zay" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zwa" + }, + { + "Type": 1, + "SubTag": "zxx", + "Description": [ + "No linguistic content", + "Not applicable" + ], + "Added": "2006-03-08", + "SuppressScript": "", + "Scope": "special", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zxx" + }, + { + "Type": 1, + "SubTag": "zyb", + "Description": [ + "Yongbei Zhuang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "za", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zyb" + }, + { + "Type": 1, + "SubTag": "zyg", + "Description": [ + "Yang Zhuang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "za", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zyg" + }, + { + "Type": 1, + "SubTag": "zyj", + "Description": [ + "Youjiang Zhuang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "za", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zyj" + }, + { + "Type": 1, + "SubTag": "zyn", + "Description": [ + "Yongnan Zhuang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "za", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zyn" + }, + { + "Type": 1, + "SubTag": "zyp", + "Description": [ + "Zyphe Chin" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zyp" + }, + { + "Type": 1, + "SubTag": "zza", + "Description": [ + "Zaza", + "Dimili", + "Dimli (macrolanguage)", + "Kirdki", + "Kirmanjki (macrolanguage)", + "Zazaki" + ], + "Added": "2006-08-24", + "SuppressScript": "", + "Scope": "macrolanguage", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zza" + }, + { + "Type": 1, + "SubTag": "zzj", + "Description": [ + "Zuojiang Zhuang" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "za", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "zzj" + }, + { + "Type": 2, + "SubTag": "aao", + "Description": [ + "Algerian Saharan Arabic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ar", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "ar" + ], + "PreferredValue": "aao", + "Tag": "", + "TagAny": "aao" + }, + { + "Type": 2, + "SubTag": "abh", + "Description": [ + "Tajiki Arabic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ar", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "ar" + ], + "PreferredValue": "abh", + "Tag": "", + "TagAny": "abh" + }, + { + "Type": 2, + "SubTag": "abv", + "Description": [ + "Baharna Arabic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ar", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "ar" + ], + "PreferredValue": "abv", + "Tag": "", + "TagAny": "abv" + }, + { + "Type": 2, + "SubTag": "acm", + "Description": [ + "Mesopotamian Arabic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ar", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "ar" + ], + "PreferredValue": "acm", + "Tag": "", + "TagAny": "acm" + }, + { + "Type": 2, + "SubTag": "acq", + "Description": [ + "Ta\u0027izzi-Adeni Arabic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ar", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "ar" + ], + "PreferredValue": "acq", + "Tag": "", + "TagAny": "acq" + }, + { + "Type": 2, + "SubTag": "acw", + "Description": [ + "Hijazi Arabic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ar", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "ar" + ], + "PreferredValue": "acw", + "Tag": "", + "TagAny": "acw" + }, + { + "Type": 2, + "SubTag": "acx", + "Description": [ + "Omani Arabic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ar", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "ar" + ], + "PreferredValue": "acx", + "Tag": "", + "TagAny": "acx" + }, + { + "Type": 2, + "SubTag": "acy", + "Description": [ + "Cypriot Arabic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ar", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "ar" + ], + "PreferredValue": "acy", + "Tag": "", + "TagAny": "acy" + }, + { + "Type": 2, + "SubTag": "adf", + "Description": [ + "Dhofari Arabic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ar", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "ar" + ], + "PreferredValue": "adf", + "Tag": "", + "TagAny": "adf" + }, + { + "Type": 2, + "SubTag": "ads", + "Description": [ + "Adamorobe Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "ads", + "Tag": "", + "TagAny": "ads" + }, + { + "Type": 2, + "SubTag": "aeb", + "Description": [ + "Tunisian Arabic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ar", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "ar" + ], + "PreferredValue": "aeb", + "Tag": "", + "TagAny": "aeb" + }, + { + "Type": 2, + "SubTag": "aec", + "Description": [ + "Saidi Arabic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ar", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "ar" + ], + "PreferredValue": "aec", + "Tag": "", + "TagAny": "aec" + }, + { + "Type": 2, + "SubTag": "aed", + "Description": [ + "Argentine Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "aed", + "Tag": "", + "TagAny": "aed" + }, + { + "Type": 2, + "SubTag": "aen", + "Description": [ + "Armenian Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "aen", + "Tag": "", + "TagAny": "aen" + }, + { + "Type": 2, + "SubTag": "afb", + "Description": [ + "Gulf Arabic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ar", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "ar" + ], + "PreferredValue": "afb", + "Tag": "", + "TagAny": "afb" + }, + { + "Type": 2, + "SubTag": "afg", + "Description": [ + "Afghan Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "afg", + "Tag": "", + "TagAny": "afg" + }, + { + "Type": 2, + "SubTag": "ajp", + "Description": [ + "South Levantine Arabic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ar", + "Deprecated": "2023-03-17", + "Comments": [], + "Prefix": [ + "ar" + ], + "PreferredValue": "ajp", + "Tag": "", + "TagAny": "ajp" + }, + { + "Type": 2, + "SubTag": "ajs", + "Description": [ + "Algerian Jewish Sign Language" + ], + "Added": "2022-02-25", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "ajs", + "Tag": "", + "TagAny": "ajs" + }, + { + "Type": 2, + "SubTag": "apc", + "Description": [ + "Levantine Arabic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ar", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "ar" + ], + "PreferredValue": "apc", + "Tag": "", + "TagAny": "apc" + }, + { + "Type": 2, + "SubTag": "apd", + "Description": [ + "Sudanese Arabic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ar", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "ar" + ], + "PreferredValue": "apd", + "Tag": "", + "TagAny": "apd" + }, + { + "Type": 2, + "SubTag": "arb", + "Description": [ + "Standard Arabic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ar", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "ar" + ], + "PreferredValue": "arb", + "Tag": "", + "TagAny": "arb" + }, + { + "Type": 2, + "SubTag": "arq", + "Description": [ + "Algerian Arabic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ar", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "ar" + ], + "PreferredValue": "arq", + "Tag": "", + "TagAny": "arq" + }, + { + "Type": 2, + "SubTag": "ars", + "Description": [ + "Najdi Arabic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ar", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "ar" + ], + "PreferredValue": "ars", + "Tag": "", + "TagAny": "ars" + }, + { + "Type": 2, + "SubTag": "ary", + "Description": [ + "Moroccan Arabic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ar", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "ar" + ], + "PreferredValue": "ary", + "Tag": "", + "TagAny": "ary" + }, + { + "Type": 2, + "SubTag": "arz", + "Description": [ + "Egyptian Arabic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ar", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "ar" + ], + "PreferredValue": "arz", + "Tag": "", + "TagAny": "arz" + }, + { + "Type": 2, + "SubTag": "ase", + "Description": [ + "American Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "ase", + "Tag": "", + "TagAny": "ase" + }, + { + "Type": 2, + "SubTag": "asf", + "Description": [ + "Auslan", + "Australian Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "asf", + "Tag": "", + "TagAny": "asf" + }, + { + "Type": 2, + "SubTag": "asp", + "Description": [ + "Algerian Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "asp", + "Tag": "", + "TagAny": "asp" + }, + { + "Type": 2, + "SubTag": "asq", + "Description": [ + "Austrian Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "asq", + "Tag": "", + "TagAny": "asq" + }, + { + "Type": 2, + "SubTag": "asw", + "Description": [ + "Australian Aborigines Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "asw", + "Tag": "", + "TagAny": "asw" + }, + { + "Type": 2, + "SubTag": "auz", + "Description": [ + "Uzbeki Arabic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ar", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "ar" + ], + "PreferredValue": "auz", + "Tag": "", + "TagAny": "auz" + }, + { + "Type": 2, + "SubTag": "avl", + "Description": [ + "Eastern Egyptian Bedawi Arabic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ar", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "ar" + ], + "PreferredValue": "avl", + "Tag": "", + "TagAny": "avl" + }, + { + "Type": 2, + "SubTag": "ayh", + "Description": [ + "Hadrami Arabic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ar", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "ar" + ], + "PreferredValue": "ayh", + "Tag": "", + "TagAny": "ayh" + }, + { + "Type": 2, + "SubTag": "ayl", + "Description": [ + "Libyan Arabic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ar", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "ar" + ], + "PreferredValue": "ayl", + "Tag": "", + "TagAny": "ayl" + }, + { + "Type": 2, + "SubTag": "ayn", + "Description": [ + "Sanaani Arabic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ar", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "ar" + ], + "PreferredValue": "ayn", + "Tag": "", + "TagAny": "ayn" + }, + { + "Type": 2, + "SubTag": "ayp", + "Description": [ + "North Mesopotamian Arabic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ar", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "ar" + ], + "PreferredValue": "ayp", + "Tag": "", + "TagAny": "ayp" + }, + { + "Type": 2, + "SubTag": "bbz", + "Description": [ + "Babalia Creole Arabic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ar", + "Deprecated": "2020-03-28", + "Comments": [], + "Prefix": [ + "ar" + ], + "PreferredValue": "bbz", + "Tag": "", + "TagAny": "bbz" + }, + { + "Type": 2, + "SubTag": "bfi", + "Description": [ + "British Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "bfi", + "Tag": "", + "TagAny": "bfi" + }, + { + "Type": 2, + "SubTag": "bfk", + "Description": [ + "Ban Khor Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "bfk", + "Tag": "", + "TagAny": "bfk" + }, + { + "Type": 2, + "SubTag": "bjn", + "Description": [ + "Banjar" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ms", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "ms" + ], + "PreferredValue": "bjn", + "Tag": "", + "TagAny": "bjn" + }, + { + "Type": 2, + "SubTag": "bog", + "Description": [ + "Bamako Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "bog", + "Tag": "", + "TagAny": "bog" + }, + { + "Type": 2, + "SubTag": "bqn", + "Description": [ + "Bulgarian Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "bqn", + "Tag": "", + "TagAny": "bqn" + }, + { + "Type": 2, + "SubTag": "bqy", + "Description": [ + "Bengkala Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "bqy", + "Tag": "", + "TagAny": "bqy" + }, + { + "Type": 2, + "SubTag": "btj", + "Description": [ + "Bacanese Malay" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ms", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "ms" + ], + "PreferredValue": "btj", + "Tag": "", + "TagAny": "btj" + }, + { + "Type": 2, + "SubTag": "bve", + "Description": [ + "Berau Malay" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ms", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "ms" + ], + "PreferredValue": "bve", + "Tag": "", + "TagAny": "bve" + }, + { + "Type": 2, + "SubTag": "bvl", + "Description": [ + "Bolivian Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "bvl", + "Tag": "", + "TagAny": "bvl" + }, + { + "Type": 2, + "SubTag": "bvu", + "Description": [ + "Bukit Malay" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ms", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "ms" + ], + "PreferredValue": "bvu", + "Tag": "", + "TagAny": "bvu" + }, + { + "Type": 2, + "SubTag": "bzs", + "Description": [ + "Brazilian Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "bzs", + "Tag": "", + "TagAny": "bzs" + }, + { + "Type": 2, + "SubTag": "cdo", + "Description": [ + "Min Dong Chinese" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zh", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "zh" + ], + "PreferredValue": "cdo", + "Tag": "", + "TagAny": "cdo" + }, + { + "Type": 2, + "SubTag": "cds", + "Description": [ + "Chadian Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "cds", + "Tag": "", + "TagAny": "cds" + }, + { + "Type": 2, + "SubTag": "cjy", + "Description": [ + "Jinyu Chinese" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zh", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "zh" + ], + "PreferredValue": "cjy", + "Tag": "", + "TagAny": "cjy" + }, + { + "Type": 2, + "SubTag": "cmn", + "Description": [ + "Mandarin Chinese" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zh", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "zh" + ], + "PreferredValue": "cmn", + "Tag": "", + "TagAny": "cmn" + }, + { + "Type": 2, + "SubTag": "cnp", + "Description": [ + "Northern Ping Chinese", + "Northern Pinghua" + ], + "Added": "2020-03-28", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zh", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "zh" + ], + "PreferredValue": "cnp", + "Tag": "", + "TagAny": "cnp" + }, + { + "Type": 2, + "SubTag": "coa", + "Description": [ + "Cocos Islands Malay" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ms", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "ms" + ], + "PreferredValue": "coa", + "Tag": "", + "TagAny": "coa" + }, + { + "Type": 2, + "SubTag": "cpx", + "Description": [ + "Pu-Xian Chinese" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zh", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "zh" + ], + "PreferredValue": "cpx", + "Tag": "", + "TagAny": "cpx" + }, + { + "Type": 2, + "SubTag": "csc", + "Description": [ + "Catalan Sign Language", + "Lengua de se\u00F1as catalana", + "Llengua de Signes Catalana" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "csc", + "Tag": "", + "TagAny": "csc" + }, + { + "Type": 2, + "SubTag": "csd", + "Description": [ + "Chiangmai Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "csd", + "Tag": "", + "TagAny": "csd" + }, + { + "Type": 2, + "SubTag": "cse", + "Description": [ + "Czech Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "cse", + "Tag": "", + "TagAny": "cse" + }, + { + "Type": 2, + "SubTag": "csf", + "Description": [ + "Cuba Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "csf", + "Tag": "", + "TagAny": "csf" + }, + { + "Type": 2, + "SubTag": "csg", + "Description": [ + "Chilean Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "csg", + "Tag": "", + "TagAny": "csg" + }, + { + "Type": 2, + "SubTag": "csl", + "Description": [ + "Chinese Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "csl", + "Tag": "", + "TagAny": "csl" + }, + { + "Type": 2, + "SubTag": "csn", + "Description": [ + "Colombian Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "csn", + "Tag": "", + "TagAny": "csn" + }, + { + "Type": 2, + "SubTag": "csp", + "Description": [ + "Southern Ping Chinese", + "Southern Pinghua" + ], + "Added": "2020-03-28", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zh", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "zh" + ], + "PreferredValue": "csp", + "Tag": "", + "TagAny": "csp" + }, + { + "Type": 2, + "SubTag": "csq", + "Description": [ + "Croatia Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "csq", + "Tag": "", + "TagAny": "csq" + }, + { + "Type": 2, + "SubTag": "csr", + "Description": [ + "Costa Rican Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "csr", + "Tag": "", + "TagAny": "csr" + }, + { + "Type": 2, + "SubTag": "csx", + "Description": [ + "Cambodian Sign Language" + ], + "Added": "2021-02-20", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "csx", + "Tag": "", + "TagAny": "csx" + }, + { + "Type": 2, + "SubTag": "czh", + "Description": [ + "Huizhou Chinese" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zh", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "zh" + ], + "PreferredValue": "czh", + "Tag": "", + "TagAny": "czh" + }, + { + "Type": 2, + "SubTag": "czo", + "Description": [ + "Min Zhong Chinese" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zh", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "zh" + ], + "PreferredValue": "czo", + "Tag": "", + "TagAny": "czo" + }, + { + "Type": 2, + "SubTag": "doq", + "Description": [ + "Dominican Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "doq", + "Tag": "", + "TagAny": "doq" + }, + { + "Type": 2, + "SubTag": "dse", + "Description": [ + "Dutch Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "dse", + "Tag": "", + "TagAny": "dse" + }, + { + "Type": 2, + "SubTag": "dsl", + "Description": [ + "Danish Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "dsl", + "Tag": "", + "TagAny": "dsl" + }, + { + "Type": 2, + "SubTag": "dsz", + "Description": [ + "Mardin Sign Language" + ], + "Added": "2022-02-25", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "dsz", + "Tag": "", + "TagAny": "dsz" + }, + { + "Type": 2, + "SubTag": "dup", + "Description": [ + "Duano" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ms", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "ms" + ], + "PreferredValue": "dup", + "Tag": "", + "TagAny": "dup" + }, + { + "Type": 2, + "SubTag": "ecs", + "Description": [ + "Ecuadorian Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "ecs", + "Tag": "", + "TagAny": "ecs" + }, + { + "Type": 2, + "SubTag": "ehs", + "Description": [ + "Miyakubo Sign Language" + ], + "Added": "2021-02-20", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "ehs", + "Tag": "", + "TagAny": "ehs" + }, + { + "Type": 2, + "SubTag": "esl", + "Description": [ + "Egypt Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "esl", + "Tag": "", + "TagAny": "esl" + }, + { + "Type": 2, + "SubTag": "esn", + "Description": [ + "Salvadoran Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "esn", + "Tag": "", + "TagAny": "esn" + }, + { + "Type": 2, + "SubTag": "eso", + "Description": [ + "Estonian Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "eso", + "Tag": "", + "TagAny": "eso" + }, + { + "Type": 2, + "SubTag": "eth", + "Description": [ + "Ethiopian Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "eth", + "Tag": "", + "TagAny": "eth" + }, + { + "Type": 2, + "SubTag": "fcs", + "Description": [ + "Quebec Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "fcs", + "Tag": "", + "TagAny": "fcs" + }, + { + "Type": 2, + "SubTag": "fse", + "Description": [ + "Finnish Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "fse", + "Tag": "", + "TagAny": "fse" + }, + { + "Type": 2, + "SubTag": "fsl", + "Description": [ + "French Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "fsl", + "Tag": "", + "TagAny": "fsl" + }, + { + "Type": 2, + "SubTag": "fss", + "Description": [ + "Finland-Swedish Sign Language", + "finlandssvenskt teckenspr\u00E5k", + "suomenruotsalainen viittomakieli" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "fss", + "Tag": "", + "TagAny": "fss" + }, + { + "Type": 2, + "SubTag": "gan", + "Description": [ + "Gan Chinese" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zh", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "zh" + ], + "PreferredValue": "gan", + "Tag": "", + "TagAny": "gan" + }, + { + "Type": 2, + "SubTag": "gds", + "Description": [ + "Ghandruk Sign Language" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "gds", + "Tag": "", + "TagAny": "gds" + }, + { + "Type": 2, + "SubTag": "gom", + "Description": [ + "Goan Konkani" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "kok", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "kok" + ], + "PreferredValue": "gom", + "Tag": "", + "TagAny": "gom" + }, + { + "Type": 2, + "SubTag": "gse", + "Description": [ + "Ghanaian Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "gse", + "Tag": "", + "TagAny": "gse" + }, + { + "Type": 2, + "SubTag": "gsg", + "Description": [ + "German Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "gsg", + "Tag": "", + "TagAny": "gsg" + }, + { + "Type": 2, + "SubTag": "gsm", + "Description": [ + "Guatemalan Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "gsm", + "Tag": "", + "TagAny": "gsm" + }, + { + "Type": 2, + "SubTag": "gss", + "Description": [ + "Greek Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "gss", + "Tag": "", + "TagAny": "gss" + }, + { + "Type": 2, + "SubTag": "gus", + "Description": [ + "Guinean Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "gus", + "Tag": "", + "TagAny": "gus" + }, + { + "Type": 2, + "SubTag": "hab", + "Description": [ + "Hanoi Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "hab", + "Tag": "", + "TagAny": "hab" + }, + { + "Type": 2, + "SubTag": "haf", + "Description": [ + "Haiphong Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "haf", + "Tag": "", + "TagAny": "haf" + }, + { + "Type": 2, + "SubTag": "hak", + "Description": [ + "Hakka Chinese" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zh", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "zh" + ], + "PreferredValue": "hak", + "Tag": "", + "TagAny": "hak" + }, + { + "Type": 2, + "SubTag": "hds", + "Description": [ + "Honduras Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "hds", + "Tag": "", + "TagAny": "hds" + }, + { + "Type": 2, + "SubTag": "hji", + "Description": [ + "Haji" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ms", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "ms" + ], + "PreferredValue": "hji", + "Tag": "", + "TagAny": "hji" + }, + { + "Type": 2, + "SubTag": "hks", + "Description": [ + "Hong Kong Sign Language", + "Heung Kong Sau Yue" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "hks", + "Tag": "", + "TagAny": "hks" + }, + { + "Type": 2, + "SubTag": "hnm", + "Description": [ + "Hainanese" + ], + "Added": "2024-12-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zh", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "zh" + ], + "PreferredValue": "hnm", + "Tag": "", + "TagAny": "hnm" + }, + { + "Type": 2, + "SubTag": "hos", + "Description": [ + "Ho Chi Minh City Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "hos", + "Tag": "", + "TagAny": "hos" + }, + { + "Type": 2, + "SubTag": "hps", + "Description": [ + "Hawai\u0027i Sign Language (HSL)", + "Hawai\u0027i Pidgin Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "hps", + "Tag": "", + "TagAny": "hps" + }, + { + "Type": 2, + "SubTag": "hsh", + "Description": [ + "Hungarian Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "hsh", + "Tag": "", + "TagAny": "hsh" + }, + { + "Type": 2, + "SubTag": "hsl", + "Description": [ + "Hausa Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "hsl", + "Tag": "", + "TagAny": "hsl" + }, + { + "Type": 2, + "SubTag": "hsn", + "Description": [ + "Xiang Chinese" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zh", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "zh" + ], + "PreferredValue": "hsn", + "Tag": "", + "TagAny": "hsn" + }, + { + "Type": 2, + "SubTag": "icl", + "Description": [ + "Icelandic Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "icl", + "Tag": "", + "TagAny": "icl" + }, + { + "Type": 2, + "SubTag": "iks", + "Description": [ + "Inuit Sign Language" + ], + "Added": "2015-02-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "iks", + "Tag": "", + "TagAny": "iks" + }, + { + "Type": 2, + "SubTag": "ils", + "Description": [ + "International Sign" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "ils", + "Tag": "", + "TagAny": "ils" + }, + { + "Type": 2, + "SubTag": "inl", + "Description": [ + "Indonesian Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "inl", + "Tag": "", + "TagAny": "inl" + }, + { + "Type": 2, + "SubTag": "ins", + "Description": [ + "Indian Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "ins", + "Tag": "", + "TagAny": "ins" + }, + { + "Type": 2, + "SubTag": "ise", + "Description": [ + "Italian Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "ise", + "Tag": "", + "TagAny": "ise" + }, + { + "Type": 2, + "SubTag": "isg", + "Description": [ + "Irish Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "isg", + "Tag": "", + "TagAny": "isg" + }, + { + "Type": 2, + "SubTag": "isr", + "Description": [ + "Israeli Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "isr", + "Tag": "", + "TagAny": "isr" + }, + { + "Type": 2, + "SubTag": "jak", + "Description": [ + "Jakun" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ms", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "ms" + ], + "PreferredValue": "jak", + "Tag": "", + "TagAny": "jak" + }, + { + "Type": 2, + "SubTag": "jax", + "Description": [ + "Jambi Malay" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ms", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "ms" + ], + "PreferredValue": "jax", + "Tag": "", + "TagAny": "jax" + }, + { + "Type": 2, + "SubTag": "jcs", + "Description": [ + "Jamaican Country Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "jcs", + "Tag": "", + "TagAny": "jcs" + }, + { + "Type": 2, + "SubTag": "jhs", + "Description": [ + "Jhankot Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "jhs", + "Tag": "", + "TagAny": "jhs" + }, + { + "Type": 2, + "SubTag": "jks", + "Description": [ + "Amami Koniya Sign Language" + ], + "Added": "2021-02-20", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "jks", + "Tag": "", + "TagAny": "jks" + }, + { + "Type": 2, + "SubTag": "jls", + "Description": [ + "Jamaican Sign Language" + ], + "Added": "2010-03-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "jls", + "Tag": "", + "TagAny": "jls" + }, + { + "Type": 2, + "SubTag": "jos", + "Description": [ + "Jordanian Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "jos", + "Tag": "", + "TagAny": "jos" + }, + { + "Type": 2, + "SubTag": "jsl", + "Description": [ + "Japanese Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "jsl", + "Tag": "", + "TagAny": "jsl" + }, + { + "Type": 2, + "SubTag": "jus", + "Description": [ + "Jumla Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "jus", + "Tag": "", + "TagAny": "jus" + }, + { + "Type": 2, + "SubTag": "kgi", + "Description": [ + "Selangor Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "kgi", + "Tag": "", + "TagAny": "kgi" + }, + { + "Type": 2, + "SubTag": "knn", + "Description": [ + "Konkani (individual language)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "kok", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "kok" + ], + "PreferredValue": "knn", + "Tag": "", + "TagAny": "knn" + }, + { + "Type": 2, + "SubTag": "kvb", + "Description": [ + "Kubu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ms", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "ms" + ], + "PreferredValue": "kvb", + "Tag": "", + "TagAny": "kvb" + }, + { + "Type": 2, + "SubTag": "kvk", + "Description": [ + "Korean Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "kvk", + "Tag": "", + "TagAny": "kvk" + }, + { + "Type": 2, + "SubTag": "kvr", + "Description": [ + "Kerinci" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ms", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "ms" + ], + "PreferredValue": "kvr", + "Tag": "", + "TagAny": "kvr" + }, + { + "Type": 2, + "SubTag": "kxd", + "Description": [ + "Brunei" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ms", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "ms" + ], + "PreferredValue": "kxd", + "Tag": "", + "TagAny": "kxd" + }, + { + "Type": 2, + "SubTag": "lbs", + "Description": [ + "Libyan Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "lbs", + "Tag": "", + "TagAny": "lbs" + }, + { + "Type": 2, + "SubTag": "lce", + "Description": [ + "Loncong", + "Sekak" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ms", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "ms" + ], + "PreferredValue": "lce", + "Tag": "", + "TagAny": "lce" + }, + { + "Type": 2, + "SubTag": "lcf", + "Description": [ + "Lubu" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ms", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "ms" + ], + "PreferredValue": "lcf", + "Tag": "", + "TagAny": "lcf" + }, + { + "Type": 2, + "SubTag": "lgs", + "Description": [ + "Guinea-Bissau Sign Language", + "L\u00EDngua Gestual Guineense" + ], + "Added": "2023-03-17", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "lgs", + "Tag": "", + "TagAny": "lgs" + }, + { + "Type": 2, + "SubTag": "liw", + "Description": [ + "Col" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ms", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "ms" + ], + "PreferredValue": "liw", + "Tag": "", + "TagAny": "liw" + }, + { + "Type": 2, + "SubTag": "lls", + "Description": [ + "Lithuanian Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "lls", + "Tag": "", + "TagAny": "lls" + }, + { + "Type": 2, + "SubTag": "lsb", + "Description": [ + "Burundian Sign Language", + "Langue des Signes Burundaise" + ], + "Added": "2021-02-20", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "lsb", + "Tag": "", + "TagAny": "lsb" + }, + { + "Type": 2, + "SubTag": "lsc", + "Description": [ + "Albarradas Sign Language", + "Lengua de se\u00F1as Albarradas" + ], + "Added": "2022-02-25", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "lsc", + "Tag": "", + "TagAny": "lsc" + }, + { + "Type": 2, + "SubTag": "lsg", + "Description": [ + "Lyons Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2018-03-08", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "lsg", + "Tag": "", + "TagAny": "lsg" + }, + { + "Type": 2, + "SubTag": "lsl", + "Description": [ + "Latvian Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "lsl", + "Tag": "", + "TagAny": "lsl" + }, + { + "Type": 2, + "SubTag": "lsn", + "Description": [ + "Tibetan Sign Language" + ], + "Added": "2019-04-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "lsn", + "Tag": "", + "TagAny": "lsn" + }, + { + "Type": 2, + "SubTag": "lso", + "Description": [ + "Laos Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "lso", + "Tag": "", + "TagAny": "lso" + }, + { + "Type": 2, + "SubTag": "lsp", + "Description": [ + "Panamanian Sign Language", + "Lengua de Se\u00F1as Paname\u00F1as" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "lsp", + "Tag": "", + "TagAny": "lsp" + }, + { + "Type": 2, + "SubTag": "lst", + "Description": [ + "Trinidad and Tobago Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "lst", + "Tag": "", + "TagAny": "lst" + }, + { + "Type": 2, + "SubTag": "lsv", + "Description": [ + "Sivia Sign Language" + ], + "Added": "2019-04-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "lsv", + "Tag": "", + "TagAny": "lsv" + }, + { + "Type": 2, + "SubTag": "lsw", + "Description": [ + "Seychelles Sign Language", + "Lalang Siny Seselwa", + "Langue des Signes Seychelloise" + ], + "Added": "2022-02-25", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "lsw", + "Tag": "", + "TagAny": "lsw" + }, + { + "Type": 2, + "SubTag": "lsy", + "Description": [ + "Mauritian Sign Language" + ], + "Added": "2010-03-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "lsy", + "Tag": "", + "TagAny": "lsy" + }, + { + "Type": 2, + "SubTag": "ltg", + "Description": [ + "Latgalian" + ], + "Added": "2010-03-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "lv", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "lv" + ], + "PreferredValue": "ltg", + "Tag": "", + "TagAny": "ltg" + }, + { + "Type": 2, + "SubTag": "luh", + "Description": [ + "Leizhou Chinese" + ], + "Added": "2024-12-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zh", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "zh" + ], + "PreferredValue": "luh", + "Tag": "", + "TagAny": "luh" + }, + { + "Type": 2, + "SubTag": "lvs", + "Description": [ + "Standard Latvian" + ], + "Added": "2010-03-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "lv", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "lv" + ], + "PreferredValue": "lvs", + "Tag": "", + "TagAny": "lvs" + }, + { + "Type": 2, + "SubTag": "lws", + "Description": [ + "Malawian Sign Language" + ], + "Added": "2018-03-08", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "lws", + "Tag": "", + "TagAny": "lws" + }, + { + "Type": 2, + "SubTag": "lzh", + "Description": [ + "Literary Chinese" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zh", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "zh" + ], + "PreferredValue": "lzh", + "Tag": "", + "TagAny": "lzh" + }, + { + "Type": 2, + "SubTag": "max", + "Description": [ + "North Moluccan Malay" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ms", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "ms" + ], + "PreferredValue": "max", + "Tag": "", + "TagAny": "max" + }, + { + "Type": 2, + "SubTag": "mdl", + "Description": [ + "Maltese Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "mdl", + "Tag": "", + "TagAny": "mdl" + }, + { + "Type": 2, + "SubTag": "meo", + "Description": [ + "Kedah Malay" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ms", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "ms" + ], + "PreferredValue": "meo", + "Tag": "", + "TagAny": "meo" + }, + { + "Type": 2, + "SubTag": "mfa", + "Description": [ + "Pattani Malay" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ms", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "ms" + ], + "PreferredValue": "mfa", + "Tag": "", + "TagAny": "mfa" + }, + { + "Type": 2, + "SubTag": "mfb", + "Description": [ + "Bangka" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ms", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "ms" + ], + "PreferredValue": "mfb", + "Tag": "", + "TagAny": "mfb" + }, + { + "Type": 2, + "SubTag": "mfs", + "Description": [ + "Mexican Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "mfs", + "Tag": "", + "TagAny": "mfs" + }, + { + "Type": 2, + "SubTag": "min", + "Description": [ + "Minangkabau" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ms", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "ms" + ], + "PreferredValue": "min", + "Tag": "", + "TagAny": "min" + }, + { + "Type": 2, + "SubTag": "mnp", + "Description": [ + "Min Bei Chinese" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zh", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "zh" + ], + "PreferredValue": "mnp", + "Tag": "", + "TagAny": "mnp" + }, + { + "Type": 2, + "SubTag": "mqg", + "Description": [ + "Kota Bangun Kutai Malay" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ms", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "ms" + ], + "PreferredValue": "mqg", + "Tag": "", + "TagAny": "mqg" + }, + { + "Type": 2, + "SubTag": "mre", + "Description": [ + "Martha\u0027s Vineyard Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "mre", + "Tag": "", + "TagAny": "mre" + }, + { + "Type": 2, + "SubTag": "msd", + "Description": [ + "Yucatec Maya Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "msd", + "Tag": "", + "TagAny": "msd" + }, + { + "Type": 2, + "SubTag": "msi", + "Description": [ + "Sabah Malay" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ms", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "ms" + ], + "PreferredValue": "msi", + "Tag": "", + "TagAny": "msi" + }, + { + "Type": 2, + "SubTag": "msr", + "Description": [ + "Mongolian Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "msr", + "Tag": "", + "TagAny": "msr" + }, + { + "Type": 2, + "SubTag": "mui", + "Description": [ + "Musi" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ms", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "ms" + ], + "PreferredValue": "mui", + "Tag": "", + "TagAny": "mui" + }, + { + "Type": 2, + "SubTag": "mzc", + "Description": [ + "Madagascar Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "mzc", + "Tag": "", + "TagAny": "mzc" + }, + { + "Type": 2, + "SubTag": "mzg", + "Description": [ + "Monastic Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "mzg", + "Tag": "", + "TagAny": "mzg" + }, + { + "Type": 2, + "SubTag": "mzy", + "Description": [ + "Mozambican Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "mzy", + "Tag": "", + "TagAny": "mzy" + }, + { + "Type": 2, + "SubTag": "nan", + "Description": [ + "Min Nan Chinese" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zh", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "zh" + ], + "PreferredValue": "nan", + "Tag": "", + "TagAny": "nan" + }, + { + "Type": 2, + "SubTag": "nbs", + "Description": [ + "Namibian Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "nbs", + "Tag": "", + "TagAny": "nbs" + }, + { + "Type": 2, + "SubTag": "ncs", + "Description": [ + "Nicaraguan Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "ncs", + "Tag": "", + "TagAny": "ncs" + }, + { + "Type": 2, + "SubTag": "nsi", + "Description": [ + "Nigerian Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "nsi", + "Tag": "", + "TagAny": "nsi" + }, + { + "Type": 2, + "SubTag": "nsl", + "Description": [ + "Norwegian Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "nsl", + "Tag": "", + "TagAny": "nsl" + }, + { + "Type": 2, + "SubTag": "nsp", + "Description": [ + "Nepalese Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "nsp", + "Tag": "", + "TagAny": "nsp" + }, + { + "Type": 2, + "SubTag": "nsr", + "Description": [ + "Maritime Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "nsr", + "Tag": "", + "TagAny": "nsr" + }, + { + "Type": 2, + "SubTag": "nzs", + "Description": [ + "New Zealand Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "nzs", + "Tag": "", + "TagAny": "nzs" + }, + { + "Type": 2, + "SubTag": "okl", + "Description": [ + "Old Kentish Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "okl", + "Tag": "", + "TagAny": "okl" + }, + { + "Type": 2, + "SubTag": "orn", + "Description": [ + "Orang Kanaq" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ms", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "ms" + ], + "PreferredValue": "orn", + "Tag": "", + "TagAny": "orn" + }, + { + "Type": 2, + "SubTag": "ors", + "Description": [ + "Orang Seletar" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ms", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "ms" + ], + "PreferredValue": "ors", + "Tag": "", + "TagAny": "ors" + }, + { + "Type": 2, + "SubTag": "pel", + "Description": [ + "Pekal" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ms", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "ms" + ], + "PreferredValue": "pel", + "Tag": "", + "TagAny": "pel" + }, + { + "Type": 2, + "SubTag": "pga", + "Description": [ + "Sudanese Creole Arabic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ar", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "ar" + ], + "PreferredValue": "pga", + "Tag": "", + "TagAny": "pga" + }, + { + "Type": 2, + "SubTag": "pgz", + "Description": [ + "Papua New Guinean Sign Language" + ], + "Added": "2016-05-30", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "pgz", + "Tag": "", + "TagAny": "pgz" + }, + { + "Type": 2, + "SubTag": "pks", + "Description": [ + "Pakistan Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "pks", + "Tag": "", + "TagAny": "pks" + }, + { + "Type": 2, + "SubTag": "prl", + "Description": [ + "Peruvian Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "prl", + "Tag": "", + "TagAny": "prl" + }, + { + "Type": 2, + "SubTag": "prz", + "Description": [ + "Providencia Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "prz", + "Tag": "", + "TagAny": "prz" + }, + { + "Type": 2, + "SubTag": "psc", + "Description": [ + "Iranian Sign Language", + "Persian Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "psc", + "Tag": "", + "TagAny": "psc" + }, + { + "Type": 2, + "SubTag": "psd", + "Description": [ + "Plains Indian Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "psd", + "Tag": "", + "TagAny": "psd" + }, + { + "Type": 2, + "SubTag": "pse", + "Description": [ + "Central Malay" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ms", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "ms" + ], + "PreferredValue": "pse", + "Tag": "", + "TagAny": "pse" + }, + { + "Type": 2, + "SubTag": "psg", + "Description": [ + "Penang Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "psg", + "Tag": "", + "TagAny": "psg" + }, + { + "Type": 2, + "SubTag": "psl", + "Description": [ + "Puerto Rican Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "psl", + "Tag": "", + "TagAny": "psl" + }, + { + "Type": 2, + "SubTag": "pso", + "Description": [ + "Polish Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "pso", + "Tag": "", + "TagAny": "pso" + }, + { + "Type": 2, + "SubTag": "psp", + "Description": [ + "Philippine Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "psp", + "Tag": "", + "TagAny": "psp" + }, + { + "Type": 2, + "SubTag": "psr", + "Description": [ + "Portuguese Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "psr", + "Tag": "", + "TagAny": "psr" + }, + { + "Type": 2, + "SubTag": "pys", + "Description": [ + "Paraguayan Sign Language", + "Lengua de Se\u00F1as del Paraguay" + ], + "Added": "2010-03-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "pys", + "Tag": "", + "TagAny": "pys" + }, + { + "Type": 2, + "SubTag": "rib", + "Description": [ + "Bribri Sign Language" + ], + "Added": "2022-02-25", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "rib", + "Tag": "", + "TagAny": "rib" + }, + { + "Type": 2, + "SubTag": "rms", + "Description": [ + "Romanian Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "rms", + "Tag": "", + "TagAny": "rms" + }, + { + "Type": 2, + "SubTag": "rnb", + "Description": [ + "Brunca Sign Language" + ], + "Added": "2022-02-25", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "rnb", + "Tag": "", + "TagAny": "rnb" + }, + { + "Type": 2, + "SubTag": "rsi", + "Description": [ + "Rennellese Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2017-02-23", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "rsi", + "Tag": "", + "TagAny": "rsi" + }, + { + "Type": 2, + "SubTag": "rsl", + "Description": [ + "Russian Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "rsl", + "Tag": "", + "TagAny": "rsl" + }, + { + "Type": 2, + "SubTag": "rsm", + "Description": [ + "Miriwoong Sign Language" + ], + "Added": "2016-05-30", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "rsm", + "Tag": "", + "TagAny": "rsm" + }, + { + "Type": 2, + "SubTag": "rsn", + "Description": [ + "Rwandan Sign Language" + ], + "Added": "2022-02-25", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "rsn", + "Tag": "", + "TagAny": "rsn" + }, + { + "Type": 2, + "SubTag": "sdl", + "Description": [ + "Saudi Arabian Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "sdl", + "Tag": "", + "TagAny": "sdl" + }, + { + "Type": 2, + "SubTag": "sfb", + "Description": [ + "Langue des signes de Belgique Francophone", + "French Belgian Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "sfb", + "Tag": "", + "TagAny": "sfb" + }, + { + "Type": 2, + "SubTag": "sfs", + "Description": [ + "South African Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "sfs", + "Tag": "", + "TagAny": "sfs" + }, + { + "Type": 2, + "SubTag": "sgg", + "Description": [ + "Swiss-German Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "sgg", + "Tag": "", + "TagAny": "sgg" + }, + { + "Type": 2, + "SubTag": "sgx", + "Description": [ + "Sierra Leone Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "sgx", + "Tag": "", + "TagAny": "sgx" + }, + { + "Type": 2, + "SubTag": "shu", + "Description": [ + "Chadian Arabic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ar", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "ar" + ], + "PreferredValue": "shu", + "Tag": "", + "TagAny": "shu" + }, + { + "Type": 2, + "SubTag": "sjc", + "Description": [ + "Shaojiang Chinese" + ], + "Added": "2024-12-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zh", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "zh" + ], + "PreferredValue": "sjc", + "Tag": "", + "TagAny": "sjc" + }, + { + "Type": 2, + "SubTag": "slf", + "Description": [ + "Swiss-Italian Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "slf", + "Tag": "", + "TagAny": "slf" + }, + { + "Type": 2, + "SubTag": "sls", + "Description": [ + "Singapore Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "sls", + "Tag": "", + "TagAny": "sls" + }, + { + "Type": 2, + "SubTag": "sqk", + "Description": [ + "Albanian Sign Language" + ], + "Added": "2012-08-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "sqk", + "Tag": "", + "TagAny": "sqk" + }, + { + "Type": 2, + "SubTag": "sqs", + "Description": [ + "Sri Lankan Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "sqs", + "Tag": "", + "TagAny": "sqs" + }, + { + "Type": 2, + "SubTag": "sqx", + "Description": [ + "Kufr Qassem Sign Language (KQSL)" + ], + "Added": "2021-02-20", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "sqx", + "Tag": "", + "TagAny": "sqx" + }, + { + "Type": 2, + "SubTag": "ssh", + "Description": [ + "Shihhi Arabic" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ar", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "ar" + ], + "PreferredValue": "ssh", + "Tag": "", + "TagAny": "ssh" + }, + { + "Type": 2, + "SubTag": "ssp", + "Description": [ + "Spanish Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "ssp", + "Tag": "", + "TagAny": "ssp" + }, + { + "Type": 2, + "SubTag": "ssr", + "Description": [ + "Swiss-French Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "ssr", + "Tag": "", + "TagAny": "ssr" + }, + { + "Type": 2, + "SubTag": "svk", + "Description": [ + "Slovakian Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "svk", + "Tag": "", + "TagAny": "svk" + }, + { + "Type": 2, + "SubTag": "swc", + "Description": [ + "Congo Swahili" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "sw", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sw" + ], + "PreferredValue": "swc", + "Tag": "", + "TagAny": "swc" + }, + { + "Type": 2, + "SubTag": "swh", + "Description": [ + "Swahili (individual language)", + "Kiswahili" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "sw", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sw" + ], + "PreferredValue": "swh", + "Tag": "", + "TagAny": "swh" + }, + { + "Type": 2, + "SubTag": "swl", + "Description": [ + "Swedish Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "swl", + "Tag": "", + "TagAny": "swl" + }, + { + "Type": 2, + "SubTag": "syy", + "Description": [ + "Al-Sayyid Bedouin Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "syy", + "Tag": "", + "TagAny": "syy" + }, + { + "Type": 2, + "SubTag": "szs", + "Description": [ + "Solomon Islands Sign Language" + ], + "Added": "2017-02-23", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "szs", + "Tag": "", + "TagAny": "szs" + }, + { + "Type": 2, + "SubTag": "tmw", + "Description": [ + "Temuan" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ms", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "ms" + ], + "PreferredValue": "tmw", + "Tag": "", + "TagAny": "tmw" + }, + { + "Type": 2, + "SubTag": "tse", + "Description": [ + "Tunisian Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "tse", + "Tag": "", + "TagAny": "tse" + }, + { + "Type": 2, + "SubTag": "tsm", + "Description": [ + "Turkish Sign Language", + "T\u00FCrk \u0130\u015Faret Dili" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "tsm", + "Tag": "", + "TagAny": "tsm" + }, + { + "Type": 2, + "SubTag": "tsq", + "Description": [ + "Thai Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "tsq", + "Tag": "", + "TagAny": "tsq" + }, + { + "Type": 2, + "SubTag": "tss", + "Description": [ + "Taiwan Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "tss", + "Tag": "", + "TagAny": "tss" + }, + { + "Type": 2, + "SubTag": "tsy", + "Description": [ + "Tebul Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "tsy", + "Tag": "", + "TagAny": "tsy" + }, + { + "Type": 2, + "SubTag": "tza", + "Description": [ + "Tanzanian Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "tza", + "Tag": "", + "TagAny": "tza" + }, + { + "Type": 2, + "SubTag": "ugn", + "Description": [ + "Ugandan Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "ugn", + "Tag": "", + "TagAny": "ugn" + }, + { + "Type": 2, + "SubTag": "ugy", + "Description": [ + "Uruguayan Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "ugy", + "Tag": "", + "TagAny": "ugy" + }, + { + "Type": 2, + "SubTag": "ukl", + "Description": [ + "Ukrainian Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "ukl", + "Tag": "", + "TagAny": "ukl" + }, + { + "Type": 2, + "SubTag": "uks", + "Description": [ + "Urub\u00FA-Kaapor Sign Language", + "Kaapor Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "uks", + "Tag": "", + "TagAny": "uks" + }, + { + "Type": 2, + "SubTag": "urk", + "Description": [ + "Urak Lawoi\u0027" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ms", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "ms" + ], + "PreferredValue": "urk", + "Tag": "", + "TagAny": "urk" + }, + { + "Type": 2, + "SubTag": "uzn", + "Description": [ + "Northern Uzbek" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "uz", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "uz" + ], + "PreferredValue": "uzn", + "Tag": "", + "TagAny": "uzn" + }, + { + "Type": 2, + "SubTag": "uzs", + "Description": [ + "Southern Uzbek" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "uz", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "uz" + ], + "PreferredValue": "uzs", + "Tag": "", + "TagAny": "uzs" + }, + { + "Type": 2, + "SubTag": "vgt", + "Description": [ + "Vlaamse Gebarentaal", + "Flemish Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "vgt", + "Tag": "", + "TagAny": "vgt" + }, + { + "Type": 2, + "SubTag": "vkk", + "Description": [ + "Kaur" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ms", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "ms" + ], + "PreferredValue": "vkk", + "Tag": "", + "TagAny": "vkk" + }, + { + "Type": 2, + "SubTag": "vkt", + "Description": [ + "Tenggarong Kutai Malay" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ms", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "ms" + ], + "PreferredValue": "vkt", + "Tag": "", + "TagAny": "vkt" + }, + { + "Type": 2, + "SubTag": "vsi", + "Description": [ + "Moldova Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "vsi", + "Tag": "", + "TagAny": "vsi" + }, + { + "Type": 2, + "SubTag": "vsl", + "Description": [ + "Venezuelan Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "vsl", + "Tag": "", + "TagAny": "vsl" + }, + { + "Type": 2, + "SubTag": "vsv", + "Description": [ + "Valencian Sign Language", + "Llengua de signes valenciana" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "vsv", + "Tag": "", + "TagAny": "vsv" + }, + { + "Type": 2, + "SubTag": "wbs", + "Description": [ + "West Bengal Sign Language" + ], + "Added": "2017-02-23", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "wbs", + "Tag": "", + "TagAny": "wbs" + }, + { + "Type": 2, + "SubTag": "wuu", + "Description": [ + "Wu Chinese" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zh", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "zh" + ], + "PreferredValue": "wuu", + "Tag": "", + "TagAny": "wuu" + }, + { + "Type": 2, + "SubTag": "xki", + "Description": [ + "Kenyan Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "xki", + "Tag": "", + "TagAny": "xki" + }, + { + "Type": 2, + "SubTag": "xml", + "Description": [ + "Malaysian Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "xml", + "Tag": "", + "TagAny": "xml" + }, + { + "Type": 2, + "SubTag": "xmm", + "Description": [ + "Manado Malay" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ms", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "ms" + ], + "PreferredValue": "xmm", + "Tag": "", + "TagAny": "xmm" + }, + { + "Type": 2, + "SubTag": "xms", + "Description": [ + "Moroccan Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "xms", + "Tag": "", + "TagAny": "xms" + }, + { + "Type": 2, + "SubTag": "yds", + "Description": [ + "Yiddish Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2015-02-12", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "yds", + "Tag": "", + "TagAny": "yds" + }, + { + "Type": 2, + "SubTag": "ygs", + "Description": [ + "Yol\u014Bu Sign Language" + ], + "Added": "2014-02-28", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "ygs", + "Tag": "", + "TagAny": "ygs" + }, + { + "Type": 2, + "SubTag": "yhs", + "Description": [ + "Yan-nha\u014Bu Sign Language" + ], + "Added": "2015-04-17", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "yhs", + "Tag": "", + "TagAny": "yhs" + }, + { + "Type": 2, + "SubTag": "ysl", + "Description": [ + "Yugoslavian Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "ysl", + "Tag": "", + "TagAny": "ysl" + }, + { + "Type": 2, + "SubTag": "ysm", + "Description": [ + "Myanmar Sign Language" + ], + "Added": "2021-02-20", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "ysm", + "Tag": "", + "TagAny": "ysm" + }, + { + "Type": 2, + "SubTag": "yue", + "Description": [ + "Yue Chinese", + "Cantonese" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "zh", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "zh" + ], + "PreferredValue": "yue", + "Tag": "", + "TagAny": "yue" + }, + { + "Type": 2, + "SubTag": "zib", + "Description": [ + "Zimbabwe Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "zib", + "Tag": "", + "TagAny": "zib" + }, + { + "Type": 2, + "SubTag": "zlm", + "Description": [ + "Malay (individual language)" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ms", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "ms" + ], + "PreferredValue": "zlm", + "Tag": "", + "TagAny": "zlm" + }, + { + "Type": 2, + "SubTag": "zmi", + "Description": [ + "Negeri Sembilan Malay" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ms", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "ms" + ], + "PreferredValue": "zmi", + "Tag": "", + "TagAny": "zmi" + }, + { + "Type": 2, + "SubTag": "zsl", + "Description": [ + "Zambian Sign Language" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sgn" + ], + "PreferredValue": "zsl", + "Tag": "", + "TagAny": "zsl" + }, + { + "Type": 2, + "SubTag": "zsm", + "Description": [ + "Standard Malay" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "ms", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "ms" + ], + "PreferredValue": "zsm", + "Tag": "", + "TagAny": "zsm" + }, + { + "Type": 3, + "SubTag": "Adlm", + "Description": [ + "Adlam" + ], + "Added": "2014-12-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Adlm" + }, + { + "Type": 3, + "SubTag": "Afak", + "Description": [ + "Afaka" + ], + "Added": "2011-01-07", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Afak" + }, + { + "Type": 3, + "SubTag": "Aghb", + "Description": [ + "Caucasian Albanian" + ], + "Added": "2012-11-01", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Aghb" + }, + { + "Type": 3, + "SubTag": "Ahom", + "Description": [ + "Ahom", + "Tai Ahom" + ], + "Added": "2013-12-02", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Ahom" + }, + { + "Type": 3, + "SubTag": "Arab", + "Description": [ + "Arabic" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Arab" + }, + { + "Type": 3, + "SubTag": "Aran", + "Description": [ + "Arabic (Nastaliq variant)" + ], + "Added": "2014-12-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Aran" + }, + { + "Type": 3, + "SubTag": "Armi", + "Description": [ + "Imperial Aramaic" + ], + "Added": "2007-12-05", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Armi" + }, + { + "Type": 3, + "SubTag": "Armn", + "Description": [ + "Armenian" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Armn" + }, + { + "Type": 3, + "SubTag": "Avst", + "Description": [ + "Avestan" + ], + "Added": "2007-07-28", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Avst" + }, + { + "Type": 3, + "SubTag": "Bali", + "Description": [ + "Balinese" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Bali" + }, + { + "Type": 3, + "SubTag": "Bamu", + "Description": [ + "Bamum" + ], + "Added": "2009-07-30", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Bamu" + }, + { + "Type": 3, + "SubTag": "Bass", + "Description": [ + "Bassa Vah" + ], + "Added": "2010-04-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Bass" + }, + { + "Type": 3, + "SubTag": "Batk", + "Description": [ + "Batak" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Batk" + }, + { + "Type": 3, + "SubTag": "Beng", + "Description": [ + "Bengali", + "Bangla" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Beng" + }, + { + "Type": 3, + "SubTag": "Berf", + "Description": [ + "Beria Erfe" + ], + "Added": "2025-02-06", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Berf" + }, + { + "Type": 3, + "SubTag": "Bhks", + "Description": [ + "Bhaiksuki" + ], + "Added": "2015-07-24", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Bhks" + }, + { + "Type": 3, + "SubTag": "Blis", + "Description": [ + "Blissymbols" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Blis" + }, + { + "Type": 3, + "SubTag": "Bopo", + "Description": [ + "Bopomofo" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Bopo" + }, + { + "Type": 3, + "SubTag": "Brah", + "Description": [ + "Brahmi" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Brah" + }, + { + "Type": 3, + "SubTag": "Brai", + "Description": [ + "Braille" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Brai" + }, + { + "Type": 3, + "SubTag": "Bugi", + "Description": [ + "Buginese" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Bugi" + }, + { + "Type": 3, + "SubTag": "Buhd", + "Description": [ + "Buhid" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Buhd" + }, + { + "Type": 3, + "SubTag": "Cakm", + "Description": [ + "Chakma" + ], + "Added": "2007-12-05", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Cakm" + }, + { + "Type": 3, + "SubTag": "Cans", + "Description": [ + "Unified Canadian Aboriginal Syllabics" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Cans" + }, + { + "Type": 3, + "SubTag": "Cari", + "Description": [ + "Carian" + ], + "Added": "2006-07-21", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Cari" + }, + { + "Type": 3, + "SubTag": "Cham", + "Description": [ + "Cham" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Cham" + }, + { + "Type": 3, + "SubTag": "Cher", + "Description": [ + "Cherokee" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Cher" + }, + { + "Type": 3, + "SubTag": "Chis", + "Description": [ + "Chisoi" + ], + "Added": "2023-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Chis" + }, + { + "Type": 3, + "SubTag": "Chrs", + "Description": [ + "Chorasmian" + ], + "Added": "2019-09-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Chrs" + }, + { + "Type": 3, + "SubTag": "Cirt", + "Description": [ + "Cirth" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Cirt" + }, + { + "Type": 3, + "SubTag": "Copt", + "Description": [ + "Coptic" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Copt" + }, + { + "Type": 3, + "SubTag": "Cpmn", + "Description": [ + "Cypro-Minoan" + ], + "Added": "2017-08-13", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Cpmn" + }, + { + "Type": 3, + "SubTag": "Cprt", + "Description": [ + "Cypriot syllabary" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Cprt" + }, + { + "Type": 3, + "SubTag": "Cyrl", + "Description": [ + "Cyrillic" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Cyrl" + }, + { + "Type": 3, + "SubTag": "Cyrs", + "Description": [ + "Cyrillic (Old Church Slavonic variant)" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Cyrs" + }, + { + "Type": 3, + "SubTag": "Deva", + "Description": [ + "Devanagari", + "Nagari" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Deva" + }, + { + "Type": 3, + "SubTag": "Diak", + "Description": [ + "Dives Akuru" + ], + "Added": "2019-09-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Diak" + }, + { + "Type": 3, + "SubTag": "Dogr", + "Description": [ + "Dogra" + ], + "Added": "2017-01-13", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Dogr" + }, + { + "Type": 3, + "SubTag": "Dsrt", + "Description": [ + "Deseret", + "Mormon" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Dsrt" + }, + { + "Type": 3, + "SubTag": "Dupl", + "Description": [ + "Duployan shorthand", + "Duployan stenography" + ], + "Added": "2010-08-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Dupl" + }, + { + "Type": 3, + "SubTag": "Egyd", + "Description": [ + "Egyptian demotic" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Egyd" + }, + { + "Type": 3, + "SubTag": "Egyh", + "Description": [ + "Egyptian hieratic" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Egyh" + }, + { + "Type": 3, + "SubTag": "Egyp", + "Description": [ + "Egyptian hieroglyphs" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Egyp" + }, + { + "Type": 3, + "SubTag": "Elba", + "Description": [ + "Elbasan" + ], + "Added": "2010-08-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Elba" + }, + { + "Type": 3, + "SubTag": "Elym", + "Description": [ + "Elymaic" + ], + "Added": "2018-10-28", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Elym" + }, + { + "Type": 3, + "SubTag": "Ethi", + "Description": [ + "Ethiopic", + "Ge\u02BBez", + "Ge\u0027ez" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Ethi" + }, + { + "Type": 3, + "SubTag": "Gara", + "Description": [ + "Garay" + ], + "Added": "2023-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Gara" + }, + { + "Type": 3, + "SubTag": "Geok", + "Description": [ + "Khutsuri (Asomtavruli and Nuskhuri)" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Geok" + }, + { + "Type": 3, + "SubTag": "Geor", + "Description": [ + "Georgian (Mkhedruli and Mtavruli)" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Geor" + }, + { + "Type": 3, + "SubTag": "Glag", + "Description": [ + "Glagolitic" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Glag" + }, + { + "Type": 3, + "SubTag": "Gong", + "Description": [ + "Gunjala Gondi" + ], + "Added": "2017-01-13", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Gong" + }, + { + "Type": 3, + "SubTag": "Gonm", + "Description": [ + "Masaram Gondi" + ], + "Added": "2017-01-13", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Gonm" + }, + { + "Type": 3, + "SubTag": "Goth", + "Description": [ + "Gothic" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Goth" + }, + { + "Type": 3, + "SubTag": "Gran", + "Description": [ + "Grantha" + ], + "Added": "2009-12-09", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Gran" + }, + { + "Type": 3, + "SubTag": "Grek", + "Description": [ + "Greek" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Grek" + }, + { + "Type": 3, + "SubTag": "Gujr", + "Description": [ + "Gujarati" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Gujr" + }, + { + "Type": 3, + "SubTag": "Gukh", + "Description": [ + "Gurung Khema" + ], + "Added": "2023-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Gukh" + }, + { + "Type": 3, + "SubTag": "Guru", + "Description": [ + "Gurmukhi" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Guru" + }, + { + "Type": 3, + "SubTag": "Hanb", + "Description": [ + "Han with Bopomofo (alias for Han \u002B Bopomofo)" + ], + "Added": "2016-02-08", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Hanb" + }, + { + "Type": 3, + "SubTag": "Hang", + "Description": [ + "Hangul", + "Hang\u016Dl", + "Hangeul" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Hang" + }, + { + "Type": 3, + "SubTag": "Hani", + "Description": [ + "Han", + "Hanzi", + "Kanji", + "Hanja" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Hani" + }, + { + "Type": 3, + "SubTag": "Hano", + "Description": [ + "Hanunoo", + "Hanun\u00F3o" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Hano" + }, + { + "Type": 3, + "SubTag": "Hans", + "Description": [ + "Han (Simplified variant)" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Hans" + }, + { + "Type": 3, + "SubTag": "Hant", + "Description": [ + "Han (Traditional variant)" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Hant" + }, + { + "Type": 3, + "SubTag": "Hatr", + "Description": [ + "Hatran" + ], + "Added": "2013-12-02", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Hatr" + }, + { + "Type": 3, + "SubTag": "Hebr", + "Description": [ + "Hebrew" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Hebr" + }, + { + "Type": 3, + "SubTag": "Hira", + "Description": [ + "Hiragana" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Hira" + }, + { + "Type": 3, + "SubTag": "Hluw", + "Description": [ + "Anatolian Hieroglyphs", + "Luwian Hieroglyphs", + "Hittite Hieroglyphs" + ], + "Added": "2011-12-28", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Hluw" + }, + { + "Type": 3, + "SubTag": "Hmng", + "Description": [ + "Pahawh Hmong" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Hmng" + }, + { + "Type": 3, + "SubTag": "Hmnp", + "Description": [ + "Nyiakeng Puachue Hmong" + ], + "Added": "2017-08-13", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Hmnp" + }, + { + "Type": 3, + "SubTag": "Hntl", + "Description": [ + "Han (Traditional variant) with Latin (alias for Hant \u002B Latn)" + ], + "Added": "2025-05-14", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Hntl" + }, + { + "Type": 3, + "SubTag": "Hrkt", + "Description": [ + "Japanese syllabaries (alias for Hiragana \u002B Katakana)" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Hrkt" + }, + { + "Type": 3, + "SubTag": "Hung", + "Description": [ + "Old Hungarian", + "Hungarian Runic" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Hung" + }, + { + "Type": 3, + "SubTag": "Inds", + "Description": [ + "Indus", + "Harappan" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Inds" + }, + { + "Type": 3, + "SubTag": "Ital", + "Description": [ + "Old Italic (Etruscan, Oscan, etc.)" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Ital" + }, + { + "Type": 3, + "SubTag": "Jamo", + "Description": [ + "Jamo (alias for Jamo subset of Hangul)" + ], + "Added": "2016-02-08", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Jamo" + }, + { + "Type": 3, + "SubTag": "Java", + "Description": [ + "Javanese" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Java" + }, + { + "Type": 3, + "SubTag": "Jpan", + "Description": [ + "Japanese (alias for Han \u002B Hiragana \u002B Katakana)" + ], + "Added": "2006-07-21", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Jpan" + }, + { + "Type": 3, + "SubTag": "Jurc", + "Description": [ + "Jurchen" + ], + "Added": "2011-01-07", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Jurc" + }, + { + "Type": 3, + "SubTag": "Kali", + "Description": [ + "Kayah Li" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Kali" + }, + { + "Type": 3, + "SubTag": "Kana", + "Description": [ + "Katakana" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Kana" + }, + { + "Type": 3, + "SubTag": "Kawi", + "Description": [ + "Kawi" + ], + "Added": "2021-12-24", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Kawi" + }, + { + "Type": 3, + "SubTag": "Khar", + "Description": [ + "Kharoshthi" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Khar" + }, + { + "Type": 3, + "SubTag": "Khmr", + "Description": [ + "Khmer" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Khmr" + }, + { + "Type": 3, + "SubTag": "Khoj", + "Description": [ + "Khojki" + ], + "Added": "2011-08-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Khoj" + }, + { + "Type": 3, + "SubTag": "Kitl", + "Description": [ + "Khitan large script" + ], + "Added": "2014-12-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Kitl" + }, + { + "Type": 3, + "SubTag": "Kits", + "Description": [ + "Khitan small script" + ], + "Added": "2014-12-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Kits" + }, + { + "Type": 3, + "SubTag": "Knda", + "Description": [ + "Kannada" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Knda" + }, + { + "Type": 3, + "SubTag": "Kore", + "Description": [ + "Korean (alias for Hangul \u002B Han)" + ], + "Added": "2007-07-05", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Kore" + }, + { + "Type": 3, + "SubTag": "Kpel", + "Description": [ + "Kpelle" + ], + "Added": "2010-04-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Kpel" + }, + { + "Type": 3, + "SubTag": "Krai", + "Description": [ + "Kirat Rai" + ], + "Added": "2023-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Krai" + }, + { + "Type": 3, + "SubTag": "Kthi", + "Description": [ + "Kaithi" + ], + "Added": "2007-12-05", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Kthi" + }, + { + "Type": 3, + "SubTag": "Lana", + "Description": [ + "Tai Tham", + "Lanna" + ], + "Added": "2006-07-21", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Lana" + }, + { + "Type": 3, + "SubTag": "Laoo", + "Description": [ + "Lao" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Laoo" + }, + { + "Type": 3, + "SubTag": "Latf", + "Description": [ + "Latin (Fraktur variant)" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Latf" + }, + { + "Type": 3, + "SubTag": "Latg", + "Description": [ + "Latin (Gaelic variant)" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Latg" + }, + { + "Type": 3, + "SubTag": "Latn", + "Description": [ + "Latin" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Latn" + }, + { + "Type": 3, + "SubTag": "Leke", + "Description": [ + "Leke" + ], + "Added": "2015-07-24", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Leke" + }, + { + "Type": 3, + "SubTag": "Lepc", + "Description": [ + "Lepcha", + "R\u00F3ng" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Lepc" + }, + { + "Type": 3, + "SubTag": "Limb", + "Description": [ + "Limbu" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Limb" + }, + { + "Type": 3, + "SubTag": "Lina", + "Description": [ + "Linear A" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Lina" + }, + { + "Type": 3, + "SubTag": "Linb", + "Description": [ + "Linear B" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Linb" + }, + { + "Type": 3, + "SubTag": "Lisu", + "Description": [ + "Lisu", + "Fraser" + ], + "Added": "2009-03-13", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Lisu" + }, + { + "Type": 3, + "SubTag": "Loma", + "Description": [ + "Loma" + ], + "Added": "2010-04-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Loma" + }, + { + "Type": 3, + "SubTag": "Lyci", + "Description": [ + "Lycian" + ], + "Added": "2006-07-21", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Lyci" + }, + { + "Type": 3, + "SubTag": "Lydi", + "Description": [ + "Lydian" + ], + "Added": "2006-07-21", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Lydi" + }, + { + "Type": 3, + "SubTag": "Mahj", + "Description": [ + "Mahajani" + ], + "Added": "2012-11-01", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Mahj" + }, + { + "Type": 3, + "SubTag": "Maka", + "Description": [ + "Makasar" + ], + "Added": "2017-01-13", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Maka" + }, + { + "Type": 3, + "SubTag": "Mand", + "Description": [ + "Mandaic", + "Mandaean" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Mand" + }, + { + "Type": 3, + "SubTag": "Mani", + "Description": [ + "Manichaean" + ], + "Added": "2007-07-28", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Mani" + }, + { + "Type": 3, + "SubTag": "Marc", + "Description": [ + "Marchen" + ], + "Added": "2014-12-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Marc" + }, + { + "Type": 3, + "SubTag": "Maya", + "Description": [ + "Mayan hieroglyphs" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Maya" + }, + { + "Type": 3, + "SubTag": "Medf", + "Description": [ + "Medefaidrin", + "Oberi Okaime", + "Oberi \u0186kaim\u025B" + ], + "Added": "2017-01-13", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Medf" + }, + { + "Type": 3, + "SubTag": "Mend", + "Description": [ + "Mende Kikakui" + ], + "Added": "2010-04-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Mend" + }, + { + "Type": 3, + "SubTag": "Merc", + "Description": [ + "Meroitic Cursive" + ], + "Added": "2009-12-09", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Merc" + }, + { + "Type": 3, + "SubTag": "Mero", + "Description": [ + "Meroitic Hieroglyphs" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Mero" + }, + { + "Type": 3, + "SubTag": "Mlym", + "Description": [ + "Malayalam" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Mlym" + }, + { + "Type": 3, + "SubTag": "Modi", + "Description": [ + "Modi", + "Mo\u1E0D\u012B" + ], + "Added": "2013-12-02", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Modi" + }, + { + "Type": 3, + "SubTag": "Mong", + "Description": [ + "Mongolian" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Mong" + }, + { + "Type": 3, + "SubTag": "Moon", + "Description": [ + "Moon", + "Moon code", + "Moon script", + "Moon type" + ], + "Added": "2007-01-26", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Moon" + }, + { + "Type": 3, + "SubTag": "Mroo", + "Description": [ + "Mro", + "Mru" + ], + "Added": "2011-01-07", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Mroo" + }, + { + "Type": 3, + "SubTag": "Mtei", + "Description": [ + "Meitei Mayek", + "Meithei", + "Meetei" + ], + "Added": "2007-01-26", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Mtei" + }, + { + "Type": 3, + "SubTag": "Mult", + "Description": [ + "Multani" + ], + "Added": "2013-12-02", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Mult" + }, + { + "Type": 3, + "SubTag": "Mymr", + "Description": [ + "Myanmar", + "Burmese" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Mymr" + }, + { + "Type": 3, + "SubTag": "Nagm", + "Description": [ + "Nag Mundari" + ], + "Added": "2021-12-24", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Nagm" + }, + { + "Type": 3, + "SubTag": "Nand", + "Description": [ + "Nandinagari" + ], + "Added": "2018-10-28", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Nand" + }, + { + "Type": 3, + "SubTag": "Narb", + "Description": [ + "Old North Arabian", + "Ancient North Arabian" + ], + "Added": "2010-04-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Narb" + }, + { + "Type": 3, + "SubTag": "Nbat", + "Description": [ + "Nabataean" + ], + "Added": "2010-04-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Nbat" + }, + { + "Type": 3, + "SubTag": "Newa", + "Description": [ + "Newa", + "Newar", + "Newari", + "Nep\u0101la lipi" + ], + "Added": "2016-01-04", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Newa" + }, + { + "Type": 3, + "SubTag": "Nkdb", + "Description": [ + "Naxi Dongba", + "na\u00B2\u00B9\u0255i\u00B3\u00B3 to\u00B3\u00B3ba\u00B2\u00B9", + "Nakhi Tomba" + ], + "Added": "2017-08-13", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Nkdb" + }, + { + "Type": 3, + "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", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Nkgb" + }, + { + "Type": 3, + "SubTag": "Nkoo", + "Description": [ + "N\u2019Ko", + "N\u0027Ko" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Nkoo" + }, + { + "Type": 3, + "SubTag": "Nshu", + "Description": [ + "N\u00FCshu" + ], + "Added": "2011-01-07", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Nshu" + }, + { + "Type": 3, + "SubTag": "Ogam", + "Description": [ + "Ogham" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Ogam" + }, + { + "Type": 3, + "SubTag": "Olck", + "Description": [ + "Ol Chiki", + "Ol Cemet\u0027", + "Ol", + "Santali" + ], + "Added": "2006-07-21", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Olck" + }, + { + "Type": 3, + "SubTag": "Onao", + "Description": [ + "Ol Onal" + ], + "Added": "2023-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Onao" + }, + { + "Type": 3, + "SubTag": "Orkh", + "Description": [ + "Old Turkic", + "Orkhon Runic" + ], + "Added": "2009-07-30", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Orkh" + }, + { + "Type": 3, + "SubTag": "Orya", + "Description": [ + "Oriya", + "Odia" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Orya" + }, + { + "Type": 3, + "SubTag": "Osge", + "Description": [ + "Osage" + ], + "Added": "2014-12-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Osge" + }, + { + "Type": 3, + "SubTag": "Osma", + "Description": [ + "Osmanya" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Osma" + }, + { + "Type": 3, + "SubTag": "Ougr", + "Description": [ + "Old Uyghur" + ], + "Added": "2021-02-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Ougr" + }, + { + "Type": 3, + "SubTag": "Palm", + "Description": [ + "Palmyrene" + ], + "Added": "2010-04-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Palm" + }, + { + "Type": 3, + "SubTag": "Pauc", + "Description": [ + "Pau Cin Hau" + ], + "Added": "2013-12-02", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Pauc" + }, + { + "Type": 3, + "SubTag": "Pcun", + "Description": [ + "Proto-Cuneiform" + ], + "Added": "2021-02-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Pcun" + }, + { + "Type": 3, + "SubTag": "Pelm", + "Description": [ + "Proto-Elamite" + ], + "Added": "2021-02-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Pelm" + }, + { + "Type": 3, + "SubTag": "Perm", + "Description": [ + "Old Permic" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Perm" + }, + { + "Type": 3, + "SubTag": "Phag", + "Description": [ + "Phags-pa" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Phag" + }, + { + "Type": 3, + "SubTag": "Phli", + "Description": [ + "Inscriptional Pahlavi" + ], + "Added": "2007-12-05", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Phli" + }, + { + "Type": 3, + "SubTag": "Phlp", + "Description": [ + "Psalter Pahlavi" + ], + "Added": "2007-12-05", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Phlp" + }, + { + "Type": 3, + "SubTag": "Phlv", + "Description": [ + "Book Pahlavi" + ], + "Added": "2007-07-28", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Phlv" + }, + { + "Type": 3, + "SubTag": "Phnx", + "Description": [ + "Phoenician" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Phnx" + }, + { + "Type": 3, + "SubTag": "Piqd", + "Description": [ + "Klingon (KLI pIqaD)" + ], + "Added": "2016-01-04", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Piqd" + }, + { + "Type": 3, + "SubTag": "Plrd", + "Description": [ + "Miao", + "Pollard" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Plrd" + }, + { + "Type": 3, + "SubTag": "Prti", + "Description": [ + "Inscriptional Parthian" + ], + "Added": "2007-12-05", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Prti" + }, + { + "Type": 3, + "SubTag": "Psin", + "Description": [ + "Proto-Sinaitic" + ], + "Added": "2021-02-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Psin" + }, + { + "Type": 3, + "SubTag": "Qaaa..Qabx", + "Description": [ + "Private use" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Qaaa..Qabx" + }, + { + "Type": 3, + "SubTag": "Ranj", + "Description": [ + "Ranjana" + ], + "Added": "2021-02-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Ranj" + }, + { + "Type": 3, + "SubTag": "Rjng", + "Description": [ + "Rejang", + "Redjang", + "Kaganga" + ], + "Added": "2006-10-17", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Rjng" + }, + { + "Type": 3, + "SubTag": "Rohg", + "Description": [ + "Hanifi Rohingya" + ], + "Added": "2017-12-13", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Rohg" + }, + { + "Type": 3, + "SubTag": "Roro", + "Description": [ + "Rongorongo" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Roro" + }, + { + "Type": 3, + "SubTag": "Runr", + "Description": [ + "Runic" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Runr" + }, + { + "Type": 3, + "SubTag": "Samr", + "Description": [ + "Samaritan" + ], + "Added": "2007-07-28", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Samr" + }, + { + "Type": 3, + "SubTag": "Sara", + "Description": [ + "Sarati" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Sara" + }, + { + "Type": 3, + "SubTag": "Sarb", + "Description": [ + "Old South Arabian" + ], + "Added": "2009-07-30", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Sarb" + }, + { + "Type": 3, + "SubTag": "Saur", + "Description": [ + "Saurashtra" + ], + "Added": "2006-07-21", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Saur" + }, + { + "Type": 3, + "SubTag": "Seal", + "Description": [ + "Seal", + "Small Seal" + ], + "Added": "2025-05-14", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Seal" + }, + { + "Type": 3, + "SubTag": "Sgnw", + "Description": [ + "SignWriting" + ], + "Added": "2006-10-17", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Sgnw" + }, + { + "Type": 3, + "SubTag": "Shaw", + "Description": [ + "Shavian", + "Shaw" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Shaw" + }, + { + "Type": 3, + "SubTag": "Shrd", + "Description": [ + "Sharada", + "\u015A\u0101rad\u0101" + ], + "Added": "2011-01-07", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Shrd" + }, + { + "Type": 3, + "SubTag": "Shui", + "Description": [ + "Shuishu" + ], + "Added": "2017-08-13", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Shui" + }, + { + "Type": 3, + "SubTag": "Sidd", + "Description": [ + "Siddham", + "Siddha\u1E43", + "Siddham\u0101t\u1E5Bk\u0101" + ], + "Added": "2013-12-02", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Sidd" + }, + { + "Type": 3, + "SubTag": "Sidt", + "Description": [ + "Sidetic" + ], + "Added": "2023-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Sidt" + }, + { + "Type": 3, + "SubTag": "Sind", + "Description": [ + "Khudawadi", + "Sindhi" + ], + "Added": "2010-08-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Sind" + }, + { + "Type": 3, + "SubTag": "Sinh", + "Description": [ + "Sinhala" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Sinh" + }, + { + "Type": 3, + "SubTag": "Sogd", + "Description": [ + "Sogdian" + ], + "Added": "2017-12-13", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Sogd" + }, + { + "Type": 3, + "SubTag": "Sogo", + "Description": [ + "Old Sogdian" + ], + "Added": "2017-12-13", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Sogo" + }, + { + "Type": 3, + "SubTag": "Sora", + "Description": [ + "Sora Sompeng" + ], + "Added": "2011-01-07", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Sora" + }, + { + "Type": 3, + "SubTag": "Soyo", + "Description": [ + "Soyombo" + ], + "Added": "2017-01-13", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Soyo" + }, + { + "Type": 3, + "SubTag": "Sund", + "Description": [ + "Sundanese" + ], + "Added": "2006-07-21", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Sund" + }, + { + "Type": 3, + "SubTag": "Sunu", + "Description": [ + "Sunuwar" + ], + "Added": "2021-12-24", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Sunu" + }, + { + "Type": 3, + "SubTag": "Sylo", + "Description": [ + "Syloti Nagri" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Sylo" + }, + { + "Type": 3, + "SubTag": "Syrc", + "Description": [ + "Syriac" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Syrc" + }, + { + "Type": 3, + "SubTag": "Syre", + "Description": [ + "Syriac (Estrangelo variant)" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Syre" + }, + { + "Type": 3, + "SubTag": "Syrj", + "Description": [ + "Syriac (Western variant)" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Syrj" + }, + { + "Type": 3, + "SubTag": "Syrn", + "Description": [ + "Syriac (Eastern variant)" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Syrn" + }, + { + "Type": 3, + "SubTag": "Tagb", + "Description": [ + "Tagbanwa" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Tagb" + }, + { + "Type": 3, + "SubTag": "Takr", + "Description": [ + "Takri", + "\u1E6C\u0101kr\u012B", + "\u1E6C\u0101\u1E45kr\u012B" + ], + "Added": "2011-01-07", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Takr" + }, + { + "Type": 3, + "SubTag": "Tale", + "Description": [ + "Tai Le" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Tale" + }, + { + "Type": 3, + "SubTag": "Talu", + "Description": [ + "New Tai Lue" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Talu" + }, + { + "Type": 3, + "SubTag": "Taml", + "Description": [ + "Tamil" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Taml" + }, + { + "Type": 3, + "SubTag": "Tang", + "Description": [ + "Tangut" + ], + "Added": "2011-01-07", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Tang" + }, + { + "Type": 3, + "SubTag": "Tavt", + "Description": [ + "Tai Viet" + ], + "Added": "2007-12-05", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Tavt" + }, + { + "Type": 3, + "SubTag": "Tayo", + "Description": [ + "Tai Yo" + ], + "Added": "2023-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Tayo" + }, + { + "Type": 3, + "SubTag": "Telu", + "Description": [ + "Telugu" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Telu" + }, + { + "Type": 3, + "SubTag": "Teng", + "Description": [ + "Tengwar" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Teng" + }, + { + "Type": 3, + "SubTag": "Tfng", + "Description": [ + "Tifinagh", + "Berber" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Tfng" + }, + { + "Type": 3, + "SubTag": "Tglg", + "Description": [ + "Tagalog", + "Baybayin", + "Alibata" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Tglg" + }, + { + "Type": 3, + "SubTag": "Thaa", + "Description": [ + "Thaana" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Thaa" + }, + { + "Type": 3, + "SubTag": "Thai", + "Description": [ + "Thai" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Thai" + }, + { + "Type": 3, + "SubTag": "Tibt", + "Description": [ + "Tibetan" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Tibt" + }, + { + "Type": 3, + "SubTag": "Tirh", + "Description": [ + "Tirhuta" + ], + "Added": "2011-08-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Tirh" + }, + { + "Type": 3, + "SubTag": "Tnsa", + "Description": [ + "Tangsa" + ], + "Added": "2021-03-05", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Tnsa" + }, + { + "Type": 3, + "SubTag": "Todr", + "Description": [ + "Todhri" + ], + "Added": "2023-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Todr" + }, + { + "Type": 3, + "SubTag": "Tols", + "Description": [ + "Tolong Siki" + ], + "Added": "2023-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Tols" + }, + { + "Type": 3, + "SubTag": "Toto", + "Description": [ + "Toto" + ], + "Added": "2020-05-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Toto" + }, + { + "Type": 3, + "SubTag": "Tutg", + "Description": [ + "Tulu-Tigalari" + ], + "Added": "2023-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Tutg" + }, + { + "Type": 3, + "SubTag": "Ugar", + "Description": [ + "Ugaritic" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Ugar" + }, + { + "Type": 3, + "SubTag": "Vaii", + "Description": [ + "Vai" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Vaii" + }, + { + "Type": 3, + "SubTag": "Visp", + "Description": [ + "Visible Speech" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Visp" + }, + { + "Type": 3, + "SubTag": "Vith", + "Description": [ + "Vithkuqi" + ], + "Added": "2021-03-05", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Vith" + }, + { + "Type": 3, + "SubTag": "Wara", + "Description": [ + "Warang Citi", + "Varang Kshiti" + ], + "Added": "2009-12-09", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Wara" + }, + { + "Type": 3, + "SubTag": "Wcho", + "Description": [ + "Wancho" + ], + "Added": "2017-08-13", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Wcho" + }, + { + "Type": 3, + "SubTag": "Wole", + "Description": [ + "Woleai" + ], + "Added": "2011-01-07", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Wole" + }, + { + "Type": 3, + "SubTag": "Xpeo", + "Description": [ + "Old Persian" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Xpeo" + }, + { + "Type": 3, + "SubTag": "Xsux", + "Description": [ + "Sumero-Akkadian cuneiform" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Xsux" + }, + { + "Type": 3, + "SubTag": "Yezi", + "Description": [ + "Yezidi" + ], + "Added": "2019-09-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Yezi" + }, + { + "Type": 3, + "SubTag": "Yiii", + "Description": [ + "Yi" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Yiii" + }, + { + "Type": 3, + "SubTag": "Zanb", + "Description": [ + "Zanabazar Square", + "Zanabazarin D\u00F6rb\u00F6ljin Useg", + "Xewtee D\u00F6rb\u00F6ljin Bicig", + "Horizontal Square Script" + ], + "Added": "2017-01-13", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Zanb" + }, + { + "Type": 3, + "SubTag": "Zinh", + "Description": [ + "Code for inherited script" + ], + "Added": "2009-04-03", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [ + "Not intended for use as a language subtag" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Zinh" + }, + { + "Type": 3, + "SubTag": "Zmth", + "Description": [ + "Mathematical notation" + ], + "Added": "2007-12-05", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Zmth" + }, + { + "Type": 3, + "SubTag": "Zsye", + "Description": [ + "Symbols (Emoji variant)" + ], + "Added": "2016-01-04", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Zsye" + }, + { + "Type": 3, + "SubTag": "Zsym", + "Description": [ + "Symbols" + ], + "Added": "2007-12-05", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Zsym" + }, + { + "Type": 3, + "SubTag": "Zxxx", + "Description": [ + "Code for unwritten documents" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Zxxx" + }, + { + "Type": 3, + "SubTag": "Zyyy", + "Description": [ + "Code for undetermined script" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Zyyy" + }, + { + "Type": 3, + "SubTag": "Zzzz", + "Description": [ + "Code for uncoded script" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "Zzzz" + }, + { + "Type": 6, + "SubTag": "AA", + "Description": [ + "Private use" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "AA" + }, + { + "Type": 6, + "SubTag": "AC", + "Description": [ + "Ascension Island" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "AC" + }, + { + "Type": 6, + "SubTag": "AD", + "Description": [ + "Andorra" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "AD" + }, + { + "Type": 6, + "SubTag": "AE", + "Description": [ + "United Arab Emirates" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "AE" + }, + { + "Type": 6, + "SubTag": "AF", + "Description": [ + "Afghanistan" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "AF" + }, + { + "Type": 6, + "SubTag": "AG", + "Description": [ + "Antigua and Barbuda" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "AG" + }, + { + "Type": 6, + "SubTag": "AI", + "Description": [ + "Anguilla" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "AI" + }, + { + "Type": 6, + "SubTag": "AL", + "Description": [ + "Albania" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "AL" + }, + { + "Type": 6, + "SubTag": "AM", + "Description": [ + "Armenia" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "AM" + }, + { + "Type": 6, + "SubTag": "AN", + "Description": [ + "Netherlands Antilles" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2011-01-07", + "Comments": [ + "see BQ, CW, and SX" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "AN" + }, + { + "Type": 6, + "SubTag": "AO", + "Description": [ + "Angola" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "AO" + }, + { + "Type": 6, + "SubTag": "AQ", + "Description": [ + "Antarctica" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "AQ" + }, + { + "Type": 6, + "SubTag": "AR", + "Description": [ + "Argentina" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "AR" + }, + { + "Type": 6, + "SubTag": "AS", + "Description": [ + "American Samoa" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "AS" + }, + { + "Type": 6, + "SubTag": "AT", + "Description": [ + "Austria" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "AT" + }, + { + "Type": 6, + "SubTag": "AU", + "Description": [ + "Australia" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "AU" + }, + { + "Type": 6, + "SubTag": "AW", + "Description": [ + "Aruba" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "AW" + }, + { + "Type": 6, + "SubTag": "AX", + "Description": [ + "\u00C5land Islands" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "AX" + }, + { + "Type": 6, + "SubTag": "AZ", + "Description": [ + "Azerbaijan" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "AZ" + }, + { + "Type": 6, + "SubTag": "BA", + "Description": [ + "Bosnia and Herzegovina" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "BA" + }, + { + "Type": 6, + "SubTag": "BB", + "Description": [ + "Barbados" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "BB" + }, + { + "Type": 6, + "SubTag": "BD", + "Description": [ + "Bangladesh" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "BD" + }, + { + "Type": 6, + "SubTag": "BE", + "Description": [ + "Belgium" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "BE" + }, + { + "Type": 6, + "SubTag": "BF", + "Description": [ + "Burkina Faso" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "BF" + }, + { + "Type": 6, + "SubTag": "BG", + "Description": [ + "Bulgaria" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "BG" + }, + { + "Type": 6, + "SubTag": "BH", + "Description": [ + "Bahrain" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "BH" + }, + { + "Type": 6, + "SubTag": "BI", + "Description": [ + "Burundi" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "BI" + }, + { + "Type": 6, + "SubTag": "BJ", + "Description": [ + "Benin" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "BJ" + }, + { + "Type": 6, + "SubTag": "BL", + "Description": [ + "Saint Barth\u00E9lemy" + ], + "Added": "2007-11-02", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "BL" + }, + { + "Type": 6, + "SubTag": "BM", + "Description": [ + "Bermuda" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "BM" + }, + { + "Type": 6, + "SubTag": "BN", + "Description": [ + "Brunei Darussalam" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "BN" + }, + { + "Type": 6, + "SubTag": "BO", + "Description": [ + "Bolivia" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "BO" + }, + { + "Type": 6, + "SubTag": "BQ", + "Description": [ + "Bonaire, Sint Eustatius and Saba" + ], + "Added": "2011-01-07", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "BQ" + }, + { + "Type": 6, + "SubTag": "BR", + "Description": [ + "Brazil" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "BR" + }, + { + "Type": 6, + "SubTag": "BS", + "Description": [ + "Bahamas" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "BS" + }, + { + "Type": 6, + "SubTag": "BT", + "Description": [ + "Bhutan" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "BT" + }, + { + "Type": 6, + "SubTag": "BU", + "Description": [ + "Burma" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "1989-12-05", + "Comments": [], + "Prefix": [], + "PreferredValue": "MM", + "Tag": "", + "TagAny": "BU" + }, + { + "Type": 6, + "SubTag": "BV", + "Description": [ + "Bouvet Island" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "BV" + }, + { + "Type": 6, + "SubTag": "BW", + "Description": [ + "Botswana" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "BW" + }, + { + "Type": 6, + "SubTag": "BY", + "Description": [ + "Belarus" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "BY" + }, + { + "Type": 6, + "SubTag": "BZ", + "Description": [ + "Belize" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "BZ" + }, + { + "Type": 6, + "SubTag": "CA", + "Description": [ + "Canada" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "CA" + }, + { + "Type": 6, + "SubTag": "CC", + "Description": [ + "Cocos (Keeling) Islands" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "CC" + }, + { + "Type": 6, + "SubTag": "CD", + "Description": [ + "The Democratic Republic of the Congo" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "CD" + }, + { + "Type": 6, + "SubTag": "CF", + "Description": [ + "Central African Republic" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "CF" + }, + { + "Type": 6, + "SubTag": "CG", + "Description": [ + "Congo" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "CG" + }, + { + "Type": 6, + "SubTag": "CH", + "Description": [ + "Switzerland" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "CH" + }, + { + "Type": 6, + "SubTag": "CI", + "Description": [ + "C\u00F4te d\u0027Ivoire" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "CI" + }, + { + "Type": 6, + "SubTag": "CK", + "Description": [ + "Cook Islands" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "CK" + }, + { + "Type": 6, + "SubTag": "CL", + "Description": [ + "Chile" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "CL" + }, + { + "Type": 6, + "SubTag": "CM", + "Description": [ + "Cameroon" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "CM" + }, + { + "Type": 6, + "SubTag": "CN", + "Description": [ + "China" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "CN" + }, + { + "Type": 6, + "SubTag": "CO", + "Description": [ + "Colombia" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "CO" + }, + { + "Type": 6, + "SubTag": "CP", + "Description": [ + "Clipperton Island" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "CP" + }, + { + "Type": 6, + "SubTag": "CQ", + "Description": [ + "Sark" + ], + "Added": "2023-02-07", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "CQ" + }, + { + "Type": 6, + "SubTag": "CR", + "Description": [ + "Costa Rica" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "CR" + }, + { + "Type": 6, + "SubTag": "CS", + "Description": [ + "Serbia and Montenegro" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2006-10-05", + "Comments": [ + "see RS for Serbia or ME for Montenegro" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "CS" + }, + { + "Type": 6, + "SubTag": "CU", + "Description": [ + "Cuba" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "CU" + }, + { + "Type": 6, + "SubTag": "CV", + "Description": [ + "Cabo Verde", + "Cape Verde" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "CV" + }, + { + "Type": 6, + "SubTag": "CW", + "Description": [ + "Cura\u00E7ao" + ], + "Added": "2011-01-07", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "CW" + }, + { + "Type": 6, + "SubTag": "CX", + "Description": [ + "Christmas Island" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "CX" + }, + { + "Type": 6, + "SubTag": "CY", + "Description": [ + "Cyprus" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "CY" + }, + { + "Type": 6, + "SubTag": "CZ", + "Description": [ + "Czechia", + "Czech Republic" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "CZ" + }, + { + "Type": 6, + "SubTag": "DD", + "Description": [ + "German Democratic Republic" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "1990-10-30", + "Comments": [], + "Prefix": [], + "PreferredValue": "DE", + "Tag": "", + "TagAny": "DD" + }, + { + "Type": 6, + "SubTag": "DE", + "Description": [ + "Germany" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "DE" + }, + { + "Type": 6, + "SubTag": "DG", + "Description": [ + "Diego Garcia" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "DG" + }, + { + "Type": 6, + "SubTag": "DJ", + "Description": [ + "Djibouti" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "DJ" + }, + { + "Type": 6, + "SubTag": "DK", + "Description": [ + "Denmark" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "DK" + }, + { + "Type": 6, + "SubTag": "DM", + "Description": [ + "Dominica" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "DM" + }, + { + "Type": 6, + "SubTag": "DO", + "Description": [ + "Dominican Republic" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "DO" + }, + { + "Type": 6, + "SubTag": "DZ", + "Description": [ + "Algeria" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "DZ" + }, + { + "Type": 6, + "SubTag": "EA", + "Description": [ + "Ceuta, Melilla" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "EA" + }, + { + "Type": 6, + "SubTag": "EC", + "Description": [ + "Ecuador" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "EC" + }, + { + "Type": 6, + "SubTag": "EE", + "Description": [ + "Estonia" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "EE" + }, + { + "Type": 6, + "SubTag": "EG", + "Description": [ + "Egypt" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "EG" + }, + { + "Type": 6, + "SubTag": "EH", + "Description": [ + "Western Sahara" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "EH" + }, + { + "Type": 6, + "SubTag": "ER", + "Description": [ + "Eritrea" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ER" + }, + { + "Type": 6, + "SubTag": "ES", + "Description": [ + "Spain" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ES" + }, + { + "Type": 6, + "SubTag": "ET", + "Description": [ + "Ethiopia" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ET" + }, + { + "Type": 6, + "SubTag": "EU", + "Description": [ + "European Union" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "EU" + }, + { + "Type": 6, + "SubTag": "EZ", + "Description": [ + "Eurozone" + ], + "Added": "2016-07-14", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "EZ" + }, + { + "Type": 6, + "SubTag": "FI", + "Description": [ + "Finland" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "FI" + }, + { + "Type": 6, + "SubTag": "FJ", + "Description": [ + "Fiji" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "FJ" + }, + { + "Type": 6, + "SubTag": "FK", + "Description": [ + "Falkland Islands (Malvinas)" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "FK" + }, + { + "Type": 6, + "SubTag": "FM", + "Description": [ + "Federated States of Micronesia" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "FM" + }, + { + "Type": 6, + "SubTag": "FO", + "Description": [ + "Faroe Islands" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "FO" + }, + { + "Type": 6, + "SubTag": "FR", + "Description": [ + "France" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "FR" + }, + { + "Type": 6, + "SubTag": "FX", + "Description": [ + "Metropolitan France" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "1997-07-14", + "Comments": [], + "Prefix": [], + "PreferredValue": "FR", + "Tag": "", + "TagAny": "FX" + }, + { + "Type": 6, + "SubTag": "GA", + "Description": [ + "Gabon" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "GA" + }, + { + "Type": 6, + "SubTag": "GB", + "Description": [ + "United Kingdom" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [ + "as of 2006-03-29 GB no longer includes the Channel Islands and Isle of Man; see GG, JE, IM" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "GB" + }, + { + "Type": 6, + "SubTag": "GD", + "Description": [ + "Grenada" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "GD" + }, + { + "Type": 6, + "SubTag": "GE", + "Description": [ + "Georgia" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "GE" + }, + { + "Type": 6, + "SubTag": "GF", + "Description": [ + "French Guiana" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "GF" + }, + { + "Type": 6, + "SubTag": "GG", + "Description": [ + "Guernsey" + ], + "Added": "2006-03-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "GG" + }, + { + "Type": 6, + "SubTag": "GH", + "Description": [ + "Ghana" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "GH" + }, + { + "Type": 6, + "SubTag": "GI", + "Description": [ + "Gibraltar" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "GI" + }, + { + "Type": 6, + "SubTag": "GL", + "Description": [ + "Greenland" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "GL" + }, + { + "Type": 6, + "SubTag": "GM", + "Description": [ + "Gambia" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "GM" + }, + { + "Type": 6, + "SubTag": "GN", + "Description": [ + "Guinea" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "GN" + }, + { + "Type": 6, + "SubTag": "GP", + "Description": [ + "Guadeloupe" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "GP" + }, + { + "Type": 6, + "SubTag": "GQ", + "Description": [ + "Equatorial Guinea" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "GQ" + }, + { + "Type": 6, + "SubTag": "GR", + "Description": [ + "Greece" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "GR" + }, + { + "Type": 6, + "SubTag": "GS", + "Description": [ + "South Georgia and the South Sandwich Islands" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "GS" + }, + { + "Type": 6, + "SubTag": "GT", + "Description": [ + "Guatemala" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "GT" + }, + { + "Type": 6, + "SubTag": "GU", + "Description": [ + "Guam" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "GU" + }, + { + "Type": 6, + "SubTag": "GW", + "Description": [ + "Guinea-Bissau" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "GW" + }, + { + "Type": 6, + "SubTag": "GY", + "Description": [ + "Guyana" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "GY" + }, + { + "Type": 6, + "SubTag": "HK", + "Description": [ + "Hong Kong" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "HK" + }, + { + "Type": 6, + "SubTag": "HM", + "Description": [ + "Heard Island and McDonald Islands" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "HM" + }, + { + "Type": 6, + "SubTag": "HN", + "Description": [ + "Honduras" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "HN" + }, + { + "Type": 6, + "SubTag": "HR", + "Description": [ + "Croatia" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "HR" + }, + { + "Type": 6, + "SubTag": "HT", + "Description": [ + "Haiti" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "HT" + }, + { + "Type": 6, + "SubTag": "HU", + "Description": [ + "Hungary" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "HU" + }, + { + "Type": 6, + "SubTag": "IC", + "Description": [ + "Canary Islands" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "IC" + }, + { + "Type": 6, + "SubTag": "ID", + "Description": [ + "Indonesia" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ID" + }, + { + "Type": 6, + "SubTag": "IE", + "Description": [ + "Ireland" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "IE" + }, + { + "Type": 6, + "SubTag": "IL", + "Description": [ + "Israel" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "IL" + }, + { + "Type": 6, + "SubTag": "IM", + "Description": [ + "Isle of Man" + ], + "Added": "2006-03-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "IM" + }, + { + "Type": 6, + "SubTag": "IN", + "Description": [ + "India" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "IN" + }, + { + "Type": 6, + "SubTag": "IO", + "Description": [ + "British Indian Ocean Territory" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "IO" + }, + { + "Type": 6, + "SubTag": "IQ", + "Description": [ + "Iraq" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "IQ" + }, + { + "Type": 6, + "SubTag": "IR", + "Description": [ + "Islamic Republic of Iran" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "IR" + }, + { + "Type": 6, + "SubTag": "IS", + "Description": [ + "Iceland" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "IS" + }, + { + "Type": 6, + "SubTag": "IT", + "Description": [ + "Italy" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "IT" + }, + { + "Type": 6, + "SubTag": "JE", + "Description": [ + "Jersey" + ], + "Added": "2006-03-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "JE" + }, + { + "Type": 6, + "SubTag": "JM", + "Description": [ + "Jamaica" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "JM" + }, + { + "Type": 6, + "SubTag": "JO", + "Description": [ + "Jordan" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "JO" + }, + { + "Type": 6, + "SubTag": "JP", + "Description": [ + "Japan" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "JP" + }, + { + "Type": 6, + "SubTag": "KE", + "Description": [ + "Kenya" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "KE" + }, + { + "Type": 6, + "SubTag": "KG", + "Description": [ + "Kyrgyzstan" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "KG" + }, + { + "Type": 6, + "SubTag": "KH", + "Description": [ + "Cambodia" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "KH" + }, + { + "Type": 6, + "SubTag": "KI", + "Description": [ + "Kiribati" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "KI" + }, + { + "Type": 6, + "SubTag": "KM", + "Description": [ + "Comoros" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "KM" + }, + { + "Type": 6, + "SubTag": "KN", + "Description": [ + "Saint Kitts and Nevis" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "KN" + }, + { + "Type": 6, + "SubTag": "KP", + "Description": [ + "Democratic People\u0027s Republic of Korea" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "KP" + }, + { + "Type": 6, + "SubTag": "KR", + "Description": [ + "Republic of Korea" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "KR" + }, + { + "Type": 6, + "SubTag": "KW", + "Description": [ + "Kuwait" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "KW" + }, + { + "Type": 6, + "SubTag": "KY", + "Description": [ + "Cayman Islands" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "KY" + }, + { + "Type": 6, + "SubTag": "KZ", + "Description": [ + "Kazakhstan" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "KZ" + }, + { + "Type": 6, + "SubTag": "LA", + "Description": [ + "Lao People\u0027s Democratic Republic" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "LA" + }, + { + "Type": 6, + "SubTag": "LB", + "Description": [ + "Lebanon" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "LB" + }, + { + "Type": 6, + "SubTag": "LC", + "Description": [ + "Saint Lucia" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "LC" + }, + { + "Type": 6, + "SubTag": "LI", + "Description": [ + "Liechtenstein" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "LI" + }, + { + "Type": 6, + "SubTag": "LK", + "Description": [ + "Sri Lanka" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "LK" + }, + { + "Type": 6, + "SubTag": "LR", + "Description": [ + "Liberia" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "LR" + }, + { + "Type": 6, + "SubTag": "LS", + "Description": [ + "Lesotho" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "LS" + }, + { + "Type": 6, + "SubTag": "LT", + "Description": [ + "Lithuania" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "LT" + }, + { + "Type": 6, + "SubTag": "LU", + "Description": [ + "Luxembourg" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "LU" + }, + { + "Type": 6, + "SubTag": "LV", + "Description": [ + "Latvia" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "LV" + }, + { + "Type": 6, + "SubTag": "LY", + "Description": [ + "Libya" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "LY" + }, + { + "Type": 6, + "SubTag": "MA", + "Description": [ + "Morocco" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "MA" + }, + { + "Type": 6, + "SubTag": "MC", + "Description": [ + "Monaco" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "MC" + }, + { + "Type": 6, + "SubTag": "MD", + "Description": [ + "Moldova" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "MD" + }, + { + "Type": 6, + "SubTag": "ME", + "Description": [ + "Montenegro" + ], + "Added": "2006-10-05", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ME" + }, + { + "Type": 6, + "SubTag": "MF", + "Description": [ + "Saint Martin (French part)" + ], + "Added": "2007-11-02", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "MF" + }, + { + "Type": 6, + "SubTag": "MG", + "Description": [ + "Madagascar" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "MG" + }, + { + "Type": 6, + "SubTag": "MH", + "Description": [ + "Marshall Islands" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "MH" + }, + { + "Type": 6, + "SubTag": "MK", + "Description": [ + "North Macedonia" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "MK" + }, + { + "Type": 6, + "SubTag": "ML", + "Description": [ + "Mali" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ML" + }, + { + "Type": 6, + "SubTag": "MM", + "Description": [ + "Myanmar" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "MM" + }, + { + "Type": 6, + "SubTag": "MN", + "Description": [ + "Mongolia" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "MN" + }, + { + "Type": 6, + "SubTag": "MO", + "Description": [ + "Macao" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "MO" + }, + { + "Type": 6, + "SubTag": "MP", + "Description": [ + "Northern Mariana Islands" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "MP" + }, + { + "Type": 6, + "SubTag": "MQ", + "Description": [ + "Martinique" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "MQ" + }, + { + "Type": 6, + "SubTag": "MR", + "Description": [ + "Mauritania" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "MR" + }, + { + "Type": 6, + "SubTag": "MS", + "Description": [ + "Montserrat" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "MS" + }, + { + "Type": 6, + "SubTag": "MT", + "Description": [ + "Malta" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "MT" + }, + { + "Type": 6, + "SubTag": "MU", + "Description": [ + "Mauritius" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "MU" + }, + { + "Type": 6, + "SubTag": "MV", + "Description": [ + "Maldives" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "MV" + }, + { + "Type": 6, + "SubTag": "MW", + "Description": [ + "Malawi" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "MW" + }, + { + "Type": 6, + "SubTag": "MX", + "Description": [ + "Mexico" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "MX" + }, + { + "Type": 6, + "SubTag": "MY", + "Description": [ + "Malaysia" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "MY" + }, + { + "Type": 6, + "SubTag": "MZ", + "Description": [ + "Mozambique" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "MZ" + }, + { + "Type": 6, + "SubTag": "NA", + "Description": [ + "Namibia" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "NA" + }, + { + "Type": 6, + "SubTag": "NC", + "Description": [ + "New Caledonia" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "NC" + }, + { + "Type": 6, + "SubTag": "NE", + "Description": [ + "Niger" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "NE" + }, + { + "Type": 6, + "SubTag": "NF", + "Description": [ + "Norfolk Island" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "NF" + }, + { + "Type": 6, + "SubTag": "NG", + "Description": [ + "Nigeria" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "NG" + }, + { + "Type": 6, + "SubTag": "NI", + "Description": [ + "Nicaragua" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "NI" + }, + { + "Type": 6, + "SubTag": "NL", + "Description": [ + "Netherlands" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "NL" + }, + { + "Type": 6, + "SubTag": "NO", + "Description": [ + "Norway" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "NO" + }, + { + "Type": 6, + "SubTag": "NP", + "Description": [ + "Nepal" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "NP" + }, + { + "Type": 6, + "SubTag": "NR", + "Description": [ + "Nauru" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "NR" + }, + { + "Type": 6, + "SubTag": "NT", + "Description": [ + "Neutral Zone" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "1993-07-12", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "NT" + }, + { + "Type": 6, + "SubTag": "NU", + "Description": [ + "Niue" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "NU" + }, + { + "Type": 6, + "SubTag": "NZ", + "Description": [ + "New Zealand" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "NZ" + }, + { + "Type": 6, + "SubTag": "OM", + "Description": [ + "Oman" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "OM" + }, + { + "Type": 6, + "SubTag": "PA", + "Description": [ + "Panama" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "PA" + }, + { + "Type": 6, + "SubTag": "PE", + "Description": [ + "Peru" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "PE" + }, + { + "Type": 6, + "SubTag": "PF", + "Description": [ + "French Polynesia" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "PF" + }, + { + "Type": 6, + "SubTag": "PG", + "Description": [ + "Papua New Guinea" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "PG" + }, + { + "Type": 6, + "SubTag": "PH", + "Description": [ + "Philippines" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "PH" + }, + { + "Type": 6, + "SubTag": "PK", + "Description": [ + "Pakistan" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "PK" + }, + { + "Type": 6, + "SubTag": "PL", + "Description": [ + "Poland" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "PL" + }, + { + "Type": 6, + "SubTag": "PM", + "Description": [ + "Saint Pierre and Miquelon" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "PM" + }, + { + "Type": 6, + "SubTag": "PN", + "Description": [ + "Pitcairn" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "PN" + }, + { + "Type": 6, + "SubTag": "PR", + "Description": [ + "Puerto Rico" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "PR" + }, + { + "Type": 6, + "SubTag": "PS", + "Description": [ + "State of Palestine" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "PS" + }, + { + "Type": 6, + "SubTag": "PT", + "Description": [ + "Portugal" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "PT" + }, + { + "Type": 6, + "SubTag": "PW", + "Description": [ + "Palau" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "PW" + }, + { + "Type": 6, + "SubTag": "PY", + "Description": [ + "Paraguay" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "PY" + }, + { + "Type": 6, + "SubTag": "QA", + "Description": [ + "Qatar" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "QA" + }, + { + "Type": 6, + "SubTag": "QM..QZ", + "Description": [ + "Private use" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "QM..QZ" + }, + { + "Type": 6, + "SubTag": "RE", + "Description": [ + "R\u00E9union" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "RE" + }, + { + "Type": 6, + "SubTag": "RO", + "Description": [ + "Romania" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "RO" + }, + { + "Type": 6, + "SubTag": "RS", + "Description": [ + "Serbia" + ], + "Added": "2006-10-05", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "RS" + }, + { + "Type": 6, + "SubTag": "RU", + "Description": [ + "Russian Federation" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "RU" + }, + { + "Type": 6, + "SubTag": "RW", + "Description": [ + "Rwanda" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "RW" + }, + { + "Type": 6, + "SubTag": "SA", + "Description": [ + "Saudi Arabia" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "SA" + }, + { + "Type": 6, + "SubTag": "SB", + "Description": [ + "Solomon Islands" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "SB" + }, + { + "Type": 6, + "SubTag": "SC", + "Description": [ + "Seychelles" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "SC" + }, + { + "Type": 6, + "SubTag": "SD", + "Description": [ + "Sudan" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "SD" + }, + { + "Type": 6, + "SubTag": "SE", + "Description": [ + "Sweden" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "SE" + }, + { + "Type": 6, + "SubTag": "SG", + "Description": [ + "Singapore" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "SG" + }, + { + "Type": 6, + "SubTag": "SH", + "Description": [ + "Saint Helena, Ascension and Tristan da Cunha" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "SH" + }, + { + "Type": 6, + "SubTag": "SI", + "Description": [ + "Slovenia" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "SI" + }, + { + "Type": 6, + "SubTag": "SJ", + "Description": [ + "Svalbard and Jan Mayen" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "SJ" + }, + { + "Type": 6, + "SubTag": "SK", + "Description": [ + "Slovakia" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "SK" + }, + { + "Type": 6, + "SubTag": "SL", + "Description": [ + "Sierra Leone" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "SL" + }, + { + "Type": 6, + "SubTag": "SM", + "Description": [ + "San Marino" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "SM" + }, + { + "Type": 6, + "SubTag": "SN", + "Description": [ + "Senegal" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "SN" + }, + { + "Type": 6, + "SubTag": "SO", + "Description": [ + "Somalia" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "SO" + }, + { + "Type": 6, + "SubTag": "SR", + "Description": [ + "Suriname" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "SR" + }, + { + "Type": 6, + "SubTag": "SS", + "Description": [ + "South Sudan" + ], + "Added": "2011-08-25", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "SS" + }, + { + "Type": 6, + "SubTag": "ST", + "Description": [ + "Sao Tome and Principe" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ST" + }, + { + "Type": 6, + "SubTag": "SU", + "Description": [ + "Union of Soviet Socialist Republics" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "1992-08-30", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "SU" + }, + { + "Type": 6, + "SubTag": "SV", + "Description": [ + "El Salvador" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "SV" + }, + { + "Type": 6, + "SubTag": "SX", + "Description": [ + "Sint Maarten (Dutch part)" + ], + "Added": "2011-01-07", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "SX" + }, + { + "Type": 6, + "SubTag": "SY", + "Description": [ + "Syrian Arab Republic" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "SY" + }, + { + "Type": 6, + "SubTag": "SZ", + "Description": [ + "Eswatini", + "eSwatini", + "Swaziland" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "SZ" + }, + { + "Type": 6, + "SubTag": "TA", + "Description": [ + "Tristan da Cunha" + ], + "Added": "2009-07-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "TA" + }, + { + "Type": 6, + "SubTag": "TC", + "Description": [ + "Turks and Caicos Islands" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "TC" + }, + { + "Type": 6, + "SubTag": "TD", + "Description": [ + "Chad" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "TD" + }, + { + "Type": 6, + "SubTag": "TF", + "Description": [ + "French Southern Territories" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "TF" + }, + { + "Type": 6, + "SubTag": "TG", + "Description": [ + "Togo" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "TG" + }, + { + "Type": 6, + "SubTag": "TH", + "Description": [ + "Thailand" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "TH" + }, + { + "Type": 6, + "SubTag": "TJ", + "Description": [ + "Tajikistan" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "TJ" + }, + { + "Type": 6, + "SubTag": "TK", + "Description": [ + "Tokelau" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "TK" + }, + { + "Type": 6, + "SubTag": "TL", + "Description": [ + "Timor-Leste" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "TL" + }, + { + "Type": 6, + "SubTag": "TM", + "Description": [ + "Turkmenistan" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "TM" + }, + { + "Type": 6, + "SubTag": "TN", + "Description": [ + "Tunisia" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "TN" + }, + { + "Type": 6, + "SubTag": "TO", + "Description": [ + "Tonga" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "TO" + }, + { + "Type": 6, + "SubTag": "TP", + "Description": [ + "East Timor" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2002-05-20", + "Comments": [], + "Prefix": [], + "PreferredValue": "TL", + "Tag": "", + "TagAny": "TP" + }, + { + "Type": 6, + "SubTag": "TR", + "Description": [ + "T\u00FCrkiye", + "Turkey" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "TR" + }, + { + "Type": 6, + "SubTag": "TT", + "Description": [ + "Trinidad and Tobago" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "TT" + }, + { + "Type": 6, + "SubTag": "TV", + "Description": [ + "Tuvalu" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "TV" + }, + { + "Type": 6, + "SubTag": "TW", + "Description": [ + "Taiwan, Province of China" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "TW" + }, + { + "Type": 6, + "SubTag": "TZ", + "Description": [ + "United Republic of Tanzania" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "TZ" + }, + { + "Type": 6, + "SubTag": "UA", + "Description": [ + "Ukraine" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "UA" + }, + { + "Type": 6, + "SubTag": "UG", + "Description": [ + "Uganda" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "UG" + }, + { + "Type": 6, + "SubTag": "UM", + "Description": [ + "United States Minor Outlying Islands" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "UM" + }, + { + "Type": 6, + "SubTag": "UN", + "Description": [ + "United Nations" + ], + "Added": "2016-07-14", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "UN" + }, + { + "Type": 6, + "SubTag": "US", + "Description": [ + "United States" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "US" + }, + { + "Type": 6, + "SubTag": "UY", + "Description": [ + "Uruguay" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "UY" + }, + { + "Type": 6, + "SubTag": "UZ", + "Description": [ + "Uzbekistan" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "UZ" + }, + { + "Type": 6, + "SubTag": "VA", + "Description": [ + "Holy See (Vatican City State)" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "VA" + }, + { + "Type": 6, + "SubTag": "VC", + "Description": [ + "Saint Vincent and the Grenadines" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "VC" + }, + { + "Type": 6, + "SubTag": "VE", + "Description": [ + "Venezuela" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "VE" + }, + { + "Type": 6, + "SubTag": "VG", + "Description": [ + "British Virgin Islands" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "VG" + }, + { + "Type": 6, + "SubTag": "VI", + "Description": [ + "U.S. Virgin Islands" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "VI" + }, + { + "Type": 6, + "SubTag": "VN", + "Description": [ + "Viet Nam" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "VN" + }, + { + "Type": 6, + "SubTag": "VU", + "Description": [ + "Vanuatu" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "VU" + }, + { + "Type": 6, + "SubTag": "WF", + "Description": [ + "Wallis and Futuna" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "WF" + }, + { + "Type": 6, + "SubTag": "WS", + "Description": [ + "Samoa" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "WS" + }, + { + "Type": 6, + "SubTag": "XA..XZ", + "Description": [ + "Private use" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "XA..XZ" + }, + { + "Type": 6, + "SubTag": "YD", + "Description": [ + "Democratic Yemen" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "1990-08-14", + "Comments": [], + "Prefix": [], + "PreferredValue": "YE", + "Tag": "", + "TagAny": "YD" + }, + { + "Type": 6, + "SubTag": "YE", + "Description": [ + "Yemen" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "YE" + }, + { + "Type": 6, + "SubTag": "YT", + "Description": [ + "Mayotte" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "YT" + }, + { + "Type": 6, + "SubTag": "YU", + "Description": [ + "Yugoslavia" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2003-07-23", + "Comments": [ + "see BA, HR, ME, MK, RS, or SI" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "YU" + }, + { + "Type": 6, + "SubTag": "ZA", + "Description": [ + "South Africa" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ZA" + }, + { + "Type": 6, + "SubTag": "ZM", + "Description": [ + "Zambia" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ZM" + }, + { + "Type": 6, + "SubTag": "ZR", + "Description": [ + "Zaire" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "1997-07-14", + "Comments": [], + "Prefix": [], + "PreferredValue": "CD", + "Tag": "", + "TagAny": "ZR" + }, + { + "Type": 6, + "SubTag": "ZW", + "Description": [ + "Zimbabwe" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ZW" + }, + { + "Type": 6, + "SubTag": "ZZ", + "Description": [ + "Private use" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "ZZ" + }, + { + "Type": 6, + "SubTag": "001", + "Description": [ + "World" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "001" + }, + { + "Type": 6, + "SubTag": "002", + "Description": [ + "Africa" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "002" + }, + { + "Type": 6, + "SubTag": "003", + "Description": [ + "North America" + ], + "Added": "2010-08-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [ + "Includes Northern America (021), Caribbean (029), and Central America (013); see also 021" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "003" + }, + { + "Type": 6, + "SubTag": "005", + "Description": [ + "South America" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "005" + }, + { + "Type": 6, + "SubTag": "009", + "Description": [ + "Oceania" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "009" + }, + { + "Type": 6, + "SubTag": "011", + "Description": [ + "Western Africa" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "011" + }, + { + "Type": 6, + "SubTag": "013", + "Description": [ + "Central America" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "013" + }, + { + "Type": 6, + "SubTag": "014", + "Description": [ + "Eastern Africa" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "014" + }, + { + "Type": 6, + "SubTag": "015", + "Description": [ + "Northern Africa" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "015" + }, + { + "Type": 6, + "SubTag": "017", + "Description": [ + "Middle Africa" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "017" + }, + { + "Type": 6, + "SubTag": "018", + "Description": [ + "Southern Africa" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "018" + }, + { + "Type": 6, + "SubTag": "019", + "Description": [ + "Americas" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "019" + }, + { + "Type": 6, + "SubTag": "021", + "Description": [ + "Northern America" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [ + "Does not include Caribbean (029) or Central America (013); see also 003" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "021" + }, + { + "Type": 6, + "SubTag": "029", + "Description": [ + "Caribbean" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "029" + }, + { + "Type": 6, + "SubTag": "030", + "Description": [ + "Eastern Asia" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "030" + }, + { + "Type": 6, + "SubTag": "034", + "Description": [ + "Southern Asia" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "034" + }, + { + "Type": 6, + "SubTag": "035", + "Description": [ + "South-Eastern Asia" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "035" + }, + { + "Type": 6, + "SubTag": "039", + "Description": [ + "Southern Europe" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "039" + }, + { + "Type": 6, + "SubTag": "053", + "Description": [ + "Australia and New Zealand" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "053" + }, + { + "Type": 6, + "SubTag": "054", + "Description": [ + "Melanesia" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "054" + }, + { + "Type": 6, + "SubTag": "057", + "Description": [ + "Micronesia" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "057" + }, + { + "Type": 6, + "SubTag": "061", + "Description": [ + "Polynesia" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "061" + }, + { + "Type": 6, + "SubTag": "142", + "Description": [ + "Asia" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "142" + }, + { + "Type": 6, + "SubTag": "143", + "Description": [ + "Central Asia" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "143" + }, + { + "Type": 6, + "SubTag": "145", + "Description": [ + "Western Asia" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "145" + }, + { + "Type": 6, + "SubTag": "150", + "Description": [ + "Europe" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "150" + }, + { + "Type": 6, + "SubTag": "151", + "Description": [ + "Eastern Europe" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "151" + }, + { + "Type": 6, + "SubTag": "154", + "Description": [ + "Northern Europe" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "154" + }, + { + "Type": 6, + "SubTag": "155", + "Description": [ + "Western Europe" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "155" + }, + { + "Type": 6, + "SubTag": "202", + "Description": [ + "Sub-Saharan Africa" + ], + "Added": "2017-04-18", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "202" + }, + { + "Type": 6, + "SubTag": "419", + "Description": [ + "Latin America and the Caribbean" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "419" + }, + { + "Type": 4, + "SubTag": "1606nict", + "Description": [ + "Late Middle French (to 1606)" + ], + "Added": "2007-03-20", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "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" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "1606nict" + }, + { + "Type": 4, + "SubTag": "1694acad", + "Description": [ + "Early Modern French" + ], + "Added": "2007-03-20", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "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" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "1694acad" + }, + { + "Type": 4, + "SubTag": "1901", + "Description": [ + "Traditional German orthography" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "de" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "1901" + }, + { + "Type": 4, + "SubTag": "1959acad", + "Description": [ + "\u0022Academic\u0022 (\u0022governmental\u0022) variant of Belarusian as codified in 1959" + ], + "Added": "2008-09-30", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "be" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "1959acad" + }, + { + "Type": 4, + "SubTag": "1994", + "Description": [ + "Standardized Resian orthography" + ], + "Added": "2007-07-28", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "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" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "1994" + }, + { + "Type": 4, + "SubTag": "1996", + "Description": [ + "German orthography of 1996" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "de" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "1996" + }, + { + "Type": 4, + "SubTag": "abl1943", + "Description": [ + "Orthographic formulation of 1943 - Official in Brazil (Formul\u00E1rio Ortogr\u00E1fico de 1943 - Oficial no Brasil)" + ], + "Added": "2015-05-06", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [ + "Denotes conventions established by the Academia Brasileira de Letras in 1943 and generally used in Brazil until 2009" + ], + "Prefix": [ + "pt-BR" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "abl1943" + }, + { + "Type": 4, + "SubTag": "akuapem", + "Description": [ + "Akuapem Twi" + ], + "Added": "2017-06-05", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "tw" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "akuapem" + }, + { + "Type": 4, + "SubTag": "alalc97", + "Description": [ + "ALA-LC Romanization, 1997 edition" + ], + "Added": "2009-12-09", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "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": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "alalc97" + }, + { + "Type": 4, + "SubTag": "aluku", + "Description": [ + "Aluku dialect", + "Boni dialect" + ], + "Added": "2009-09-05", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [ + "Aluku dialect of the \u0022Busi Nenge Tongo\u0022 English-based Creole continuum in Eastern Suriname and Western French Guiana" + ], + "Prefix": [ + "djk" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "aluku" + }, + { + "Type": 4, + "SubTag": "anpezo", + "Description": [ + "Anpezo standard of Ladin" + ], + "Added": "2024-03-04", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [ + "Represents the standard written form of Ladin in Anpezo" + ], + "Prefix": [ + "lld" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "anpezo" + }, + { + "Type": 4, + "SubTag": "ao1990", + "Description": [ + "Portuguese Language Orthographic Agreement of 1990 (Acordo Ortogr\u00E1fico da L\u00EDngua Portuguesa de 1990)" + ], + "Added": "2015-05-06", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [ + "Portuguese orthography conventions established in 1990 but not brought into effect until 2009" + ], + "Prefix": [ + "pt", + "gl" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "ao1990" + }, + { + "Type": 4, + "SubTag": "aranes", + "Description": [ + "Aranese" + ], + "Added": "2018-04-22", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [ + "Occitan variant spoken in the Val d\u0027Aran" + ], + "Prefix": [ + "oc" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "aranes" + }, + { + "Type": 4, + "SubTag": "arevela", + "Description": [ + "Eastern Armenian" + ], + "Added": "2006-09-18", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2018-03-24", + "Comments": [ + "Preferred tag is hy" + ], + "Prefix": [ + "hy" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "arevela" + }, + { + "Type": 4, + "SubTag": "arevmda", + "Description": [ + "Western Armenian" + ], + "Added": "2006-09-18", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2018-03-24", + "Comments": [ + "Preferred tag is hyw" + ], + "Prefix": [ + "hy" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "arevmda" + }, + { + "Type": 4, + "SubTag": "arkaika", + "Description": [ + "Arcaicam Esperantom", + "Arkaika Esperanto" + ], + "Added": "2020-12-17", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [ + "Archaic Esperanto variant devised by Manuel Halvelik" + ], + "Prefix": [ + "eo" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "arkaika" + }, + { + "Type": 4, + "SubTag": "asante", + "Description": [ + "Asante Twi", + "Ashanti Twi" + ], + "Added": "2017-06-05", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "tw" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "asante" + }, + { + "Type": 4, + "SubTag": "auvern", + "Description": [ + "Auvergnat" + ], + "Added": "2018-04-22", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [ + "Occitan variant spoken in Auvergne" + ], + "Prefix": [ + "oc" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "auvern" + }, + { + "Type": 4, + "SubTag": "baku1926", + "Description": [ + "Unified Turkic Latin Alphabet (Historical)" + ], + "Added": "2007-04-18", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "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" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "baku1926" + }, + { + "Type": 4, + "SubTag": "balanka", + "Description": [ + "The Balanka dialect of Anii" + ], + "Added": "2014-02-15", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [ + "Balanka is one of 19 Anii dialects." + ], + "Prefix": [ + "blo" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "balanka" + }, + { + "Type": 4, + "SubTag": "barla", + "Description": [ + "The Barlavento dialect group of Kabuverdianu" + ], + "Added": "2013-12-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [ + "Barlavento is one of the two main dialect groups of Kabuverdianu." + ], + "Prefix": [ + "kea" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "barla" + }, + { + "Type": 4, + "SubTag": "basiceng", + "Description": [ + "Basic English" + ], + "Added": "2015-12-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "en" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "basiceng" + }, + { + "Type": 4, + "SubTag": "bauddha", + "Description": [ + "Buddhist Hybrid Sanskrit" + ], + "Added": "2010-07-28", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sa" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "bauddha" + }, + { + "Type": 4, + "SubTag": "bciav", + "Description": [ + "BCI Blissymbolics AV" + ], + "Added": "2023-05-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "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" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "bciav" + }, + { + "Type": 4, + "SubTag": "bcizbl", + "Description": [ + "BCI Blissymbolics" + ], + "Added": "2023-05-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [ + "Name given to the variety of Blissymbolics curated by Blissymbolics Communication International" + ], + "Prefix": [ + "zbl" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "bcizbl" + }, + { + "Type": 4, + "SubTag": "biscayan", + "Description": [ + "Biscayan dialect of Basque" + ], + "Added": "2010-04-13", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "eu" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "biscayan" + }, + { + "Type": 4, + "SubTag": "biske", + "Description": [ + "The San Giorgio dialect of Resian", + "The Bila dialect of Resian" + ], + "Added": "2007-07-05", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [ + "The dialect of San Giorgio/Bila is one of the four major local dialects of Resian" + ], + "Prefix": [ + "sl-rozaj" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "biske" + }, + { + "Type": 4, + "SubTag": "blasl", + "Description": [ + "Black American Sign Language dialect" + ], + "Added": "2023-07-31", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [ + "Black American Sign Language (BASL) or Black Sign Variation (BSV) is a dialect of American Sign Language (ASL)" + ], + "Prefix": [ + "ase", + "sgn-ase" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "blasl" + }, + { + "Type": 4, + "SubTag": "bohoric", + "Description": [ + "Slovene in Bohori\u010D alphabet" + ], + "Added": "2012-06-27", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "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" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "bohoric" + }, + { + "Type": 4, + "SubTag": "boont", + "Description": [ + "Boontling" + ], + "Added": "2006-09-18", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [ + "Jargon embedded in American English" + ], + "Prefix": [ + "en" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "boont" + }, + { + "Type": 4, + "SubTag": "bornholm", + "Description": [ + "Bornholmsk" + ], + "Added": "2019-03-27", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "da" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "bornholm" + }, + { + "Type": 4, + "SubTag": "cisaup", + "Description": [ + "Cisalpine" + ], + "Added": "2018-04-22", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [ + "Occitan variant spoken in northwestern Italy" + ], + "Prefix": [ + "oc" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "cisaup" + }, + { + "Type": 4, + "SubTag": "colb1945", + "Description": [ + "Portuguese-Brazilian Orthographic Convention of 1945 (Conven\u00E7\u00E3o Ortogr\u00E1fica Luso-Brasileira de 1945)" + ], + "Added": "2015-05-06", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [ + "Portuguese orthography conventions established in 1945, generally in effect until 2009. This reform was not ratified in Brazil." + ], + "Prefix": [ + "pt" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "colb1945" + }, + { + "Type": 4, + "SubTag": "cornu", + "Description": [ + "Cornu-English", + "Cornish English", + "Anglo-Cornish" + ], + "Added": "2015-12-07", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "en" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "cornu" + }, + { + "Type": 4, + "SubTag": "creiss", + "Description": [ + "Occitan variants of the Croissant area" + ], + "Added": "2018-04-22", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "oc" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "creiss" + }, + { + "Type": 4, + "SubTag": "dajnko", + "Description": [ + "Slovene in Dajnko alphabet" + ], + "Added": "2012-06-27", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "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" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "dajnko" + }, + { + "Type": 4, + "SubTag": "ekavsk", + "Description": [ + "Serbian with Ekavian pronunciation" + ], + "Added": "2013-12-02", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sr", + "sr-Latn", + "sr-Cyrl" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "ekavsk" + }, + { + "Type": 4, + "SubTag": "emodeng", + "Description": [ + "Early Modern English (1500-1700)" + ], + "Added": "2012-02-05", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "en" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "emodeng" + }, + { + "Type": 4, + "SubTag": "fascia", + "Description": [ + "Fascia standard of Ladin" + ], + "Added": "2024-03-04", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [ + "Represents the standard written form of Ladin in Fascia which unified the three subvarieties Cazet, Brach and Moenat" + ], + "Prefix": [ + "lld" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "fascia" + }, + { + "Type": 4, + "SubTag": "fodom", + "Description": [ + "Fodom standard of Ladin" + ], + "Added": "2024-03-04", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [ + "Represents the standard written form of Ladin in Livinallongo and Colle Santa Lucia" + ], + "Prefix": [ + "lld" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "fodom" + }, + { + "Type": 4, + "SubTag": "fonipa", + "Description": [ + "International Phonetic Alphabet" + ], + "Added": "2006-12-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "fonipa" + }, + { + "Type": 4, + "SubTag": "fonkirsh", + "Description": [ + "Kirshenbaum Phonetic Alphabet" + ], + "Added": "2018-04-22", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "fonkirsh" + }, + { + "Type": 4, + "SubTag": "fonnapa", + "Description": [ + "North American Phonetic Alphabet", + "Americanist Phonetic Notation" + ], + "Added": "2016-06-24", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "fonnapa" + }, + { + "Type": 4, + "SubTag": "fonupa", + "Description": [ + "Uralic Phonetic Alphabet" + ], + "Added": "2006-12-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "fonupa" + }, + { + "Type": 4, + "SubTag": "fonxsamp", + "Description": [ + "X-SAMPA transcription" + ], + "Added": "2010-10-23", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [ + "Indicates that the content is transcribed according to X-SAMPA" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "fonxsamp" + }, + { + "Type": 4, + "SubTag": "gallo", + "Description": [ + "Gallo" + ], + "Added": "2021-08-05", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "fr" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "gallo" + }, + { + "Type": 4, + "SubTag": "gascon", + "Description": [ + "Gascon" + ], + "Added": "2018-04-22", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [ + "Occitan variant spoken in Gascony" + ], + "Prefix": [ + "oc" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "gascon" + }, + { + "Type": 4, + "SubTag": "gherd", + "Description": [ + "Gherd\u00EBina standard of Ladin" + ], + "Added": "2024-03-04", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [ + "Represents the standard written form of Ladin in Gherd\u00EBina" + ], + "Prefix": [ + "lld" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "gherd" + }, + { + "Type": 4, + "SubTag": "grclass", + "Description": [ + "Classical Occitan orthography" + ], + "Added": "2018-04-22", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "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" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "grclass" + }, + { + "Type": 4, + "SubTag": "grital", + "Description": [ + "Italian-inspired Occitan orthography" + ], + "Added": "2018-04-22", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "oc", + "oc-cisaup", + "oc-nicard", + "oc-provenc" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "grital" + }, + { + "Type": 4, + "SubTag": "grmistr", + "Description": [ + "Mistralian or Mistralian-inspired Occitan orthography" + ], + "Added": "2018-04-22", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "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" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "grmistr" + }, + { + "Type": 4, + "SubTag": "hanoi", + "Description": [ + "The H\u00E0 N\u1ED9i variant of Vietnamese" + ], + "Added": "2025-03-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "vi" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "hanoi" + }, + { + "Type": 4, + "SubTag": "hepburn", + "Description": [ + "Hepburn romanization" + ], + "Added": "2009-10-01", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "ja-Latn" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "hepburn" + }, + { + "Type": 4, + "SubTag": "heploc", + "Description": [ + "Hepburn romanization, Library of Congress method" + ], + "Added": "2009-10-01", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2010-02-07", + "Comments": [ + "Preferred tag is ja-Latn-alalc97" + ], + "Prefix": [ + "ja-Latn-hepburn" + ], + "PreferredValue": "alalc97", + "Tag": "", + "TagAny": "heploc" + }, + { + "Type": 4, + "SubTag": "hognorsk", + "Description": [ + "Norwegian in H\u00F8gnorsk (High Norwegian) orthography" + ], + "Added": "2010-01-02", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [ + "Norwegian following Ivar Aasen\u0027s orthographical principles, including modern usage." + ], + "Prefix": [ + "nn" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "hognorsk" + }, + { + "Type": 4, + "SubTag": "hsistemo", + "Description": [ + "Standard H-system orthographic fallback for spelling Esperanto" + ], + "Added": "2017-03-14", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "eo" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "hsistemo" + }, + { + "Type": 4, + "SubTag": "huett", + "Description": [ + "The Hu\u1EBF (province Th\u1EEBa Thi\u00EAn) variant of Vietnamese" + ], + "Added": "2025-03-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "vi" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "huett" + }, + { + "Type": 4, + "SubTag": "ijekavsk", + "Description": [ + "Serbian with Ijekavian pronunciation" + ], + "Added": "2013-12-02", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sr", + "sr-Latn", + "sr-Cyrl" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "ijekavsk" + }, + { + "Type": 4, + "SubTag": "itihasa", + "Description": [ + "Epic Sanskrit" + ], + "Added": "2010-07-28", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sa" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "itihasa" + }, + { + "Type": 4, + "SubTag": "ivanchov", + "Description": [ + "Bulgarian in 1899 orthography" + ], + "Added": "2017-12-13", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [ + "Bulgarian orthography introduced by Todor Ivanchov in 1899" + ], + "Prefix": [ + "bg" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "ivanchov" + }, + { + "Type": 4, + "SubTag": "jauer", + "Description": [ + "Jauer dialect of Romansh" + ], + "Added": "2010-06-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [ + "The spoken dialect of the Val M\u00FCstair, which has no written standard." + ], + "Prefix": [ + "rm" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "jauer" + }, + { + "Type": 4, + "SubTag": "jyutping", + "Description": [ + "Jyutping Cantonese Romanization" + ], + "Added": "2010-10-23", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [ + "Jyutping romanization of Cantonese" + ], + "Prefix": [ + "yue" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "jyutping" + }, + { + "Type": 4, + "SubTag": "kkcor", + "Description": [ + "Common Cornish orthography of Revived Cornish" + ], + "Added": "2008-10-14", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "kw" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "kkcor" + }, + { + "Type": 4, + "SubTag": "kleinsch", + "Description": [ + "Kleinschmidt orthography", + "Allattaasitaamut" + ], + "Added": "2024-07-20", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [ + "Orthography for Greenlandic designed by Samuel Kleinschmidt, used from 1851 to 1973." + ], + "Prefix": [ + "kl", + "kl-tunumiit" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "kleinsch" + }, + { + "Type": 4, + "SubTag": "kociewie", + "Description": [ + "The Kociewie dialect of Polish" + ], + "Added": "2014-11-27", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [ + "The dialect of Kociewie is spoken in the region around Starogard Gda\u0144ski, Tczew and \u015Awiecie in northern Poland." + ], + "Prefix": [ + "pl" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "kociewie" + }, + { + "Type": 4, + "SubTag": "kscor", + "Description": [ + "Standard Cornish orthography of Revived Cornish", + "Kernowek Standard" + ], + "Added": "2012-06-27", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "kw" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "kscor" + }, + { + "Type": 4, + "SubTag": "laukika", + "Description": [ + "Classical Sanskrit" + ], + "Added": "2010-07-28", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2024-06-08", + "Comments": [ + "Preferred tag is cls" + ], + "Prefix": [ + "sa" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "laukika" + }, + { + "Type": 4, + "SubTag": "leidentr", + "Description": [ + "Ancient Egyptian in Leiden Unified Transliteration" + ], + "Added": "2025-02-06", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [ + "Recommended by the International Association of Egyptologists" + ], + "Prefix": [ + "egy" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "leidentr" + }, + { + "Type": 4, + "SubTag": "lemosin", + "Description": [ + "Limousin" + ], + "Added": "2018-04-22", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [ + "Occitan variant spoken in Limousin" + ], + "Prefix": [ + "oc" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "lemosin" + }, + { + "Type": 4, + "SubTag": "lengadoc", + "Description": [ + "Languedocien" + ], + "Added": "2018-04-22", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [ + "Occitan variant spoken in Languedoc" + ], + "Prefix": [ + "oc" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "lengadoc" + }, + { + "Type": 4, + "SubTag": "lipaw", + "Description": [ + "The Lipovaz dialect of Resian", + "The Lipovec dialect of Resian" + ], + "Added": "2007-08-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [ + "The dialect of Lipovaz/Lipovec is one of the minor local dialects of Resian" + ], + "Prefix": [ + "sl-rozaj" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "lipaw" + }, + { + "Type": 4, + "SubTag": "ltg1929", + "Description": [ + "The Latgalian language orthography codified in 1929" + ], + "Added": "2022-08-05", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "ltg" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "ltg1929" + }, + { + "Type": 4, + "SubTag": "ltg2007", + "Description": [ + "The Latgalian language orthography codified in the language law in 2007" + ], + "Added": "2022-06-23", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "ltg" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "ltg2007" + }, + { + "Type": 4, + "SubTag": "luna1918", + "Description": [ + "Post-1917 Russian orthography" + ], + "Added": "2010-10-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [ + "Russian orthography as established by the 1917/1918 orthographic reforms" + ], + "Prefix": [ + "ru" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "luna1918" + }, + { + "Type": 4, + "SubTag": "mdcegyp", + "Description": [ + "Ancient Egyptian hieroglyphs encoded in Manuel de Codage" + ], + "Added": "2025-02-06", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "egy" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "mdcegyp" + }, + { + "Type": 4, + "SubTag": "mdctrans", + "Description": [ + "Ancient Egyptian transliteration encoded in Manuel de Codage" + ], + "Added": "2025-02-06", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "egy" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "mdctrans" + }, + { + "Type": 4, + "SubTag": "metelko", + "Description": [ + "Slovene in Metelko alphabet" + ], + "Added": "2012-06-27", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [ + "The subtag represents the alphabet codified by Franc Serafin Metelko and used from 1825 to 1833." + ], + "Prefix": [ + "sl" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "metelko" + }, + { + "Type": 4, + "SubTag": "monoton", + "Description": [ + "Monotonic Greek" + ], + "Added": "2006-12-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "el" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "monoton" + }, + { + "Type": 4, + "SubTag": "ndyuka", + "Description": [ + "Ndyuka dialect", + "Aukan dialect" + ], + "Added": "2009-09-05", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [ + "Ndyuka dialect of the \u0022Busi Nenge Tongo\u0022 English-based Creole continuum in Eastern Suriname and Western French Guiana" + ], + "Prefix": [ + "djk" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "ndyuka" + }, + { + "Type": 4, + "SubTag": "nedis", + "Description": [ + "Natisone dialect", + "Nadiza dialect" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sl" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "nedis" + }, + { + "Type": 4, + "SubTag": "newfound", + "Description": [ + "Newfoundland English" + ], + "Added": "2015-11-25", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "en-CA" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "newfound" + }, + { + "Type": 4, + "SubTag": "nicard", + "Description": [ + "Ni\u00E7ard" + ], + "Added": "2018-04-22", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [ + "Occitan variant spoken in Nice" + ], + "Prefix": [ + "oc" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "nicard" + }, + { + "Type": 4, + "SubTag": "njiva", + "Description": [ + "The Gniva dialect of Resian", + "The Njiva dialect of Resian" + ], + "Added": "2007-07-05", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [ + "The dialect of Gniva/Njiva is one of the four major local dialects of Resian" + ], + "Prefix": [ + "sl-rozaj" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "njiva" + }, + { + "Type": 4, + "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", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "vo" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "nulik" + }, + { + "Type": 4, + "SubTag": "osojs", + "Description": [ + "The Oseacco dialect of Resian", + "The Osojane dialect of Resian" + ], + "Added": "2007-07-05", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [ + "The dialect of Oseacco/Osojane is one of the four major local dialects of Resian" + ], + "Prefix": [ + "sl-rozaj" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "osojs" + }, + { + "Type": 4, + "SubTag": "oxendict", + "Description": [ + "Oxford English Dictionary spelling" + ], + "Added": "2015-04-17", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "en" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "oxendict" + }, + { + "Type": 4, + "SubTag": "pahawh2", + "Description": [ + "Pahawh Hmong Second Stage Reduced orthography" + ], + "Added": "2017-01-13", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "mww", + "hnj" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "pahawh2" + }, + { + "Type": 4, + "SubTag": "pahawh3", + "Description": [ + "Pahawh Hmong Third Stage Reduced orthography" + ], + "Added": "2017-01-13", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "mww", + "hnj" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "pahawh3" + }, + { + "Type": 4, + "SubTag": "pahawh4", + "Description": [ + "Pahawh Hmong Final Version orthography" + ], + "Added": "2017-01-13", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "mww", + "hnj" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "pahawh4" + }, + { + "Type": 4, + "SubTag": "pamaka", + "Description": [ + "Pamaka dialect" + ], + "Added": "2009-09-05", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [ + "Pamaka dialect of the \u0022Busi Nenge Tongo\u0022 English-based Creole continuum in Eastern Suriname and Western French Guiana" + ], + "Prefix": [ + "djk" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "pamaka" + }, + { + "Type": 4, + "SubTag": "peano", + "Description": [ + "Latino Sine Flexione", + "Interlingua de API", + "Interlingua de Peano" + ], + "Added": "2020-03-12", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [ + "Peano\u2019s Interlingua, created in 1903 by Giuseppe Peano as an international auxiliary language" + ], + "Prefix": [ + "la" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "peano" + }, + { + "Type": 4, + "SubTag": "pehoeji", + "Description": [ + "Hokkien Vernacular Romanization System", + "Pe\u030Dh-\u014De-j\u012B orthography/romanization" + ], + "Added": "2024-03-04", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [ + "Modern Hokkien Vernacular Romanization System, evolved from the New Dictionary in the Amoy by John Van Nest Talmage in 1894" + ], + "Prefix": [ + "nan-Latn" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "pehoeji" + }, + { + "Type": 4, + "SubTag": "petr1708", + "Description": [ + "Petrine orthography" + ], + "Added": "2010-10-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [ + "Russian orthography from the Petrine orthographic reforms of 1708 to the 1917 orthographic reform" + ], + "Prefix": [ + "ru" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "petr1708" + }, + { + "Type": 4, + "SubTag": "pinyin", + "Description": [ + "Pinyin romanization" + ], + "Added": "2008-10-14", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "zh-Latn", + "bo-Latn" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "pinyin" + }, + { + "Type": 4, + "SubTag": "polyton", + "Description": [ + "Polytonic Greek" + ], + "Added": "2006-12-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "el" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "polyton" + }, + { + "Type": 4, + "SubTag": "provenc", + "Description": [ + "Proven\u00E7al" + ], + "Added": "2018-04-22", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [ + "Occitan variant spoken in Provence" + ], + "Prefix": [ + "oc" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "provenc" + }, + { + "Type": 4, + "SubTag": "puter", + "Description": [ + "Puter idiom of Romansh" + ], + "Added": "2010-06-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [ + "Puter is one of the five traditional written standards or \u0022idioms\u0022 of the Romansh language." + ], + "Prefix": [ + "rm" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "puter" + }, + { + "Type": 4, + "SubTag": "rigik", + "Description": [ + "Volap\u00FCk rigik", + "Schleyer\u0027s Volap\u00FCk", + "Original Volap\u00FCk", + "Classic Volap\u00FCk" + ], + "Added": "2012-01-28", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "vo" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "rigik" + }, + { + "Type": 4, + "SubTag": "rozaj", + "Description": [ + "Resian", + "Resianic", + "Rezijan" + ], + "Added": "2005-10-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sl" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "rozaj" + }, + { + "Type": 4, + "SubTag": "rumgr", + "Description": [ + "Rumantsch Grischun" + ], + "Added": "2010-06-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [ + "Supraregional Romansh written standard" + ], + "Prefix": [ + "rm" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "rumgr" + }, + { + "Type": 4, + "SubTag": "saigon", + "Description": [ + "The S\u00E0i G\u00F2n variant of Vietnamese" + ], + "Added": "2025-03-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "vi" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "saigon" + }, + { + "Type": 4, + "SubTag": "scotland", + "Description": [ + "Scottish Standard English" + ], + "Added": "2007-08-31", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "en" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "scotland" + }, + { + "Type": 4, + "SubTag": "scouse", + "Description": [ + "Scouse" + ], + "Added": "2006-09-18", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [ + "English Liverpudlian dialect known as \u0027Scouse\u0027" + ], + "Prefix": [ + "en" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "scouse" + }, + { + "Type": 4, + "SubTag": "simple", + "Description": [ + "Simplified form" + ], + "Added": "2015-12-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "", + "TagAny": "simple" + }, + { + "Type": 4, + "SubTag": "solba", + "Description": [ + "The Stolvizza dialect of Resian", + "The Solbica dialect of Resian" + ], + "Added": "2007-07-05", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [ + "The dialect of Stolvizza/Solbica is one of the four major local dialects of Resian" + ], + "Prefix": [ + "sl-rozaj" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "solba" + }, + { + "Type": 4, + "SubTag": "sotav", + "Description": [ + "The Sotavento dialect group of Kabuverdianu" + ], + "Added": "2013-12-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [ + "Sotavento is one of the two main dialect groups of Kabuverdianu." + ], + "Prefix": [ + "kea" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "sotav" + }, + { + "Type": 4, + "SubTag": "spanglis", + "Description": [ + "Spanglish" + ], + "Added": "2017-02-23", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [ + "A variety of contact dialects of English and Spanish" + ], + "Prefix": [ + "en", + "es" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "spanglis" + }, + { + "Type": 4, + "SubTag": "surmiran", + "Description": [ + "Surmiran idiom of Romansh" + ], + "Added": "2010-06-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [ + "Surmiran is one of the five traditional written standards or \u0022idioms\u0022 of the Romansh language." + ], + "Prefix": [ + "rm" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "surmiran" + }, + { + "Type": 4, + "SubTag": "sursilv", + "Description": [ + "Sursilvan idiom of Romansh" + ], + "Added": "2010-06-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [ + "Sursilvan is one of the five traditional written standards or \u0022idioms\u0022 of the Romansh language." + ], + "Prefix": [ + "rm" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "sursilv" + }, + { + "Type": 4, + "SubTag": "sutsilv", + "Description": [ + "Sutsilvan idiom of Romansh" + ], + "Added": "2010-06-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [ + "Sutsilvan is one of the five traditional written standards or \u0022idioms\u0022 of the Romansh language." + ], + "Prefix": [ + "rm" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "sutsilv" + }, + { + "Type": 4, + "SubTag": "synnejyl", + "Description": [ + "Synnejysk", + "South Jutish" + ], + "Added": "2021-07-17", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "da" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "synnejyl" + }, + { + "Type": 4, + "SubTag": "tailo", + "Description": [ + "Taiwanese Hokkien Romanization System for Hokkien languages", + "T\u00E2i-l\u00F4 orthography/romanization" + ], + "Added": "2024-03-04", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [ + "Taiwanese Hokkien Romanization System (T\u00E2i-l\u00F4) published in 2006 by the Taiwan Ministry of Education" + ], + "Prefix": [ + "nan-Latn" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "tailo" + }, + { + "Type": 4, + "SubTag": "tarask", + "Description": [ + "Belarusian in Taraskievica orthography" + ], + "Added": "2007-04-27", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "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" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "tarask" + }, + { + "Type": 4, + "SubTag": "tongyong", + "Description": [ + "Tongyong Pinyin romanization" + ], + "Added": "2020-06-08", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [ + "Former official transcription standard for Mandarin Chinese in Taiwan." + ], + "Prefix": [ + "zh-Latn" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "tongyong" + }, + { + "Type": 4, + "SubTag": "tunumiit", + "Description": [ + "Tunumiisiut", + "East Greenlandic", + "\u00D8stgr\u00F8nlandsk" + ], + "Added": "2020-07-16", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [ + "Also known as Tunumiit oraasiat" + ], + "Prefix": [ + "kl" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "tunumiit" + }, + { + "Type": 4, + "SubTag": "uccor", + "Description": [ + "Unified Cornish orthography of Revived Cornish" + ], + "Added": "2008-10-14", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "kw" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "uccor" + }, + { + "Type": 4, + "SubTag": "ucrcor", + "Description": [ + "Unified Cornish Revised orthography of Revived Cornish" + ], + "Added": "2008-10-14", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "kw" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "ucrcor" + }, + { + "Type": 4, + "SubTag": "ulster", + "Description": [ + "Ulster dialect of Scots" + ], + "Added": "2010-04-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "sco" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "ulster" + }, + { + "Type": 4, + "SubTag": "unifon", + "Description": [ + "Unifon phonetic alphabet" + ], + "Added": "2013-10-02", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "en", + "hup", + "kyh", + "tol", + "yur" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "unifon" + }, + { + "Type": 4, + "SubTag": "vaidika", + "Description": [ + "Vedic Sanskrit" + ], + "Added": "2010-07-28", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "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" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "vaidika" + }, + { + "Type": 4, + "SubTag": "valbadia", + "Description": [ + "Val Badia standard of Ladin" + ], + "Added": "2024-03-04", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "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" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "valbadia" + }, + { + "Type": 4, + "SubTag": "valencia", + "Description": [ + "Valencian" + ], + "Added": "2007-03-06", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [ + "Variety spoken in the \u0022Comunidad Valenciana\u0022 region of Spain, where it is co-official with Spanish." + ], + "Prefix": [ + "ca" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "valencia" + }, + { + "Type": 4, + "SubTag": "vallader", + "Description": [ + "Vallader idiom of Romansh" + ], + "Added": "2010-06-29", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [ + "Vallader is one of the five traditional written standards or \u0022idioms\u0022 of the Romansh language." + ], + "Prefix": [ + "rm" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "vallader" + }, + { + "Type": 4, + "SubTag": "vecdruka", + "Description": [ + "Latvian orthography used before 1920s (\u0022vec\u0101 druka\u0022)" + ], + "Added": "2020-09-26", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [ + "The subtag represents the old orthography of the Latvian language used during c. 1600s\u20131920s." + ], + "Prefix": [ + "lv" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "vecdruka" + }, + { + "Type": 4, + "SubTag": "vivaraup", + "Description": [ + "Vivaro-Alpine" + ], + "Added": "2018-04-22", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [ + "Occitan variant spoken in northeastern Occitania" + ], + "Prefix": [ + "oc" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "vivaraup" + }, + { + "Type": 4, + "SubTag": "wadegile", + "Description": [ + "Wade-Giles romanization" + ], + "Added": "2008-10-03", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "zh-Latn" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "wadegile" + }, + { + "Type": 4, + "SubTag": "xsistemo", + "Description": [ + "Standard X-system orthographic fallback for spelling Esperanto" + ], + "Added": "2017-03-14", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [ + "eo" + ], + "PreferredValue": "", + "Tag": "", + "TagAny": "xsistemo" + }, + { + "Type": 5, + "SubTag": "", + "Description": [ + "Lojban" + ], + "Added": "2001-11-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2003-09-02", + "Comments": [], + "Prefix": [], + "PreferredValue": "jbo", + "Tag": "art-lojban", + "TagAny": "art-lojban" + }, + { + "Type": 5, + "SubTag": "", + "Description": [ + "Gaulish" + ], + "Added": "2001-05-25", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2015-03-29", + "Comments": [ + "see xcg, xga, xtg" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "cel-gaulish", + "TagAny": "cel-gaulish" + }, + { + "Type": 5, + "SubTag": "", + "Description": [ + "English, Oxford English Dictionary spelling" + ], + "Added": "2003-07-09", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2015-04-17", + "Comments": [], + "Prefix": [], + "PreferredValue": "en-GB-oxendict", + "Tag": "en-GB-oed", + "TagAny": "en-GB-oed" + }, + { + "Type": 5, + "SubTag": "", + "Description": [ + "Amis" + ], + "Added": "1999-05-25", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2009-07-29", + "Comments": [], + "Prefix": [], + "PreferredValue": "ami", + "Tag": "i-ami", + "TagAny": "i-ami" + }, + { + "Type": 5, + "SubTag": "", + "Description": [ + "Bunun" + ], + "Added": "1999-05-25", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2009-07-29", + "Comments": [], + "Prefix": [], + "PreferredValue": "bnn", + "Tag": "i-bnn", + "TagAny": "i-bnn" + }, + { + "Type": 5, + "SubTag": "", + "Description": [ + "Default Language" + ], + "Added": "1998-03-10", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "i-default", + "TagAny": "i-default" + }, + { + "Type": 5, + "SubTag": "", + "Description": [ + "Enochian" + ], + "Added": "2002-07-03", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2015-03-29", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "i-enochian", + "TagAny": "i-enochian" + }, + { + "Type": 5, + "SubTag": "", + "Description": [ + "Hakka" + ], + "Added": "1999-01-31", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2000-01-10", + "Comments": [], + "Prefix": [], + "PreferredValue": "hak", + "Tag": "i-hak", + "TagAny": "i-hak" + }, + { + "Type": 5, + "SubTag": "", + "Description": [ + "Klingon" + ], + "Added": "1999-05-26", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2004-02-24", + "Comments": [], + "Prefix": [], + "PreferredValue": "tlh", + "Tag": "i-klingon", + "TagAny": "i-klingon" + }, + { + "Type": 5, + "SubTag": "", + "Description": [ + "Luxembourgish" + ], + "Added": "1997-09-19", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "1998-09-09", + "Comments": [], + "Prefix": [], + "PreferredValue": "lb", + "Tag": "i-lux", + "TagAny": "i-lux" + }, + { + "Type": 5, + "SubTag": "", + "Description": [ + "Mingo" + ], + "Added": "1997-09-19", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "i-mingo", + "TagAny": "i-mingo" + }, + { + "Type": 5, + "SubTag": "", + "Description": [ + "Navajo" + ], + "Added": "1997-09-19", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2000-02-18", + "Comments": [], + "Prefix": [], + "PreferredValue": "nv", + "Tag": "i-navajo", + "TagAny": "i-navajo" + }, + { + "Type": 5, + "SubTag": "", + "Description": [ + "Paiwan" + ], + "Added": "1999-05-25", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2009-07-29", + "Comments": [], + "Prefix": [], + "PreferredValue": "pwn", + "Tag": "i-pwn", + "TagAny": "i-pwn" + }, + { + "Type": 5, + "SubTag": "", + "Description": [ + "Tao" + ], + "Added": "1999-05-25", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2009-07-29", + "Comments": [], + "Prefix": [], + "PreferredValue": "tao", + "Tag": "i-tao", + "TagAny": "i-tao" + }, + { + "Type": 5, + "SubTag": "", + "Description": [ + "Tayal" + ], + "Added": "1999-05-25", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2009-07-29", + "Comments": [], + "Prefix": [], + "PreferredValue": "tay", + "Tag": "i-tay", + "TagAny": "i-tay" + }, + { + "Type": 5, + "SubTag": "", + "Description": [ + "Tsou" + ], + "Added": "1999-05-25", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2009-07-29", + "Comments": [], + "Prefix": [], + "PreferredValue": "tsu", + "Tag": "i-tsu", + "TagAny": "i-tsu" + }, + { + "Type": 5, + "SubTag": "", + "Description": [ + "Norwegian Bokmal" + ], + "Added": "1995-08-23", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2000-02-18", + "Comments": [], + "Prefix": [], + "PreferredValue": "nb", + "Tag": "no-bok", + "TagAny": "no-bok" + }, + { + "Type": 5, + "SubTag": "", + "Description": [ + "Norwegian Nynorsk" + ], + "Added": "1995-08-23", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2000-02-18", + "Comments": [], + "Prefix": [], + "PreferredValue": "nn", + "Tag": "no-nyn", + "TagAny": "no-nyn" + }, + { + "Type": 5, + "SubTag": "", + "Description": [ + "Belgian-French Sign Language" + ], + "Added": "2001-11-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2009-07-29", + "Comments": [], + "Prefix": [], + "PreferredValue": "sfb", + "Tag": "sgn-BE-FR", + "TagAny": "sgn-BE-FR" + }, + { + "Type": 5, + "SubTag": "", + "Description": [ + "Belgian-Flemish Sign Language" + ], + "Added": "2001-11-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2009-07-29", + "Comments": [], + "Prefix": [], + "PreferredValue": "vgt", + "Tag": "sgn-BE-NL", + "TagAny": "sgn-BE-NL" + }, + { + "Type": 5, + "SubTag": "", + "Description": [ + "Swiss German Sign Language" + ], + "Added": "2001-11-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2009-07-29", + "Comments": [], + "Prefix": [], + "PreferredValue": "sgg", + "Tag": "sgn-CH-DE", + "TagAny": "sgn-CH-DE" + }, + { + "Type": 5, + "SubTag": "", + "Description": [ + "Mandarin or Standard Chinese" + ], + "Added": "1999-12-18", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2005-07-15", + "Comments": [], + "Prefix": [], + "PreferredValue": "cmn", + "Tag": "zh-guoyu", + "TagAny": "zh-guoyu" + }, + { + "Type": 5, + "SubTag": "", + "Description": [ + "Hakka" + ], + "Added": "1999-12-18", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2009-07-29", + "Comments": [], + "Prefix": [], + "PreferredValue": "hak", + "Tag": "zh-hakka", + "TagAny": "zh-hakka" + }, + { + "Type": 5, + "SubTag": "", + "Description": [ + "Min, Fuzhou, Hokkien, Amoy, or Taiwanese" + ], + "Added": "1999-12-18", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2009-07-29", + "Comments": [ + "see cdo, cpx, czo, mnp, nan" + ], + "Prefix": [], + "PreferredValue": "", + "Tag": "zh-min", + "TagAny": "zh-min" + }, + { + "Type": 5, + "SubTag": "", + "Description": [ + "Minnan, Hokkien, Amoy, Taiwanese, Southern Min, Southern Fujian, Hoklo, Southern Fukien, Ho-lo" + ], + "Added": "2001-03-26", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2009-07-29", + "Comments": [], + "Prefix": [], + "PreferredValue": "nan", + "Tag": "zh-min-nan", + "TagAny": "zh-min-nan" + }, + { + "Type": 5, + "SubTag": "", + "Description": [ + "Xiang or Hunanese" + ], + "Added": "1999-12-18", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2009-07-29", + "Comments": [], + "Prefix": [], + "PreferredValue": "hsn", + "Tag": "zh-xiang", + "TagAny": "zh-xiang" + }, + { + "Type": 7, + "SubTag": "", + "Description": [ + "Azerbaijani in Arabic script" + ], + "Added": "2003-05-30", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "az-Arab", + "TagAny": "az-Arab" + }, + { + "Type": 7, + "SubTag": "", + "Description": [ + "Azerbaijani in Cyrillic script" + ], + "Added": "2003-05-30", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "az-Cyrl", + "TagAny": "az-Cyrl" + }, + { + "Type": 7, + "SubTag": "", + "Description": [ + "Azerbaijani in Latin script" + ], + "Added": "2003-05-30", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "az-Latn", + "TagAny": "az-Latn" + }, + { + "Type": 7, + "SubTag": "", + "Description": [ + "Belarusian in Latin script" + ], + "Added": "2005-01-06", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "be-Latn", + "TagAny": "be-Latn" + }, + { + "Type": 7, + "SubTag": "", + "Description": [ + "Bosnian in Cyrillic script" + ], + "Added": "2005-02-17", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "bs-Cyrl", + "TagAny": "bs-Cyrl" + }, + { + "Type": 7, + "SubTag": "", + "Description": [ + "Bosnian in Latin script" + ], + "Added": "2005-02-17", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "bs-Latn", + "TagAny": "bs-Latn" + }, + { + "Type": 7, + "SubTag": "", + "Description": [ + "German, traditional orthography" + ], + "Added": "2001-07-17", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "de-1901", + "TagAny": "de-1901" + }, + { + "Type": 7, + "SubTag": "", + "Description": [ + "German, orthography of 1996" + ], + "Added": "2001-07-17", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "de-1996", + "TagAny": "de-1996" + }, + { + "Type": 7, + "SubTag": "", + "Description": [ + "German, Austrian variant, traditional orthography" + ], + "Added": "2001-07-17", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "de-AT-1901", + "TagAny": "de-AT-1901" + }, + { + "Type": 7, + "SubTag": "", + "Description": [ + "German, Austrian variant, orthography of 1996" + ], + "Added": "2001-07-17", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "de-AT-1996", + "TagAny": "de-AT-1996" + }, + { + "Type": 7, + "SubTag": "", + "Description": [ + "German, Swiss variant, traditional orthography" + ], + "Added": "2001-07-17", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "de-CH-1901", + "TagAny": "de-CH-1901" + }, + { + "Type": 7, + "SubTag": "", + "Description": [ + "German, Swiss variant, orthography of 1996" + ], + "Added": "2001-07-17", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "de-CH-1996", + "TagAny": "de-CH-1996" + }, + { + "Type": 7, + "SubTag": "", + "Description": [ + "German, German variant, traditional orthography" + ], + "Added": "2001-07-17", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "de-DE-1901", + "TagAny": "de-DE-1901" + }, + { + "Type": 7, + "SubTag": "", + "Description": [ + "German, German variant, orthography of 1996" + ], + "Added": "2001-07-17", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "de-DE-1996", + "TagAny": "de-DE-1996" + }, + { + "Type": 7, + "SubTag": "", + "Description": [ + "Boontling" + ], + "Added": "2003-02-14", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "en-boont", + "TagAny": "en-boont" + }, + { + "Type": 7, + "SubTag": "", + "Description": [ + "Scouse" + ], + "Added": "2000-05-25", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "en-scouse", + "TagAny": "en-scouse" + }, + { + "Type": 7, + "SubTag": "", + "Description": [ + "Latin American Spanish" + ], + "Added": "2005-07-15", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "es-419", + "TagAny": "es-419" + }, + { + "Type": 7, + "SubTag": "", + "Description": [ + "Inuktitut in Canadian Aboriginal Syllabic script" + ], + "Added": "2005-02-17", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "iu-Cans", + "TagAny": "iu-Cans" + }, + { + "Type": 7, + "SubTag": "", + "Description": [ + "Inuktitut in Latin script" + ], + "Added": "2005-02-17", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "iu-Latn", + "TagAny": "iu-Latn" + }, + { + "Type": 7, + "SubTag": "", + "Description": [ + "Mongolian in Cyrillic script" + ], + "Added": "2005-02-17", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "mn-Cyrl", + "TagAny": "mn-Cyrl" + }, + { + "Type": 7, + "SubTag": "", + "Description": [ + "Mongolian in Mongolian script" + ], + "Added": "2005-02-17", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "mn-Mong", + "TagAny": "mn-Mong" + }, + { + "Type": 7, + "SubTag": "", + "Description": [ + "Brazilian Sign Language" + ], + "Added": "2001-11-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2009-07-29", + "Comments": [], + "Prefix": [], + "PreferredValue": "bzs", + "Tag": "sgn-BR", + "TagAny": "sgn-BR" + }, + { + "Type": 7, + "SubTag": "", + "Description": [ + "Colombian Sign Language" + ], + "Added": "2001-11-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2009-07-29", + "Comments": [], + "Prefix": [], + "PreferredValue": "csn", + "Tag": "sgn-CO", + "TagAny": "sgn-CO" + }, + { + "Type": 7, + "SubTag": "", + "Description": [ + "German Sign Language" + ], + "Added": "2001-11-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2009-07-29", + "Comments": [], + "Prefix": [], + "PreferredValue": "gsg", + "Tag": "sgn-DE", + "TagAny": "sgn-DE" + }, + { + "Type": 7, + "SubTag": "", + "Description": [ + "Danish Sign Language" + ], + "Added": "2001-11-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2009-07-29", + "Comments": [], + "Prefix": [], + "PreferredValue": "dsl", + "Tag": "sgn-DK", + "TagAny": "sgn-DK" + }, + { + "Type": 7, + "SubTag": "", + "Description": [ + "Spanish Sign Language" + ], + "Added": "2001-11-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2009-07-29", + "Comments": [], + "Prefix": [], + "PreferredValue": "ssp", + "Tag": "sgn-ES", + "TagAny": "sgn-ES" + }, + { + "Type": 7, + "SubTag": "", + "Description": [ + "French Sign Language" + ], + "Added": "2001-11-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2009-07-29", + "Comments": [], + "Prefix": [], + "PreferredValue": "fsl", + "Tag": "sgn-FR", + "TagAny": "sgn-FR" + }, + { + "Type": 7, + "SubTag": "", + "Description": [ + "British Sign Language" + ], + "Added": "2001-03-02", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2009-07-29", + "Comments": [], + "Prefix": [], + "PreferredValue": "bfi", + "Tag": "sgn-GB", + "TagAny": "sgn-GB" + }, + { + "Type": 7, + "SubTag": "", + "Description": [ + "Greek Sign Language" + ], + "Added": "2001-11-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2009-07-29", + "Comments": [], + "Prefix": [], + "PreferredValue": "gss", + "Tag": "sgn-GR", + "TagAny": "sgn-GR" + }, + { + "Type": 7, + "SubTag": "", + "Description": [ + "Irish Sign Language" + ], + "Added": "2001-03-02", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2009-07-29", + "Comments": [], + "Prefix": [], + "PreferredValue": "isg", + "Tag": "sgn-IE", + "TagAny": "sgn-IE" + }, + { + "Type": 7, + "SubTag": "", + "Description": [ + "Italian Sign Language" + ], + "Added": "2001-11-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2009-07-29", + "Comments": [], + "Prefix": [], + "PreferredValue": "ise", + "Tag": "sgn-IT", + "TagAny": "sgn-IT" + }, + { + "Type": 7, + "SubTag": "", + "Description": [ + "Japanese Sign Language" + ], + "Added": "2001-11-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2009-07-29", + "Comments": [], + "Prefix": [], + "PreferredValue": "jsl", + "Tag": "sgn-JP", + "TagAny": "sgn-JP" + }, + { + "Type": 7, + "SubTag": "", + "Description": [ + "Mexican Sign Language" + ], + "Added": "2001-11-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2009-07-29", + "Comments": [], + "Prefix": [], + "PreferredValue": "mfs", + "Tag": "sgn-MX", + "TagAny": "sgn-MX" + }, + { + "Type": 7, + "SubTag": "", + "Description": [ + "Nicaraguan Sign Language" + ], + "Added": "2001-03-02", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2009-07-29", + "Comments": [], + "Prefix": [], + "PreferredValue": "ncs", + "Tag": "sgn-NI", + "TagAny": "sgn-NI" + }, + { + "Type": 7, + "SubTag": "", + "Description": [ + "Dutch Sign Language" + ], + "Added": "2001-11-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2009-07-29", + "Comments": [], + "Prefix": [], + "PreferredValue": "dse", + "Tag": "sgn-NL", + "TagAny": "sgn-NL" + }, + { + "Type": 7, + "SubTag": "", + "Description": [ + "Norwegian Sign Language" + ], + "Added": "2001-11-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2009-07-29", + "Comments": [], + "Prefix": [], + "PreferredValue": "nsl", + "Tag": "sgn-NO", + "TagAny": "sgn-NO" + }, + { + "Type": 7, + "SubTag": "", + "Description": [ + "Portuguese Sign Language" + ], + "Added": "2001-11-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2009-07-29", + "Comments": [], + "Prefix": [], + "PreferredValue": "psr", + "Tag": "sgn-PT", + "TagAny": "sgn-PT" + }, + { + "Type": 7, + "SubTag": "", + "Description": [ + "Swedish Sign Language" + ], + "Added": "2001-11-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2009-07-29", + "Comments": [], + "Prefix": [], + "PreferredValue": "swl", + "Tag": "sgn-SE", + "TagAny": "sgn-SE" + }, + { + "Type": 7, + "SubTag": "", + "Description": [ + "American Sign Language" + ], + "Added": "2001-03-02", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2009-07-29", + "Comments": [], + "Prefix": [], + "PreferredValue": "ase", + "Tag": "sgn-US", + "TagAny": "sgn-US" + }, + { + "Type": 7, + "SubTag": "", + "Description": [ + "South African Sign Language" + ], + "Added": "2001-11-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2009-07-29", + "Comments": [], + "Prefix": [], + "PreferredValue": "sfs", + "Tag": "sgn-ZA", + "TagAny": "sgn-ZA" + }, + { + "Type": 7, + "SubTag": "", + "Description": [ + "Natisone dialect, Nadiza dialect" + ], + "Added": "2004-06-01", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "sl-nedis", + "TagAny": "sl-nedis" + }, + { + "Type": 7, + "SubTag": "", + "Description": [ + "Resian, Resianic, Rezijan" + ], + "Added": "2003-10-09", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "sl-rozaj", + "TagAny": "sl-rozaj" + }, + { + "Type": 7, + "SubTag": "", + "Description": [ + "Serbian in Cyrillic script" + ], + "Added": "2003-05-30", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "sr-Cyrl", + "TagAny": "sr-Cyrl" + }, + { + "Type": 7, + "SubTag": "", + "Description": [ + "Serbian in Latin script" + ], + "Added": "2003-05-30", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "sr-Latn", + "TagAny": "sr-Latn" + }, + { + "Type": 7, + "SubTag": "", + "Description": [ + "Tajik in Arabic script" + ], + "Added": "2005-02-17", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "tg-Arab", + "TagAny": "tg-Arab" + }, + { + "Type": 7, + "SubTag": "", + "Description": [ + "Tajik in Cyrillic script" + ], + "Added": "2005-02-17", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "tg-Cyrl", + "TagAny": "tg-Cyrl" + }, + { + "Type": 7, + "SubTag": "", + "Description": [ + "Uzbek in Cyrillic script" + ], + "Added": "2003-05-30", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "uz-Cyrl", + "TagAny": "uz-Cyrl" + }, + { + "Type": 7, + "SubTag": "", + "Description": [ + "Uzbek in Latin script" + ], + "Added": "2003-05-30", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "uz-Latn", + "TagAny": "uz-Latn" + }, + { + "Type": 7, + "SubTag": "", + "Description": [ + "Yiddish, in Latin script" + ], + "Added": "2003-01-07", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "yi-Latn", + "TagAny": "yi-Latn" + }, + { + "Type": 7, + "SubTag": "", + "Description": [ + "Mandarin Chinese" + ], + "Added": "2005-07-15", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2009-07-29", + "Comments": [], + "Prefix": [], + "PreferredValue": "cmn", + "Tag": "zh-cmn", + "TagAny": "zh-cmn" + }, + { + "Type": 7, + "SubTag": "", + "Description": [ + "Mandarin Chinese (Simplified)" + ], + "Added": "2005-07-15", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2009-07-29", + "Comments": [], + "Prefix": [], + "PreferredValue": "cmn-Hans", + "Tag": "zh-cmn-Hans", + "TagAny": "zh-cmn-Hans" + }, + { + "Type": 7, + "SubTag": "", + "Description": [ + "Mandarin Chinese (Traditional)" + ], + "Added": "2005-07-15", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2009-07-29", + "Comments": [], + "Prefix": [], + "PreferredValue": "cmn-Hant", + "Tag": "zh-cmn-Hant", + "TagAny": "zh-cmn-Hant" + }, + { + "Type": 7, + "SubTag": "", + "Description": [ + "Kan or Gan" + ], + "Added": "1999-12-18", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2009-07-29", + "Comments": [], + "Prefix": [], + "PreferredValue": "gan", + "Tag": "zh-gan", + "TagAny": "zh-gan" + }, + { + "Type": 7, + "SubTag": "", + "Description": [ + "simplified Chinese" + ], + "Added": "2003-05-30", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "zh-Hans", + "TagAny": "zh-Hans" + }, + { + "Type": 7, + "SubTag": "", + "Description": [ + "PRC Mainland Chinese in simplified script" + ], + "Added": "2005-04-13", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "zh-Hans-CN", + "TagAny": "zh-Hans-CN" + }, + { + "Type": 7, + "SubTag": "", + "Description": [ + "Hong Kong Chinese in simplified script" + ], + "Added": "2005-04-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "zh-Hans-HK", + "TagAny": "zh-Hans-HK" + }, + { + "Type": 7, + "SubTag": "", + "Description": [ + "Macao Chinese in simplified script" + ], + "Added": "2005-04-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "zh-Hans-MO", + "TagAny": "zh-Hans-MO" + }, + { + "Type": 7, + "SubTag": "", + "Description": [ + "Singapore Chinese in simplified script" + ], + "Added": "2005-04-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "zh-Hans-SG", + "TagAny": "zh-Hans-SG" + }, + { + "Type": 7, + "SubTag": "", + "Description": [ + "Taiwan Chinese in simplified script" + ], + "Added": "2005-04-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "zh-Hans-TW", + "TagAny": "zh-Hans-TW" + }, + { + "Type": 7, + "SubTag": "", + "Description": [ + "traditional Chinese" + ], + "Added": "2003-05-30", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "zh-Hant", + "TagAny": "zh-Hant" + }, + { + "Type": 7, + "SubTag": "", + "Description": [ + "PRC Mainland Chinese in traditional script" + ], + "Added": "2005-04-13", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "zh-Hant-CN", + "TagAny": "zh-Hant-CN" + }, + { + "Type": 7, + "SubTag": "", + "Description": [ + "Hong Kong Chinese in traditional script" + ], + "Added": "2005-04-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "zh-Hant-HK", + "TagAny": "zh-Hant-HK" + }, + { + "Type": 7, + "SubTag": "", + "Description": [ + "Macao Chinese in traditional script" + ], + "Added": "2005-04-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "zh-Hant-MO", + "TagAny": "zh-Hant-MO" + }, + { + "Type": 7, + "SubTag": "", + "Description": [ + "Singapore Chinese in traditional script" + ], + "Added": "2005-04-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "zh-Hant-SG", + "TagAny": "zh-Hant-SG" + }, + { + "Type": 7, + "SubTag": "", + "Description": [ + "Taiwan Chinese in traditional script" + ], + "Added": "2005-04-11", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "0001-01-01", + "Comments": [], + "Prefix": [], + "PreferredValue": "", + "Tag": "zh-Hant-TW", + "TagAny": "zh-Hant-TW" + }, + { + "Type": 7, + "SubTag": "", + "Description": [ + "Shanghaiese or Wu" + ], + "Added": "1999-12-18", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2009-07-29", + "Comments": [], + "Prefix": [], + "PreferredValue": "wuu", + "Tag": "zh-wuu", + "TagAny": "zh-wuu" + }, + { + "Type": 7, + "SubTag": "", + "Description": [ + "Cantonese" + ], + "Added": "1999-12-18", + "SuppressScript": "", + "Scope": "", + "MacroLanguage": "", + "Deprecated": "2009-07-29", + "Comments": [], + "Prefix": [], + "PreferredValue": "yue", + "Tag": "zh-yue", + "TagAny": "zh-yue" + } + ] +} \ No newline at end of file diff --git a/LanguageTags.code-workspace b/LanguageTags.code-workspace new file mode 100644 index 0000000..3b00b3f --- /dev/null +++ b/LanguageTags.code-workspace @@ -0,0 +1,83 @@ +{ + "folders": [ + { + "path": "." + } + ], + "settings": { + "cSpell.words": [ + "acrolanguage", + "arevela", + "CLDR", + "csdevkit", + "davidanson", + "derbend", + "dotnettools", + "extlang", + "gruntfuggly", + "istorical", + "iving", + "Jernej", + "jkporter", + "langcodes", + "languagetags", + "macrolanguage", + "mattcg", + "nbgv", + "ncient", + "ndividual", + "nedis", + "Nerdbank", + "nupkg", + "onstructed", + "pecial", + "Pieter", + "privateuse", + "rspeer", + "Serilog", + "Simoncic", + "snupkg", + "softprops", + "stefanzweifel", + "subtag", + "Subtags", + "templating", + "terminologic", + "triggerbuild", + "uncoded", + "Viljoen", + "winget", + "xtinct", + "xunit" + ], + "dotnet.defaultSolution": "LanguageTags.sln", + "files.trimTrailingWhitespace": true, + "files.trimTrailingWhitespaceInRegexAndStrings": false, + "[markdown]": { + "files.trimTrailingWhitespace": false, + }, + "[plaintext]": { + "files.trimTrailingWhitespace": false, + }, + "[csharp]": { + "editor.formatOnSave": true, + "editor.defaultFormatter": "csharpier.csharpier-vscode" + }, + "diffEditor.ignoreTrimWhitespace": false, + "editor.renderWhitespace": "boundary", + "dotnet.formatting.organizeImportsOnFormat": true, + "csharp.debug.symbolOptions.searchNuGetOrgSymbolServer": true, + "csharp.debug.symbolOptions.searchMicrosoftSymbolServer": true, + "files.encoding": "utf8" + }, + "extensions": { + "recommendations": [ + "davidanson.vscode-markdownlint", + "gruntfuggly.todo-tree", + "streetsidesoftware.code-spell-checker", + "editorconfig.editorconfig", + "csharpier.csharpier-vscode", + "sanjulaganepola.github-local-actions" + ] + } +} diff --git a/LanguageTags.sln b/LanguageTags.sln new file mode 100644 index 0000000..9fe56e2 --- /dev/null +++ b/LanguageTags.sln @@ -0,0 +1,63 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.2.32210.308 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{C02ADEE0-B2CB-465B-912B-41D102239980}" + ProjectSection(SolutionItems) = preProject + .gitattributes = .gitattributes + .gitignore = .gitignore + .github\dependabot.yml = .github\dependabot.yml + LICENSE = LICENSE + README.md = README.md + version.json = version.json + EndProjectSection +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "LanguageData", "LanguageData", "{7E189F23-48EE-44B2-A102-0FDF27BE9C88}" + ProjectSection(SolutionItems) = preProject + LanguageData\iso6392 = LanguageData\iso6392 + LanguageData\iso6393 = LanguageData\iso6393 + LanguageData\rfc5646 = LanguageData\rfc5646 + EndProjectSection +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "GitHub Actions", "GitHub Actions", "{6AEC3BF4-00CE-4C23-A003-82F12FCBA630}" + ProjectSection(SolutionItems) = preProject + .github\workflows\BuildPublishPipeline.yml = .github\workflows\BuildPublishPipeline.yml + .github\dependabot.yml = .github\dependabot.yml + EndProjectSection +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LanguageTags", "LanguageTags\LanguageTags.csproj", "{0C347342-311D-4EF8-839C-22D5E2B83345}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LanguageTagsTests", "LanguageTagsTests\LanguageTagsTests.csproj", "{02D62FA1-FB2D-49FD-AA04-96E2B459C9A8}" + ProjectSection(ProjectDependencies) = postProject + {0C347342-311D-4EF8-839C-22D5E2B83345} = {0C347342-311D-4EF8-839C-22D5E2B83345} + EndProjectSection +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LanguageTagsCreate", "LanguageTagsCreate\LanguageTagsCreate.csproj", "{BFC9267B-FA9E-A42D-A1C8-0D28D3245B76}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {0C347342-311D-4EF8-839C-22D5E2B83345}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {0C347342-311D-4EF8-839C-22D5E2B83345}.Debug|Any CPU.Build.0 = Debug|Any CPU + {0C347342-311D-4EF8-839C-22D5E2B83345}.Release|Any CPU.ActiveCfg = Release|Any CPU + {0C347342-311D-4EF8-839C-22D5E2B83345}.Release|Any CPU.Build.0 = Release|Any CPU + {02D62FA1-FB2D-49FD-AA04-96E2B459C9A8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {02D62FA1-FB2D-49FD-AA04-96E2B459C9A8}.Debug|Any CPU.Build.0 = Debug|Any CPU + {02D62FA1-FB2D-49FD-AA04-96E2B459C9A8}.Release|Any CPU.ActiveCfg = Release|Any CPU + {02D62FA1-FB2D-49FD-AA04-96E2B459C9A8}.Release|Any CPU.Build.0 = Release|Any CPU + {BFC9267B-FA9E-A42D-A1C8-0D28D3245B76}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {BFC9267B-FA9E-A42D-A1C8-0D28D3245B76}.Debug|Any CPU.Build.0 = Debug|Any CPU + {BFC9267B-FA9E-A42D-A1C8-0D28D3245B76}.Release|Any CPU.ActiveCfg = Release|Any CPU + {BFC9267B-FA9E-A42D-A1C8-0D28D3245B76}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {F2A0A473-E965-4EF2-ACB0-8276D0127ED2} + EndGlobalSection +EndGlobal diff --git a/LanguageTags/Iso6392.cs b/LanguageTags/Iso6392.cs new file mode 100644 index 0000000..e3ed4cc --- /dev/null +++ b/LanguageTags/Iso6392.cs @@ -0,0 +1,211 @@ +using System; +using System.Collections.Generic; +using System.Diagnostics; +using System.Globalization; +using System.IO; +using System.Linq; +using System.Text; +using System.Text.Json; + +namespace ptr727.LanguageTags; + +public partial class Iso6392 +{ + public const string DataUri = @"https://www.loc.gov/standards/iso639-2/ISO-639-2_utf-8.txt"; + public const string DataFileName = "iso6392"; + + public static Iso6392 LoadData(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 + + // Read line by line + Iso6392 iso6392 = new(); + using StreamReader lineReader = new(File.OpenRead(fileName)); + string line; + while ((line = lineReader.ReadLine()) is not null) + { + // Parse using pipe character + string[] records = line.Split('|'); + Debug.Assert(records.Length == 5); + + // Populate record + Record record = new() + { + Part2B = records[0].Trim(), + Part2T = records[1].Trim(), + Part1 = records[2].Trim(), + RefName = records[3].Trim(), + }; + Debug.Assert(!string.IsNullOrEmpty(record.Part2B)); + Debug.Assert(!string.IsNullOrEmpty(record.RefName)); + iso6392.RecordList.Add(record); + } + + return iso6392; + } + + public static Iso6392 LoadJson(string fileName) => + JsonSerializer.Deserialize( + File.ReadAllText(fileName), + JsonOptions.JsonReadOptions + ); + + public static void SaveJson(string fileName, Iso6392 iso6392) => + File.WriteAllText( + fileName, + JsonSerializer.Serialize(iso6392, JsonOptions.JsonWriteOptions) + ); + + public static void GenCode(string fileName, Iso6392 iso6392) + { + StringBuilder stringBuilder = new(); + _ = stringBuilder.AppendLine( + """ + // This file is generated by LanguageTags.Iso6392.GenCode + + namespace ptr727.LanguageTags; + + public partial class Iso6392 + { + public static Iso6392 Create() + { + Iso6392 iso6392 = new(); + """ + ); + + iso6392.RecordList.ForEach(record => + _ = stringBuilder.AppendLine( + CultureInfo.InvariantCulture, + $$""" + + iso6392.RecordList.Add( + new() + { + Part2B = "{{record.Part2B}}", + Part2T = "{{record.Part2T}}", + Part1 = "{{record.Part1}}", + RefName = "{{record.RefName}}", + } + ); + """ + ) + ); + + _ = stringBuilder.AppendLine( + """ + + return iso6392; + } + } + """ + ); + + // Write to file + File.WriteAllText(fileName, stringBuilder.ToString()); + } + + public class Record + { + // Default to use 2B + public string Id => Part2B; + + // 639-2 Bibliographic + public string Part2B { get; set; } = ""; + + // 639-2 Terminology + public string Part2T { get; set; } = ""; + + // 639-1 + public string Part1 { get; set; } = ""; + + // English name + public string RefName { get; set; } = ""; + } + + public List RecordList { get; private set; } = []; + + /// + /// Finds a language record that matches the specified language tag. + /// + /// + /// The language tag to search for. This can be a 2-letter (ISO 639-1), 3-letter (ISO 639-2/B or ISO 639-2/T), or a language name. + /// + /// + /// If set to true, the method will also attempt to match the language tag against the language's reference name (RefName), including partial matches. + /// + /// + /// The that matches the specified language tag, or null if no match is found. + /// + public Record Find(string languageTag, bool includeDescription) + { + // Find the matching language entry + Record record = null; + + // 693 3 letter form + if (languageTag.Length == 3) + { + // Try the 639-2/B + record = RecordList.FirstOrDefault(item => + item.Part2B.Equals(languageTag, StringComparison.OrdinalIgnoreCase) + ); + if (record != null) + { + return record; + } + + // Try the 639-2/T + record = RecordList.FirstOrDefault(item => + item.Part2T.Equals(languageTag, StringComparison.OrdinalIgnoreCase) + ); + if (record != null) + { + return record; + } + } + + // 693 2 letter form + if (languageTag.Length == 2) + { + // Try 639-1 + record = RecordList.FirstOrDefault(item => + item.Part1.Equals(languageTag, StringComparison.OrdinalIgnoreCase) + ); + if (record != null) + { + return record; + } + } + + // Long form + if (includeDescription) + { + // Exact match + record = RecordList.FirstOrDefault(item => + item.RefName.Equals(languageTag, StringComparison.OrdinalIgnoreCase) + ); + if (record != null) + { + return record; + } + + // Partial match + record = RecordList.FirstOrDefault(item => + item.RefName.Contains(languageTag, StringComparison.OrdinalIgnoreCase) + ); + if (record != null) + { + return record; + } + } + + // Not found + return null; + } +} diff --git a/LanguageTags/Iso6392Gen.cs b/LanguageTags/Iso6392Gen.cs new file mode 100644 index 0000000..4ee2b3d --- /dev/null +++ b/LanguageTags/Iso6392Gen.cs @@ -0,0 +1,4884 @@ +// This file is generated by LanguageTags.Iso6392.GenCode + +namespace ptr727.LanguageTags; + +public partial class Iso6392 +{ + public static Iso6392 Create() + { + Iso6392 iso6392 = new(); + + iso6392.RecordList.Add( + new() + { + Part2B = "aar", + Part2T = "", + Part1 = "aa", + RefName = "Afar", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "abk", + Part2T = "", + Part1 = "ab", + RefName = "Abkhazian", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "ace", + Part2T = "", + Part1 = "", + RefName = "Achinese", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "ach", + Part2T = "", + Part1 = "", + RefName = "Acoli", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "ada", + Part2T = "", + Part1 = "", + RefName = "Adangme", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "ady", + Part2T = "", + Part1 = "", + RefName = "Adyghe; Adygei", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "afa", + Part2T = "", + Part1 = "", + RefName = "Afro-Asiatic languages", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "afh", + Part2T = "", + Part1 = "", + RefName = "Afrihili", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "afr", + Part2T = "", + Part1 = "af", + RefName = "Afrikaans", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "ain", + Part2T = "", + Part1 = "", + RefName = "Ainu", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "aka", + Part2T = "", + Part1 = "ak", + RefName = "Akan", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "akk", + Part2T = "", + Part1 = "", + RefName = "Akkadian", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "alb", + Part2T = "sqi", + Part1 = "sq", + RefName = "Albanian", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "ale", + Part2T = "", + Part1 = "", + RefName = "Aleut", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "alg", + Part2T = "", + Part1 = "", + RefName = "Algonquian languages", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "alt", + Part2T = "", + Part1 = "", + RefName = "Southern Altai", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "amh", + Part2T = "", + Part1 = "am", + RefName = "Amharic", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "ang", + Part2T = "", + Part1 = "", + RefName = "English, Old (ca.450-1100)", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "anp", + Part2T = "", + Part1 = "", + RefName = "Angika", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "apa", + Part2T = "", + Part1 = "", + RefName = "Apache languages", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "ara", + Part2T = "", + Part1 = "ar", + RefName = "Arabic", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "arc", + Part2T = "", + Part1 = "", + RefName = "Official Aramaic (700-300 BCE); Imperial Aramaic (700-300 BCE)", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "arg", + Part2T = "", + Part1 = "an", + RefName = "Aragonese", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "arm", + Part2T = "hye", + Part1 = "hy", + RefName = "Armenian", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "arn", + Part2T = "", + Part1 = "", + RefName = "Mapudungun; Mapuche", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "arp", + Part2T = "", + Part1 = "", + RefName = "Arapaho", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "art", + Part2T = "", + Part1 = "", + RefName = "Artificial languages", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "arw", + Part2T = "", + Part1 = "", + RefName = "Arawak", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "asm", + Part2T = "", + Part1 = "as", + RefName = "Assamese", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "ast", + Part2T = "", + Part1 = "", + RefName = "Asturian; Bable; Leonese; Asturleonese", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "ath", + Part2T = "", + Part1 = "", + RefName = "Athapascan languages", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "aus", + Part2T = "", + Part1 = "", + RefName = "Australian languages", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "ava", + Part2T = "", + Part1 = "av", + RefName = "Avaric", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "ave", + Part2T = "", + Part1 = "ae", + RefName = "Avestan", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "awa", + Part2T = "", + Part1 = "", + RefName = "Awadhi", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "aym", + Part2T = "", + Part1 = "ay", + RefName = "Aymara", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "aze", + Part2T = "", + Part1 = "az", + RefName = "Azerbaijani", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "bad", + Part2T = "", + Part1 = "", + RefName = "Banda languages", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "bai", + Part2T = "", + Part1 = "", + RefName = "Bamileke languages", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "bak", + Part2T = "", + Part1 = "ba", + RefName = "Bashkir", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "bal", + Part2T = "", + Part1 = "", + RefName = "Baluchi", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "bam", + Part2T = "", + Part1 = "bm", + RefName = "Bambara", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "ban", + Part2T = "", + Part1 = "", + RefName = "Balinese", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "baq", + Part2T = "eus", + Part1 = "eu", + RefName = "Basque", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "bas", + Part2T = "", + Part1 = "", + RefName = "Basa", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "bat", + Part2T = "", + Part1 = "", + RefName = "Baltic languages", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "bej", + Part2T = "", + Part1 = "", + RefName = "Beja; Bedawiyet", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "bel", + Part2T = "", + Part1 = "be", + RefName = "Belarusian", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "bem", + Part2T = "", + Part1 = "", + RefName = "Bemba", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "ben", + Part2T = "", + Part1 = "bn", + RefName = "Bengali", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "ber", + Part2T = "", + Part1 = "", + RefName = "Berber languages", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "bho", + Part2T = "", + Part1 = "", + RefName = "Bhojpuri", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "bih", + Part2T = "", + Part1 = "", + RefName = "Bihari languages", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "bik", + Part2T = "", + Part1 = "", + RefName = "Bikol", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "bin", + Part2T = "", + Part1 = "", + RefName = "Bini; Edo", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "bis", + Part2T = "", + Part1 = "bi", + RefName = "Bislama", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "bla", + Part2T = "", + Part1 = "", + RefName = "Siksika", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "bnt", + Part2T = "", + Part1 = "", + RefName = "Bantu languages", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "bos", + Part2T = "", + Part1 = "bs", + RefName = "Bosnian", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "bra", + Part2T = "", + Part1 = "", + RefName = "Braj", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "bre", + Part2T = "", + Part1 = "br", + RefName = "Breton", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "btk", + Part2T = "", + Part1 = "", + RefName = "Batak languages", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "bua", + Part2T = "", + Part1 = "", + RefName = "Buriat", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "bug", + Part2T = "", + Part1 = "", + RefName = "Buginese", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "bul", + Part2T = "", + Part1 = "bg", + RefName = "Bulgarian", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "bur", + Part2T = "mya", + Part1 = "my", + RefName = "Burmese", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "byn", + Part2T = "", + Part1 = "", + RefName = "Blin; Bilin", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "cad", + Part2T = "", + Part1 = "", + RefName = "Caddo", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "cai", + Part2T = "", + Part1 = "", + RefName = "Central American Indian languages", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "car", + Part2T = "", + Part1 = "", + RefName = "Galibi Carib", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "cat", + Part2T = "", + Part1 = "ca", + RefName = "Catalan; Valencian", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "cau", + Part2T = "", + Part1 = "", + RefName = "Caucasian languages", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "ceb", + Part2T = "", + Part1 = "", + RefName = "Cebuano", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "cel", + Part2T = "", + Part1 = "", + RefName = "Celtic languages", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "cha", + Part2T = "", + Part1 = "ch", + RefName = "Chamorro", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "chb", + Part2T = "", + Part1 = "", + RefName = "Chibcha", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "che", + Part2T = "", + Part1 = "ce", + RefName = "Chechen", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "chg", + Part2T = "", + Part1 = "", + RefName = "Chagatai", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "chi", + Part2T = "zho", + Part1 = "zh", + RefName = "Chinese", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "chk", + Part2T = "", + Part1 = "", + RefName = "Chuukese", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "chm", + Part2T = "", + Part1 = "", + RefName = "Mari", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "chn", + Part2T = "", + Part1 = "", + RefName = "Chinook jargon", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "cho", + Part2T = "", + Part1 = "", + RefName = "Choctaw", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "chp", + Part2T = "", + Part1 = "", + RefName = "Chipewyan; Dene Suline", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "chr", + Part2T = "", + Part1 = "", + RefName = "Cherokee", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "chu", + Part2T = "", + Part1 = "cu", + RefName = + "Church Slavic; Old Slavonic; Church Slavonic; Old Bulgarian; Old Church Slavonic", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "chv", + Part2T = "", + Part1 = "cv", + RefName = "Chuvash", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "chy", + Part2T = "", + Part1 = "", + RefName = "Cheyenne", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "cmc", + Part2T = "", + Part1 = "", + RefName = "Chamic languages", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "cnr", + Part2T = "", + Part1 = "", + RefName = "Montenegrin", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "cop", + Part2T = "", + Part1 = "", + RefName = "Coptic", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "cor", + Part2T = "", + Part1 = "kw", + RefName = "Cornish", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "cos", + Part2T = "", + Part1 = "co", + RefName = "Corsican", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "cpe", + Part2T = "", + Part1 = "", + RefName = "Creoles and pidgins, English based", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "cpf", + Part2T = "", + Part1 = "", + RefName = "Creoles and pidgins, French-based", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "cpp", + Part2T = "", + Part1 = "", + RefName = "Creoles and pidgins, Portuguese-based", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "cre", + Part2T = "", + Part1 = "cr", + RefName = "Cree", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "crh", + Part2T = "", + Part1 = "", + RefName = "Crimean Tatar; Crimean Turkish", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "crp", + Part2T = "", + Part1 = "", + RefName = "Creoles and pidgins", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "csb", + Part2T = "", + Part1 = "", + RefName = "Kashubian", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "cus", + Part2T = "", + Part1 = "", + RefName = "Cushitic languages", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "cze", + Part2T = "ces", + Part1 = "cs", + RefName = "Czech", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "dak", + Part2T = "", + Part1 = "", + RefName = "Dakota", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "dan", + Part2T = "", + Part1 = "da", + RefName = "Danish", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "dar", + Part2T = "", + Part1 = "", + RefName = "Dargwa", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "day", + Part2T = "", + Part1 = "", + RefName = "Land Dayak languages", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "del", + Part2T = "", + Part1 = "", + RefName = "Delaware", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "den", + Part2T = "", + Part1 = "", + RefName = "Slave (Athapascan)", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "dgr", + Part2T = "", + Part1 = "", + RefName = "Tlicho; Dogrib", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "din", + Part2T = "", + Part1 = "", + RefName = "Dinka", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "div", + Part2T = "", + Part1 = "dv", + RefName = "Divehi; Dhivehi; Maldivian", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "doi", + Part2T = "", + Part1 = "", + RefName = "Dogri", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "dra", + Part2T = "", + Part1 = "", + RefName = "Dravidian languages", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "dsb", + Part2T = "", + Part1 = "", + RefName = "Lower Sorbian", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "dua", + Part2T = "", + Part1 = "", + RefName = "Duala", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "dum", + Part2T = "", + Part1 = "", + RefName = "Dutch, Middle (ca.1050-1350)", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "dut", + Part2T = "nld", + Part1 = "nl", + RefName = "Dutch; Flemish", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "dyu", + Part2T = "", + Part1 = "", + RefName = "Dyula", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "dzo", + Part2T = "", + Part1 = "dz", + RefName = "Dzongkha", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "efi", + Part2T = "", + Part1 = "", + RefName = "Efik", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "egy", + Part2T = "", + Part1 = "", + RefName = "Egyptian (Ancient)", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "eka", + Part2T = "", + Part1 = "", + RefName = "Ekajuk", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "elx", + Part2T = "", + Part1 = "", + RefName = "Elamite", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "eng", + Part2T = "", + Part1 = "en", + RefName = "English", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "enm", + Part2T = "", + Part1 = "", + RefName = "English, Middle (1100-1500)", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "epo", + Part2T = "", + Part1 = "eo", + RefName = "Esperanto", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "est", + Part2T = "", + Part1 = "et", + RefName = "Estonian", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "ewe", + Part2T = "", + Part1 = "ee", + RefName = "Ewe", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "ewo", + Part2T = "", + Part1 = "", + RefName = "Ewondo", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "fan", + Part2T = "", + Part1 = "", + RefName = "Fang", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "fao", + Part2T = "", + Part1 = "fo", + RefName = "Faroese", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "fat", + Part2T = "", + Part1 = "", + RefName = "Fanti", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "fij", + Part2T = "", + Part1 = "fj", + RefName = "Fijian", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "fil", + Part2T = "", + Part1 = "", + RefName = "Filipino; Pilipino", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "fin", + Part2T = "", + Part1 = "fi", + RefName = "Finnish", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "fiu", + Part2T = "", + Part1 = "", + RefName = "Finno-Ugrian languages", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "fon", + Part2T = "", + Part1 = "", + RefName = "Fon", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "fre", + Part2T = "fra", + Part1 = "fr", + RefName = "French", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "frm", + Part2T = "", + Part1 = "", + RefName = "French, Middle (ca.1400-1600)", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "fro", + Part2T = "", + Part1 = "", + RefName = "French, Old (842-ca.1400)", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "frr", + Part2T = "", + Part1 = "", + RefName = "Northern Frisian", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "frs", + Part2T = "", + Part1 = "", + RefName = "Eastern Frisian", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "fry", + Part2T = "", + Part1 = "fy", + RefName = "Western Frisian", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "ful", + Part2T = "", + Part1 = "ff", + RefName = "Fulah", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "fur", + Part2T = "", + Part1 = "", + RefName = "Friulian", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "gaa", + Part2T = "", + Part1 = "", + RefName = "Ga", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "gay", + Part2T = "", + Part1 = "", + RefName = "Gayo", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "gba", + Part2T = "", + Part1 = "", + RefName = "Gbaya", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "gem", + Part2T = "", + Part1 = "", + RefName = "Germanic languages", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "geo", + Part2T = "kat", + Part1 = "ka", + RefName = "Georgian", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "ger", + Part2T = "deu", + Part1 = "de", + RefName = "German", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "gez", + Part2T = "", + Part1 = "", + RefName = "Geez", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "gil", + Part2T = "", + Part1 = "", + RefName = "Gilbertese", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "gla", + Part2T = "", + Part1 = "gd", + RefName = "Gaelic; Scottish Gaelic", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "gle", + Part2T = "", + Part1 = "ga", + RefName = "Irish", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "glg", + Part2T = "", + Part1 = "gl", + RefName = "Galician", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "glv", + Part2T = "", + Part1 = "gv", + RefName = "Manx", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "gmh", + Part2T = "", + Part1 = "", + RefName = "German, Middle High (ca.1050-1500)", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "goh", + Part2T = "", + Part1 = "", + RefName = "German, Old High (ca.750-1050)", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "gon", + Part2T = "", + Part1 = "", + RefName = "Gondi", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "gor", + Part2T = "", + Part1 = "", + RefName = "Gorontalo", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "got", + Part2T = "", + Part1 = "", + RefName = "Gothic", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "grb", + Part2T = "", + Part1 = "", + RefName = "Grebo", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "grc", + Part2T = "", + Part1 = "", + RefName = "Greek, Ancient (to 1453)", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "gre", + Part2T = "ell", + Part1 = "el", + RefName = "Greek, Modern (1453-)", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "grn", + Part2T = "", + Part1 = "gn", + RefName = "Guarani", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "gsw", + Part2T = "", + Part1 = "", + RefName = "Swiss German; Alemannic; Alsatian", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "guj", + Part2T = "", + Part1 = "gu", + RefName = "Gujarati", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "gwi", + Part2T = "", + Part1 = "", + RefName = "Gwich'in", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "hai", + Part2T = "", + Part1 = "", + RefName = "Haida", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "hat", + Part2T = "", + Part1 = "ht", + RefName = "Haitian; Haitian Creole", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "hau", + Part2T = "", + Part1 = "ha", + RefName = "Hausa", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "haw", + Part2T = "", + Part1 = "", + RefName = "Hawaiian", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "heb", + Part2T = "", + Part1 = "he", + RefName = "Hebrew", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "her", + Part2T = "", + Part1 = "hz", + RefName = "Herero", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "hil", + Part2T = "", + Part1 = "", + RefName = "Hiligaynon", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "him", + Part2T = "", + Part1 = "", + RefName = "Himachali languages; Western Pahari languages", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "hin", + Part2T = "", + Part1 = "hi", + RefName = "Hindi", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "hit", + Part2T = "", + Part1 = "", + RefName = "Hittite", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "hmn", + Part2T = "", + Part1 = "", + RefName = "Hmong; Mong", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "hmo", + Part2T = "", + Part1 = "ho", + RefName = "Hiri Motu", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "hrv", + Part2T = "", + Part1 = "hr", + RefName = "Croatian", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "hsb", + Part2T = "", + Part1 = "", + RefName = "Upper Sorbian", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "hun", + Part2T = "", + Part1 = "hu", + RefName = "Hungarian", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "hup", + Part2T = "", + Part1 = "", + RefName = "Hupa", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "iba", + Part2T = "", + Part1 = "", + RefName = "Iban", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "ibo", + Part2T = "", + Part1 = "ig", + RefName = "Igbo", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "ice", + Part2T = "isl", + Part1 = "is", + RefName = "Icelandic", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "ido", + Part2T = "", + Part1 = "io", + RefName = "Ido", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "iii", + Part2T = "", + Part1 = "ii", + RefName = "Sichuan Yi; Nuosu", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "ijo", + Part2T = "", + Part1 = "", + RefName = "Ijo languages", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "iku", + Part2T = "", + Part1 = "iu", + RefName = "Inuktitut", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "ile", + Part2T = "", + Part1 = "ie", + RefName = "Interlingue; Occidental", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "ilo", + Part2T = "", + Part1 = "", + RefName = "Iloko", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "ina", + Part2T = "", + Part1 = "ia", + RefName = "Interlingua (International Auxiliary Language Association)", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "inc", + Part2T = "", + Part1 = "", + RefName = "Indic languages", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "ind", + Part2T = "", + Part1 = "id", + RefName = "Indonesian", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "ine", + Part2T = "", + Part1 = "", + RefName = "Indo-European languages", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "inh", + Part2T = "", + Part1 = "", + RefName = "Ingush", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "ipk", + Part2T = "", + Part1 = "ik", + RefName = "Inupiaq", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "ira", + Part2T = "", + Part1 = "", + RefName = "Iranian languages", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "iro", + Part2T = "", + Part1 = "", + RefName = "Iroquoian languages", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "ita", + Part2T = "", + Part1 = "it", + RefName = "Italian", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "jav", + Part2T = "", + Part1 = "jv", + RefName = "Javanese", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "jbo", + Part2T = "", + Part1 = "", + RefName = "Lojban", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "jpn", + Part2T = "", + Part1 = "ja", + RefName = "Japanese", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "jpr", + Part2T = "", + Part1 = "", + RefName = "Judeo-Persian", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "jrb", + Part2T = "", + Part1 = "", + RefName = "Judeo-Arabic", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "kaa", + Part2T = "", + Part1 = "", + RefName = "Kara-Kalpak", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "kab", + Part2T = "", + Part1 = "", + RefName = "Kabyle", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "kac", + Part2T = "", + Part1 = "", + RefName = "Kachin; Jingpho", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "kal", + Part2T = "", + Part1 = "kl", + RefName = "Kalaallisut; Greenlandic", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "kam", + Part2T = "", + Part1 = "", + RefName = "Kamba", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "kan", + Part2T = "", + Part1 = "kn", + RefName = "Kannada", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "kar", + Part2T = "", + Part1 = "", + RefName = "Karen languages", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "kas", + Part2T = "", + Part1 = "ks", + RefName = "Kashmiri", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "kau", + Part2T = "", + Part1 = "kr", + RefName = "Kanuri", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "kaw", + Part2T = "", + Part1 = "", + RefName = "Kawi", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "kaz", + Part2T = "", + Part1 = "kk", + RefName = "Kazakh", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "kbd", + Part2T = "", + Part1 = "", + RefName = "Kabardian", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "kha", + Part2T = "", + Part1 = "", + RefName = "Khasi", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "khi", + Part2T = "", + Part1 = "", + RefName = "Khoisan languages", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "khm", + Part2T = "", + Part1 = "km", + RefName = "Central Khmer", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "kho", + Part2T = "", + Part1 = "", + RefName = "Khotanese; Sakan", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "kik", + Part2T = "", + Part1 = "ki", + RefName = "Kikuyu; Gikuyu", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "kin", + Part2T = "", + Part1 = "rw", + RefName = "Kinyarwanda", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "kir", + Part2T = "", + Part1 = "ky", + RefName = "Kirghiz; Kyrgyz", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "kmb", + Part2T = "", + Part1 = "", + RefName = "Kimbundu", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "kok", + Part2T = "", + Part1 = "", + RefName = "Konkani", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "kom", + Part2T = "", + Part1 = "kv", + RefName = "Komi", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "kon", + Part2T = "", + Part1 = "kg", + RefName = "Kongo", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "kor", + Part2T = "", + Part1 = "ko", + RefName = "Korean", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "kos", + Part2T = "", + Part1 = "", + RefName = "Kosraean", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "kpe", + Part2T = "", + Part1 = "", + RefName = "Kpelle", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "krc", + Part2T = "", + Part1 = "", + RefName = "Karachay-Balkar", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "krl", + Part2T = "", + Part1 = "", + RefName = "Karelian", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "kro", + Part2T = "", + Part1 = "", + RefName = "Kru languages", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "kru", + Part2T = "", + Part1 = "", + RefName = "Kurukh", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "kua", + Part2T = "", + Part1 = "kj", + RefName = "Kuanyama; Kwanyama", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "kum", + Part2T = "", + Part1 = "", + RefName = "Kumyk", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "kur", + Part2T = "", + Part1 = "ku", + RefName = "Kurdish", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "kut", + Part2T = "", + Part1 = "", + RefName = "Kutenai", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "lad", + Part2T = "", + Part1 = "", + RefName = "Ladino", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "lah", + Part2T = "", + Part1 = "", + RefName = "Lahnda", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "lam", + Part2T = "", + Part1 = "", + RefName = "Lamba", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "lao", + Part2T = "", + Part1 = "lo", + RefName = "Lao", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "lat", + Part2T = "", + Part1 = "la", + RefName = "Latin", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "lav", + Part2T = "", + Part1 = "lv", + RefName = "Latvian", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "lez", + Part2T = "", + Part1 = "", + RefName = "Lezghian", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "lim", + Part2T = "", + Part1 = "li", + RefName = "Limburgan; Limburger; Limburgish", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "lin", + Part2T = "", + Part1 = "ln", + RefName = "Lingala", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "lit", + Part2T = "", + Part1 = "lt", + RefName = "Lithuanian", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "lol", + Part2T = "", + Part1 = "", + RefName = "Mongo", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "loz", + Part2T = "", + Part1 = "", + RefName = "Lozi", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "ltz", + Part2T = "", + Part1 = "lb", + RefName = "Luxembourgish; Letzeburgesch", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "lua", + Part2T = "", + Part1 = "", + RefName = "Luba-Lulua", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "lub", + Part2T = "", + Part1 = "lu", + RefName = "Luba-Katanga", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "lug", + Part2T = "", + Part1 = "lg", + RefName = "Ganda", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "lui", + Part2T = "", + Part1 = "", + RefName = "Luiseno", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "lun", + Part2T = "", + Part1 = "", + RefName = "Lunda", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "luo", + Part2T = "", + Part1 = "", + RefName = "Luo (Kenya and Tanzania)", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "lus", + Part2T = "", + Part1 = "", + RefName = "Lushai", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "mac", + Part2T = "mkd", + Part1 = "mk", + RefName = "Macedonian", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "mad", + Part2T = "", + Part1 = "", + RefName = "Madurese", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "mag", + Part2T = "", + Part1 = "", + RefName = "Magahi", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "mah", + Part2T = "", + Part1 = "mh", + RefName = "Marshallese", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "mai", + Part2T = "", + Part1 = "", + RefName = "Maithili", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "mak", + Part2T = "", + Part1 = "", + RefName = "Makasar", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "mal", + Part2T = "", + Part1 = "ml", + RefName = "Malayalam", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "man", + Part2T = "", + Part1 = "", + RefName = "Mandingo", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "mao", + Part2T = "mri", + Part1 = "mi", + RefName = "Maori", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "map", + Part2T = "", + Part1 = "", + RefName = "Austronesian languages", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "mar", + Part2T = "", + Part1 = "mr", + RefName = "Marathi", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "mas", + Part2T = "", + Part1 = "", + RefName = "Masai", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "may", + Part2T = "msa", + Part1 = "ms", + RefName = "Malay", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "mdf", + Part2T = "", + Part1 = "", + RefName = "Moksha", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "mdr", + Part2T = "", + Part1 = "", + RefName = "Mandar", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "men", + Part2T = "", + Part1 = "", + RefName = "Mende", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "mga", + Part2T = "", + Part1 = "", + RefName = "Irish, Middle (900-1200)", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "mic", + Part2T = "", + Part1 = "", + RefName = "Mi'kmaq; Micmac", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "min", + Part2T = "", + Part1 = "", + RefName = "Minangkabau", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "mis", + Part2T = "", + Part1 = "", + RefName = "Uncoded languages", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "mkh", + Part2T = "", + Part1 = "", + RefName = "Mon-Khmer languages", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "mlg", + Part2T = "", + Part1 = "mg", + RefName = "Malagasy", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "mlt", + Part2T = "", + Part1 = "mt", + RefName = "Maltese", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "mnc", + Part2T = "", + Part1 = "", + RefName = "Manchu", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "mni", + Part2T = "", + Part1 = "", + RefName = "Manipuri", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "mno", + Part2T = "", + Part1 = "", + RefName = "Manobo languages", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "moh", + Part2T = "", + Part1 = "", + RefName = "Mohawk", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "mon", + Part2T = "", + Part1 = "mn", + RefName = "Mongolian", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "mos", + Part2T = "", + Part1 = "", + RefName = "Mossi", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "mul", + Part2T = "", + Part1 = "", + RefName = "Multiple languages", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "mun", + Part2T = "", + Part1 = "", + RefName = "Munda languages", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "mus", + Part2T = "", + Part1 = "", + RefName = "Creek", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "mwl", + Part2T = "", + Part1 = "", + RefName = "Mirandese", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "mwr", + Part2T = "", + Part1 = "", + RefName = "Marwari", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "myn", + Part2T = "", + Part1 = "", + RefName = "Mayan languages", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "myv", + Part2T = "", + Part1 = "", + RefName = "Erzya", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "nah", + Part2T = "", + Part1 = "", + RefName = "Nahuatl languages", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "nai", + Part2T = "", + Part1 = "", + RefName = "North American Indian languages", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "nap", + Part2T = "", + Part1 = "", + RefName = "Neapolitan", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "nau", + Part2T = "", + Part1 = "na", + RefName = "Nauru", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "nav", + Part2T = "", + Part1 = "nv", + RefName = "Navajo; Navaho", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "nbl", + Part2T = "", + Part1 = "nr", + RefName = "Ndebele, South; South Ndebele", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "nde", + Part2T = "", + Part1 = "nd", + RefName = "Ndebele, North; North Ndebele", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "ndo", + Part2T = "", + Part1 = "ng", + RefName = "Ndonga", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "nds", + Part2T = "", + Part1 = "", + RefName = "Low German; Low Saxon; German, Low; Saxon, Low", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "nep", + Part2T = "", + Part1 = "ne", + RefName = "Nepali", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "new", + Part2T = "", + Part1 = "", + RefName = "Nepal Bhasa; Newari", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "nia", + Part2T = "", + Part1 = "", + RefName = "Nias", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "nic", + Part2T = "", + Part1 = "", + RefName = "Niger-Kordofanian languages", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "niu", + Part2T = "", + Part1 = "", + RefName = "Niuean", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "nno", + Part2T = "", + Part1 = "nn", + RefName = "Norwegian Nynorsk; Nynorsk, Norwegian", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "nob", + Part2T = "", + Part1 = "nb", + RefName = "Bokmål, Norwegian; Norwegian Bokmål", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "nog", + Part2T = "", + Part1 = "", + RefName = "Nogai", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "non", + Part2T = "", + Part1 = "", + RefName = "Norse, Old", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "nor", + Part2T = "", + Part1 = "no", + RefName = "Norwegian", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "nqo", + Part2T = "", + Part1 = "", + RefName = "N'Ko", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "nso", + Part2T = "", + Part1 = "", + RefName = "Pedi; Sepedi; Northern Sotho", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "nub", + Part2T = "", + Part1 = "", + RefName = "Nubian languages", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "nwc", + Part2T = "", + Part1 = "", + RefName = "Classical Newari; Old Newari; Classical Nepal Bhasa", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "nya", + Part2T = "", + Part1 = "ny", + RefName = "Chichewa; Chewa; Nyanja", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "nym", + Part2T = "", + Part1 = "", + RefName = "Nyamwezi", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "nyn", + Part2T = "", + Part1 = "", + RefName = "Nyankole", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "nyo", + Part2T = "", + Part1 = "", + RefName = "Nyoro", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "nzi", + Part2T = "", + Part1 = "", + RefName = "Nzima", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "oci", + Part2T = "", + Part1 = "oc", + RefName = "Occitan (post 1500)", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "oji", + Part2T = "", + Part1 = "oj", + RefName = "Ojibwa", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "ori", + Part2T = "", + Part1 = "or", + RefName = "Oriya", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "orm", + Part2T = "", + Part1 = "om", + RefName = "Oromo", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "osa", + Part2T = "", + Part1 = "", + RefName = "Osage", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "oss", + Part2T = "", + Part1 = "os", + RefName = "Ossetian; Ossetic", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "ota", + Part2T = "", + Part1 = "", + RefName = "Turkish, Ottoman (1500-1928)", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "oto", + Part2T = "", + Part1 = "", + RefName = "Otomian languages", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "paa", + Part2T = "", + Part1 = "", + RefName = "Papuan languages", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "pag", + Part2T = "", + Part1 = "", + RefName = "Pangasinan", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "pal", + Part2T = "", + Part1 = "", + RefName = "Pahlavi", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "pam", + Part2T = "", + Part1 = "", + RefName = "Pampanga; Kapampangan", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "pan", + Part2T = "", + Part1 = "pa", + RefName = "Panjabi; Punjabi", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "pap", + Part2T = "", + Part1 = "", + RefName = "Papiamento", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "pau", + Part2T = "", + Part1 = "", + RefName = "Palauan", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "peo", + Part2T = "", + Part1 = "", + RefName = "Persian, Old (ca.600-400 B.C.)", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "per", + Part2T = "fas", + Part1 = "fa", + RefName = "Persian", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "phi", + Part2T = "", + Part1 = "", + RefName = "Philippine languages", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "phn", + Part2T = "", + Part1 = "", + RefName = "Phoenician", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "pli", + Part2T = "", + Part1 = "pi", + RefName = "Pali", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "pol", + Part2T = "", + Part1 = "pl", + RefName = "Polish", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "pon", + Part2T = "", + Part1 = "", + RefName = "Pohnpeian", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "por", + Part2T = "", + Part1 = "pt", + RefName = "Portuguese", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "pra", + Part2T = "", + Part1 = "", + RefName = "Prakrit languages", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "pro", + Part2T = "", + Part1 = "", + RefName = "Provençal, Old (to 1500); Occitan, Old (to 1500)", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "pus", + Part2T = "", + Part1 = "ps", + RefName = "Pushto; Pashto", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "qaa-qtz", + Part2T = "", + Part1 = "", + RefName = "Reserved for local use", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "que", + Part2T = "", + Part1 = "qu", + RefName = "Quechua", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "raj", + Part2T = "", + Part1 = "", + RefName = "Rajasthani", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "rap", + Part2T = "", + Part1 = "", + RefName = "Rapanui", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "rar", + Part2T = "", + Part1 = "", + RefName = "Rarotongan; Cook Islands Maori", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "roa", + Part2T = "", + Part1 = "", + RefName = "Romance languages", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "roh", + Part2T = "", + Part1 = "rm", + RefName = "Romansh", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "rom", + Part2T = "", + Part1 = "", + RefName = "Romany", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "rum", + Part2T = "ron", + Part1 = "ro", + RefName = "Romanian; Moldavian; Moldovan", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "run", + Part2T = "", + Part1 = "rn", + RefName = "Rundi", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "rup", + Part2T = "", + Part1 = "", + RefName = "Aromanian; Arumanian; Macedo-Romanian", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "rus", + Part2T = "", + Part1 = "ru", + RefName = "Russian", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "sad", + Part2T = "", + Part1 = "", + RefName = "Sandawe", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "sag", + Part2T = "", + Part1 = "sg", + RefName = "Sango", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "sah", + Part2T = "", + Part1 = "", + RefName = "Yakut", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "sai", + Part2T = "", + Part1 = "", + RefName = "South American Indian languages", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "sal", + Part2T = "", + Part1 = "", + RefName = "Salishan languages", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "sam", + Part2T = "", + Part1 = "", + RefName = "Samaritan Aramaic", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "san", + Part2T = "", + Part1 = "sa", + RefName = "Sanskrit", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "sas", + Part2T = "", + Part1 = "", + RefName = "Sasak", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "sat", + Part2T = "", + Part1 = "", + RefName = "Santali", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "scn", + Part2T = "", + Part1 = "", + RefName = "Sicilian", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "sco", + Part2T = "", + Part1 = "", + RefName = "Scots", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "sel", + Part2T = "", + Part1 = "", + RefName = "Selkup", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "sem", + Part2T = "", + Part1 = "", + RefName = "Semitic languages", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "sga", + Part2T = "", + Part1 = "", + RefName = "Irish, Old (to 900)", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "sgn", + Part2T = "", + Part1 = "", + RefName = "Sign Languages", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "shn", + Part2T = "", + Part1 = "", + RefName = "Shan", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "sid", + Part2T = "", + Part1 = "", + RefName = "Sidamo", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "sin", + Part2T = "", + Part1 = "si", + RefName = "Sinhala; Sinhalese", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "sio", + Part2T = "", + Part1 = "", + RefName = "Siouan languages", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "sit", + Part2T = "", + Part1 = "", + RefName = "Sino-Tibetan languages", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "sla", + Part2T = "", + Part1 = "", + RefName = "Slavic languages", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "slo", + Part2T = "slk", + Part1 = "sk", + RefName = "Slovak", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "slv", + Part2T = "", + Part1 = "sl", + RefName = "Slovenian", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "sma", + Part2T = "", + Part1 = "", + RefName = "Southern Sami", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "sme", + Part2T = "", + Part1 = "se", + RefName = "Northern Sami", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "smi", + Part2T = "", + Part1 = "", + RefName = "Sami languages", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "smj", + Part2T = "", + Part1 = "", + RefName = "Lule Sami", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "smn", + Part2T = "", + Part1 = "", + RefName = "Inari Sami", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "smo", + Part2T = "", + Part1 = "sm", + RefName = "Samoan", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "sms", + Part2T = "", + Part1 = "", + RefName = "Skolt Sami", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "sna", + Part2T = "", + Part1 = "sn", + RefName = "Shona", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "snd", + Part2T = "", + Part1 = "sd", + RefName = "Sindhi", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "snk", + Part2T = "", + Part1 = "", + RefName = "Soninke", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "sog", + Part2T = "", + Part1 = "", + RefName = "Sogdian", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "som", + Part2T = "", + Part1 = "so", + RefName = "Somali", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "son", + Part2T = "", + Part1 = "", + RefName = "Songhai languages", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "sot", + Part2T = "", + Part1 = "st", + RefName = "Sotho, Southern", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "spa", + Part2T = "", + Part1 = "es", + RefName = "Spanish; Castilian", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "srd", + Part2T = "", + Part1 = "sc", + RefName = "Sardinian", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "srn", + Part2T = "", + Part1 = "", + RefName = "Sranan Tongo", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "srp", + Part2T = "", + Part1 = "sr", + RefName = "Serbian", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "srr", + Part2T = "", + Part1 = "", + RefName = "Serer", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "ssa", + Part2T = "", + Part1 = "", + RefName = "Nilo-Saharan languages", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "ssw", + Part2T = "", + Part1 = "ss", + RefName = "Swati", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "suk", + Part2T = "", + Part1 = "", + RefName = "Sukuma", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "sun", + Part2T = "", + Part1 = "su", + RefName = "Sundanese", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "sus", + Part2T = "", + Part1 = "", + RefName = "Susu", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "sux", + Part2T = "", + Part1 = "", + RefName = "Sumerian", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "swa", + Part2T = "", + Part1 = "sw", + RefName = "Swahili", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "swe", + Part2T = "", + Part1 = "sv", + RefName = "Swedish", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "syc", + Part2T = "", + Part1 = "", + RefName = "Classical Syriac", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "syr", + Part2T = "", + Part1 = "", + RefName = "Syriac", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "tah", + Part2T = "", + Part1 = "ty", + RefName = "Tahitian", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "tai", + Part2T = "", + Part1 = "", + RefName = "Tai languages", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "tam", + Part2T = "", + Part1 = "ta", + RefName = "Tamil", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "tat", + Part2T = "", + Part1 = "tt", + RefName = "Tatar", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "tel", + Part2T = "", + Part1 = "te", + RefName = "Telugu", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "tem", + Part2T = "", + Part1 = "", + RefName = "Timne", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "ter", + Part2T = "", + Part1 = "", + RefName = "Tereno", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "tet", + Part2T = "", + Part1 = "", + RefName = "Tetum", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "tgk", + Part2T = "", + Part1 = "tg", + RefName = "Tajik", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "tgl", + Part2T = "", + Part1 = "tl", + RefName = "Tagalog", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "tha", + Part2T = "", + Part1 = "th", + RefName = "Thai", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "tib", + Part2T = "bod", + Part1 = "bo", + RefName = "Tibetan", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "tig", + Part2T = "", + Part1 = "", + RefName = "Tigre", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "tir", + Part2T = "", + Part1 = "ti", + RefName = "Tigrinya", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "tiv", + Part2T = "", + Part1 = "", + RefName = "Tiv", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "tkl", + Part2T = "", + Part1 = "", + RefName = "Tokelau", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "tlh", + Part2T = "", + Part1 = "", + RefName = "Klingon; tlhIngan-Hol", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "tli", + Part2T = "", + Part1 = "", + RefName = "Tlingit", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "tmh", + Part2T = "", + Part1 = "", + RefName = "Tamashek", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "tog", + Part2T = "", + Part1 = "", + RefName = "Tonga (Nyasa)", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "ton", + Part2T = "", + Part1 = "to", + RefName = "Tonga (Tonga Islands)", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "tpi", + Part2T = "", + Part1 = "", + RefName = "Tok Pisin", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "tsi", + Part2T = "", + Part1 = "", + RefName = "Tsimshian", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "tsn", + Part2T = "", + Part1 = "tn", + RefName = "Tswana", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "tso", + Part2T = "", + Part1 = "ts", + RefName = "Tsonga", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "tuk", + Part2T = "", + Part1 = "tk", + RefName = "Turkmen", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "tum", + Part2T = "", + Part1 = "", + RefName = "Tumbuka", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "tup", + Part2T = "", + Part1 = "", + RefName = "Tupi languages", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "tur", + Part2T = "", + Part1 = "tr", + RefName = "Turkish", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "tut", + Part2T = "", + Part1 = "", + RefName = "Altaic languages", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "tvl", + Part2T = "", + Part1 = "", + RefName = "Tuvalu", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "twi", + Part2T = "", + Part1 = "tw", + RefName = "Twi", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "tyv", + Part2T = "", + Part1 = "", + RefName = "Tuvinian", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "udm", + Part2T = "", + Part1 = "", + RefName = "Udmurt", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "uga", + Part2T = "", + Part1 = "", + RefName = "Ugaritic", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "uig", + Part2T = "", + Part1 = "ug", + RefName = "Uighur; Uyghur", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "ukr", + Part2T = "", + Part1 = "uk", + RefName = "Ukrainian", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "umb", + Part2T = "", + Part1 = "", + RefName = "Umbundu", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "und", + Part2T = "", + Part1 = "", + RefName = "Undetermined", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "urd", + Part2T = "", + Part1 = "ur", + RefName = "Urdu", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "uzb", + Part2T = "", + Part1 = "uz", + RefName = "Uzbek", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "vai", + Part2T = "", + Part1 = "", + RefName = "Vai", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "ven", + Part2T = "", + Part1 = "ve", + RefName = "Venda", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "vie", + Part2T = "", + Part1 = "vi", + RefName = "Vietnamese", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "vol", + Part2T = "", + Part1 = "vo", + RefName = "Volapük", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "vot", + Part2T = "", + Part1 = "", + RefName = "Votic", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "wak", + Part2T = "", + Part1 = "", + RefName = "Wakashan languages", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "wal", + Part2T = "", + Part1 = "", + RefName = "Wolaitta; Wolaytta", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "war", + Part2T = "", + Part1 = "", + RefName = "Waray", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "was", + Part2T = "", + Part1 = "", + RefName = "Washo", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "wel", + Part2T = "cym", + Part1 = "cy", + RefName = "Welsh", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "wen", + Part2T = "", + Part1 = "", + RefName = "Sorbian languages", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "wln", + Part2T = "", + Part1 = "wa", + RefName = "Walloon", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "wol", + Part2T = "", + Part1 = "wo", + RefName = "Wolof", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "xal", + Part2T = "", + Part1 = "", + RefName = "Kalmyk; Oirat", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "xho", + Part2T = "", + Part1 = "xh", + RefName = "Xhosa", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "yao", + Part2T = "", + Part1 = "", + RefName = "Yao", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "yap", + Part2T = "", + Part1 = "", + RefName = "Yapese", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "yid", + Part2T = "", + Part1 = "yi", + RefName = "Yiddish", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "yor", + Part2T = "", + Part1 = "yo", + RefName = "Yoruba", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "ypk", + Part2T = "", + Part1 = "", + RefName = "Yupik languages", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "zap", + Part2T = "", + Part1 = "", + RefName = "Zapotec", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "zbl", + Part2T = "", + Part1 = "", + RefName = "Blissymbols; Blissymbolics; Bliss", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "zen", + Part2T = "", + Part1 = "", + RefName = "Zenaga", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "zgh", + Part2T = "", + Part1 = "", + RefName = "Standard Moroccan Tamazight", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "zha", + Part2T = "", + Part1 = "za", + RefName = "Zhuang; Chuang", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "znd", + Part2T = "", + Part1 = "", + RefName = "Zande languages", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "zul", + Part2T = "", + Part1 = "zu", + RefName = "Zulu", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "zun", + Part2T = "", + Part1 = "", + RefName = "Zuni", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "zxx", + Part2T = "", + Part1 = "", + RefName = "No linguistic content; Not applicable", + } + ); + + iso6392.RecordList.Add( + new() + { + Part2B = "zza", + Part2T = "", + Part1 = "", + RefName = "Zaza; Dimili; Dimli; Kirdki; Kirmanjki; Zazaki", + } + ); + + return iso6392; + } +} diff --git a/LanguageTags/Iso6393.cs b/LanguageTags/Iso6393.cs new file mode 100644 index 0000000..2217863 --- /dev/null +++ b/LanguageTags/Iso6393.cs @@ -0,0 +1,246 @@ +using System; +using System.Collections.Generic; +using System.Diagnostics; +using System.Globalization; +using System.IO; +using System.Linq; +using System.Text; +using System.Text.Json; + +namespace ptr727.LanguageTags; + +public partial class Iso6393 +{ + public const string DataUri = + @"https://iso639-3.sil.org/sites/iso639-3/files/downloads/iso-639-3.tab"; + public const string DataFileName = "iso6393"; + + public static Iso6393 LoadData(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 + + // Read header + // Id Part2b Part2t Part1 Scope Language_Type Ref_Name Comment + Iso6393 iso6393 = new(); + using StreamReader lineReader = new(File.OpenRead(fileName)); + string line = lineReader.ReadLine(); + Debug.Assert(!string.IsNullOrEmpty(line)); + Debug.Assert(line.Split('\t').Length == 8); + + // Read line by line + while ((line = lineReader.ReadLine()) is not null) + { + // Parse using tab character + string[] records = line.Split('\t'); + Debug.Assert(records.Length == 8); + + // Populate record + Record record = new() + { + Id = records[0].Trim(), + Part2B = records[1].Trim(), + Part2T = records[2].Trim(), + Part1 = records[3].Trim(), + Scope = records[4].Trim(), + LanguageType = records[5].Trim(), + RefName = records[6].Trim(), + Comment = records[7].Trim(), + }; + Debug.Assert(!string.IsNullOrEmpty(record.Id)); + Debug.Assert(!string.IsNullOrEmpty(record.Scope)); + Debug.Assert(!string.IsNullOrEmpty(record.LanguageType)); + Debug.Assert(!string.IsNullOrEmpty(record.RefName)); + iso6393.RecordList.Add(record); + } + + return iso6393; + } + + public static Iso6393 LoadJson(string fileName) => + JsonSerializer.Deserialize( + File.ReadAllText(fileName), + JsonOptions.JsonReadOptions + ); + + public static void SaveJson(string fileName, Iso6393 iso6393) => + File.WriteAllText( + fileName, + JsonSerializer.Serialize(iso6393, JsonOptions.JsonWriteOptions) + ); + + public static void GenCode(string fileName, Iso6393 iso6393) + { + StringBuilder stringBuilder = new(); + _ = stringBuilder.AppendLine( + """ + // This file is generated by LanguageTags.Iso6393.GenCode + + namespace ptr727.LanguageTags; + + public partial class Iso6393 + { + public static Iso6393 Create() + { + Iso6393 iso6393 = new(); + """ + ); + + iso6393.RecordList.ForEach(record => + _ = stringBuilder.AppendLine( + CultureInfo.InvariantCulture, + $$""" + + iso6393.RecordList.Add( + new() + { + Id = "{{record.Id}}", + Part2B = "{{record.Part2B}}", + Part2T = "{{record.Part2T}}", + Part1 = "{{record.Part1}}", + Scope = "{{record.Scope}}", + LanguageType = "{{record.LanguageType}}", + RefName = "{{record.RefName}}", + Comment = "{{record.Comment}}", + } + ); + """ + ) + ); + + _ = stringBuilder.AppendLine( + $$""" + + return iso6393; + } + } + """ + ); + + // Write to file + File.WriteAllText(fileName, stringBuilder.ToString()); + } + + public class Record + { + // The three-letter 639-3 identifier + public string Id { get; set; } = ""; + + // Equivalent 639-2 identifier of the bibliographic applications code set, if there is one + public string Part2B { get; set; } = ""; + + // Equivalent 639-2 identifier of the terminology applications code set, if there is one + public string Part2T { get; set; } = ""; + + // Equivalent 639-1 identifier, if there is one + public string Part1 { get; set; } = ""; + + // I(ndividual), M(acrolanguage), S(pecial) + public string Scope { get; set; } = ""; + + // A(ncient), C(onstructed), E(xtinct), H(istorical), L(iving), S(pecial) + public string LanguageType { get; set; } = ""; + + // Reference language name + public string RefName { get; set; } = ""; + + // Comment relating to one or more of the columns + public string Comment { get; set; } = ""; + } + + public List RecordList { get; private set; } = []; + + /// + /// Finds a language record that matches the specified language tag. + /// + /// + /// The language tag to search for. This can be a 2-letter (ISO 639-1), 3-letter (ISO 639-2/B, ISO 639-2/T, or ISO 639-3), or a language name. + /// + /// + /// If set to true, the method will also attempt to match the language tag against the language's reference name (RefName), including partial matches. + /// + /// + /// The that matches the specified language tag, or null if no match is found. + /// + public Record Find(string languageTag, bool includeDescription) + { + // Find the matching language entry + Record record = null; + + // 693 3 letter form + if (languageTag.Length == 3) + { + // Try 639-3 + record = RecordList.FirstOrDefault(item => + item.Id.Equals(languageTag, StringComparison.OrdinalIgnoreCase) + ); + if (record != null) + { + return record; + } + + // Try the 639-2/B + record = RecordList.FirstOrDefault(item => + item.Part2B.Equals(languageTag, StringComparison.OrdinalIgnoreCase) + ); + if (record != null) + { + return record; + } + + // Try the 639-2/T + record = RecordList.FirstOrDefault(item => + item.Part2T.Equals(languageTag, StringComparison.OrdinalIgnoreCase) + ); + if (record != null) + { + return record; + } + } + + // 693 2 letter form + if (languageTag.Length == 2) + { + // Try 639-1 + record = RecordList.FirstOrDefault(item => + item.Part1.Equals(languageTag, StringComparison.OrdinalIgnoreCase) + ); + if (record != null) + { + return record; + } + } + + // Long form + if (includeDescription) + { + // Exact match + record = RecordList.FirstOrDefault(item => + item.RefName.Equals(languageTag, StringComparison.OrdinalIgnoreCase) + ); + if (record != null) + { + return record; + } + + // Partial match + record = RecordList.FirstOrDefault(item => + item.RefName.Contains(languageTag, StringComparison.OrdinalIgnoreCase) + ); + if (record != null) + { + return record; + } + } + + // Not found + return null; + } +} diff --git a/LanguageTags/Iso6393Gen.cs b/LanguageTags/Iso6393Gen.cs new file mode 100644 index 0000000..b04dc05 --- /dev/null +++ b/LanguageTags/Iso6393Gen.cs @@ -0,0 +1,110935 @@ +// This file is generated by LanguageTags.Iso6393.GenCode + +namespace ptr727.LanguageTags; + +public partial class Iso6393 +{ + public static Iso6393 Create() + { + Iso6393 iso6393 = new(); + + iso6393.RecordList.Add( + new() + { + Id = "aaa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ghotuo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aab", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Alumu-Tesu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aac", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ari", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aad", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Amal", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aae", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Arbëreshë Albanian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aaf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Aranadan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aag", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ambrak", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aah", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Abu' Arapesh", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aai", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Arifama-Miniafia", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aak", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ankave", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aal", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Afade", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aan", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Anambé", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aao", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Algerian Saharan Arabic", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aap", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pará Arára", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aaq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Eastern Abnaki", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aar", + Part2B = "aar", + Part2T = "aar", + Part1 = "aa", + Scope = "I", + LanguageType = "L", + RefName = "Afar", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aas", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Aasáx", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aat", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Arvanitika Albanian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aau", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Abau", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aaw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Solong", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aax", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mandobo Atas", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aaz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Amarasi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aba", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Abé", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "abb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bankon", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "abc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ambala Ayta", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "abd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Manide", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "abe", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Western Abnaki", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "abf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Abai Sungai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "abg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Abaga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "abh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tajiki Arabic", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "abi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Abidji", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "abj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Aka-Bea", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "abk", + Part2B = "abk", + Part2T = "abk", + Part1 = "ab", + Scope = "I", + LanguageType = "L", + RefName = "Abkhazian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "abl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lampung Nyo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "abm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Abanyom", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "abn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Abua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "abo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Abon", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "abp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Abellen Ayta", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "abq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Abaza", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "abr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Abron", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "abs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ambonese Malay", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "abt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ambulas", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "abu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Abure", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "abv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Baharna Arabic", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "abw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pal", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "abx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Inabaknon", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aby", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Aneme Wake", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "abz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Abui", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aca", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Achagua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "acb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Áncá", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "acd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gikyode", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ace", + Part2B = "ace", + Part2T = "ace", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Achinese", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "acf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Saint Lucian Creole French", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ach", + Part2B = "ach", + Part2T = "ach", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Acoli", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aci", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Aka-Cari", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ack", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Aka-Kora", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "acl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Akar-Bale", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "acm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mesopotamian Arabic", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "acn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Achang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "acp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Eastern Acipa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "acq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ta'izzi-Adeni Arabic", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "acr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Achi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "acs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Acroá", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "act", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Achterhoeks", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "acu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Achuar-Shiwiar", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "acv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Achumawi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "acw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Hijazi Arabic", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "acx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Omani Arabic", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "acy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Cypriot Arabic", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "acz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Acheron", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ada", + Part2B = "ada", + Part2T = "ada", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Adangme", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "adb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Atauran", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "add", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lidzonka", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ade", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Adele", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "adf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dhofari Arabic", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "adg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Andegerebinha", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "adh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Adhola", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "adi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Adi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "adj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Adioukrou", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "adl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Galo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "adn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Adang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ado", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Abu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "adq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Adangbe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "adr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Adonara", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ads", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Adamorobe Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "adt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Adnyamathanha", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "adu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Aduge", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "adw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Amundava", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "adx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Amdo Tibetan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ady", + Part2B = "ady", + Part2T = "ady", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Adyghe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "adz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Adzera", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aea", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Areba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aeb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tunisian Arabic", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aec", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Saidi Arabic", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aed", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Argentine Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aee", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Northeast Pashai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aek", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Haeke", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ael", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ambele", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aem", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Arem", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aen", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Armenian Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aeq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Aer", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aer", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Eastern Arrernte", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aes", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Alsea", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aeu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Akeu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aew", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ambakich", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aey", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Amele", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aez", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Aeka", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "afb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gulf Arabic", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "afd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Andai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "afe", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Putukwam", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "afg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Afghan Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "afh", + Part2B = "afh", + Part2T = "afh", + Part1 = "", + Scope = "I", + LanguageType = "C", + RefName = "Afrihili", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "afi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Akrukay", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "afk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nanubae", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "afn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Defaka", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "afo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Eloyi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "afp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tapei", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "afr", + Part2B = "afr", + Part2T = "afr", + Part1 = "af", + Scope = "I", + LanguageType = "L", + RefName = "Afrikaans", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "afs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Afro-Seminole Creole", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aft", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Afitti", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "afu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Awutu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "afz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Obokuitai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aga", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Aguano", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "agb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Legbo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "agc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Agatu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "agd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Agarabi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "age", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Angal", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "agf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Arguni", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "agg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Angor", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "agh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ngelima", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "agi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Agariya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "agj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Argobba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "agk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Isarog Agta", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "agl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Fembe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "agm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Angaataha", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "agn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Agutaynen", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ago", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tainae", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "agq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Aghem", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "agr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Aguaruna", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ags", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Esimbi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "agt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Central Cagayan Agta", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "agu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Aguacateco", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "agv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Remontado Dumagat", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "agw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kahua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "agx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Aghul", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "agy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southern Alta", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "agz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mt. Iriga Agta", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aha", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ahanta", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ahb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Axamb", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ahg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Qimant", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ahh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Aghu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ahi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tiagbamrin Aizi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ahk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Akha", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ahl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Igo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ahm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mobumrin Aizi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ahn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Àhàn", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aho", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Ahom", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ahp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Aproumu Aizi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ahr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ahirani", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ahs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ashe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aht", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ahtena", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aia", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Arosi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aib", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ainu (China)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aic", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ainbai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aid", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Alngith", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aie", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Amara", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aif", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Agi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aig", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Antigua and Barbuda Creole English", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aih", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ai-Cham", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aii", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Assyrian Neo-Aramaic", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aij", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lishanid Noshan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aik", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ake", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ail", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Aimele", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aim", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Aimol", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ain", + Part2B = "ain", + Part2T = "ain", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ainu (Japan)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aio", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Aiton", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aip", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Burumakok", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aiq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Aimaq", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "air", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Airoran", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ait", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Arikem", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aiw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Aari", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aix", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Aighon", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aiy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ali", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aja", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Aja (South Sudan)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ajg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Aja (Benin)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aji", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ajië", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ajn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Andajin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ajs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Algerian Jewish Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aju", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Judeo-Moroccan Arabic", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ajw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Ajawa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ajz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Amri Karbi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aka", + Part2B = "aka", + Part2T = "aka", + Part1 = "ak", + Scope = "M", + LanguageType = "L", + RefName = "Akan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "akb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Batak Angkola", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "akc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mpur", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "akd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ukpet-Ehom", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ake", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Akawaio", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "akf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Akpa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "akg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Anakalangu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "akh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Angal Heneng", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aki", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Aiome", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "akj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Aka-Jeru", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "akk", + Part2B = "akk", + Part2T = "akk", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Akkadian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "akl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Aklanon", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "akm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Aka-Bo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ako", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Akurio", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "akp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Siwu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "akq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ak", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "akr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Araki", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aks", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Akaselem", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "akt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Akolet", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aku", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Akum", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "akv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Akhvakh", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "akw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Akwa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "akx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Aka-Kede", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aky", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Aka-Kol", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "akz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Alabama", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ala", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Alago", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "alc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Qawasqar", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ald", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Alladian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ale", + Part2B = "ale", + Part2T = "ale", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Aleut", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "alf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Alege", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "alh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Alawa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ali", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Amaimon", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "alj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Alangan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "alk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Alak", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "all", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Allar", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "alm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Amblong", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aln", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gheg Albanian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "alo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Larike-Wakasihu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "alp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Alune", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "alq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Algonquin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "alr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Alutor", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "als", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tosk Albanian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "alt", + Part2B = "alt", + Part2T = "alt", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southern Altai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "alu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "'Are'are", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "alw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Alaba-K’abeena", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "alx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Amol", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aly", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Alyawarr", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "alz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Alur", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ama", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Amanayé", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "amb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ambo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "amc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Amahuaca", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ame", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yanesha'", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "amf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Hamer-Banna", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "amg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Amurdak", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "amh", + Part2B = "amh", + Part2T = "amh", + Part1 = "am", + Scope = "I", + LanguageType = "L", + RefName = "Amharic", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ami", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Amis", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "amj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Amdang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "amk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ambai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aml", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "War-Jaintia", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "amm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ama (Papua New Guinea)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "amn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Amanab", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "amo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Amo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "amp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Alamblak", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "amq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Amahai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "amr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Amarakaeri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ams", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southern Amami-Oshima", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "amt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Amto", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "amu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Guerrero Amuzgo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "amv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ambelau", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "amw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Western Neo-Aramaic", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "amx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Anmatyerre", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "amy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ami", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "amz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Atampaya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ana", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Andaqui", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "anb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Andoa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "anc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ngas", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "and", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ansus", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ane", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Xârâcùù", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "anf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Animere", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ang", + Part2B = "ang", + Part2T = "ang", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Old English (ca. 450-1100)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "anh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nend", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ani", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Andi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "anj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Anor", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ank", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Goemai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "anl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Anu-Hkongso Chin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "anm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Anal", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ann", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Obolo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ano", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Andoque", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "anp", + Part2B = "anp", + Part2T = "anp", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Angika", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "anq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Jarawa (India)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "anr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Andh", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ans", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Anserma", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ant", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Antakarinya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "anu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Anuak", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "anv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Denya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "anw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Anaang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "anx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Andra-Hus", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "any", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Anyin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "anz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Anem", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aoa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Angolar", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aob", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Abom", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aoc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pemon", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aod", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Andarum", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aoe", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Angal Enen", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aof", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bragat", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aog", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Angoram", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aoi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Anindilyakwa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aoj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mufian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aok", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Arhö", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aol", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Alor", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aom", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ömie", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aon", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bumbita Arapesh", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aor", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Aore", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aos", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Taikat", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aot", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Atong (India)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aou", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "A'ou", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aox", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Atorada", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aoz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Uab Meto", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "apb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sa'a", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "apc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Levantine Arabic", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "apd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sudanese Arabic", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ape", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bukiyip", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "apf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pahanan Agta", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "apg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ampanang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aph", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Athpariya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "api", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Apiaká", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "apj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Jicarilla Apache", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "apk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kiowa Apache", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "apl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lipan Apache", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "apm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mescalero-Chiricahua Apache", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "apn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Apinayé", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "apo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ambul", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "app", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Apma", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "apq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "A-Pucikwar", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "apr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Arop-Lokep", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aps", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Arop-Sissano", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "apt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Apatani", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "apu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Apurinã", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "apv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Alapmunte", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "apw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Western Apache", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "apx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Aputai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "apy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Apalaí", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "apz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Safeyoka", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aqc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Archi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aqd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ampari Dogon", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aqg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Arigidi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aqk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Aninka", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aqm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Atohwaim", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aqn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Northern Alta", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aqp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Atakapa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aqr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Arhâ", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aqt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Angaité", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aqz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Akuntsu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ara", + Part2B = "ara", + Part2T = "ara", + Part1 = "ar", + Scope = "M", + LanguageType = "L", + RefName = "Arabic", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "arb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Standard Arabic", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "arc", + Part2B = "arc", + Part2T = "arc", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Official Aramaic (700-300 BCE)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ard", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Arabana", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "are", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Western Arrarnta", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "arg", + Part2B = "arg", + Part2T = "arg", + Part1 = "an", + Scope = "I", + LanguageType = "L", + RefName = "Aragonese", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "arh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Arhuaco", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ari", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Arikara", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "arj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Arapaso", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ark", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Arikapú", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "arl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Arabela", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "arn", + Part2B = "arn", + Part2T = "arn", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mapudungun", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aro", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Araona", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "arp", + Part2B = "arp", + Part2T = "arp", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Arapaho", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "arq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Algerian Arabic", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "arr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Karo (Brazil)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ars", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Najdi Arabic", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aru", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Aruá (Amazonas State)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "arv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Arbore", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "arw", + Part2B = "arw", + Part2T = "arw", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Arawak", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "arx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Aruá (Rodonia State)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ary", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Moroccan Arabic", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "arz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Egyptian Arabic", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "asa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Asu (Tanzania)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "asb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Assiniboine", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "asc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Casuarina Coast Asmat", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ase", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "American Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "asf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Auslan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "asg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Cishingini", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ash", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Abishira", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "asi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Buruwai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "asj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sari", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ask", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ashkun", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "asl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Asilulu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "asm", + Part2B = "asm", + Part2T = "asm", + Part1 = "as", + Scope = "I", + LanguageType = "L", + RefName = "Assamese", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "asn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Xingú Asuriní", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aso", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dano", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "asp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Algerian Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "asq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Austrian Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "asr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Asuri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ass", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ipulo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ast", + Part2B = "ast", + Part2T = "ast", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Asturian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "asu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tocantins Asurini", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "asv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Asoa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "asw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Australian Aborigines Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "asx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Muratayak", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "asy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yaosakor Asmat", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "asz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "As", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ata", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pele-Ata", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "atb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Zaiwa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "atc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Atsahuaca", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "atd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ata Manobo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ate", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Atemble", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "atg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ivbie North-Okpela-Arhe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ati", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Attié", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "atj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Atikamekw", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "atk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ati", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "atl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mt. Iraya Agta", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "atm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ata", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "atn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ashtiani", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ato", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Atong (Cameroon)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "atp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pudtol Atta", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "atq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Aralle-Tabulahan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "atr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Waimiri-Atroari", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ats", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gros Ventre", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "att", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pamplona Atta", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "atu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Reel", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "atv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Northern Altai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "atw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Atsugewi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "atx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Arutani", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aty", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Aneityum", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "atz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Arta", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aua", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Asumboa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aub", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Alugu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "auc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Waorani", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aud", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Anuta", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aug", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Aguna", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "auh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Aushi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aui", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Anuki", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "auj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Awjilah", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "auk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Heyo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aul", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Aulua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aum", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Asu (Nigeria)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aun", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Molmo One", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "auo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Auyokawa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aup", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Makayam", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "auq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Anus", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aur", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Aruek", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aut", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Austral", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "auu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Auye", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "auw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Awyi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aux", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Aurá", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "auy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Awiyaana", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "auz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Uzbeki Arabic", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ava", + Part2B = "ava", + Part2T = "ava", + Part1 = "av", + Scope = "I", + LanguageType = "L", + RefName = "Avaric", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "avb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Avau", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "avd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Alviri-Vidari", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ave", + Part2B = "ave", + Part2T = "ave", + Part1 = "ae", + Scope = "I", + LanguageType = "H", + RefName = "Avestan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "avi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Avikam", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "avk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "C", + RefName = "Kotava", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "avl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Eastern Egyptian Bedawi Arabic", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "avm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Angkamuthi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "avn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Avatime", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "avo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Agavotaguerra", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "avs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Aushiri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "avt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Au", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "avu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Avokaya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "avv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Avá-Canoeiro", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "awa", + Part2B = "awa", + Part2T = "awa", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Awadhi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "awb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Awa (Papua New Guinea)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "awc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Cicipu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "awe", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Awetí", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "awg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Anguthimri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "awh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Awbono", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "awi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Aekyom", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "awk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Awabakal", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "awm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Arawum", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "awn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Awngi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "awo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Awak", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "awr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Awera", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aws", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "South Awyu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "awt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Araweté", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "awu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Central Awyu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "awv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Jair Awyu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aww", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Awun", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "awx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Awara", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "awy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Edera Awyu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "axb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Abipon", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "axe", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Ayerrerenge", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "axg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Mato Grosso Arára", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "axk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yaka (Central African Republic)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "axl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Lower Southern Aranda", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "axm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Middle Armenian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "axx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Xârâgurè", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aya", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Awar", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ayb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ayizo Gbe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ayc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southern Aymara", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ayd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Ayabadhu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aye", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ayere", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ayg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ginyanga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ayh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Hadrami Arabic", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ayi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Leyigha", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ayk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Akuku", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ayl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Libyan Arabic", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aym", + Part2B = "aym", + Part2T = "aym", + Part1 = "ay", + Scope = "M", + LanguageType = "L", + RefName = "Aymara", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ayn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sanaani Arabic", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ayo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ayoreo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ayp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "North Mesopotamian Arabic", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ayq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ayi (Papua New Guinea)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ayr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Central Aymara", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ays", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sorsogon Ayta", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ayt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Magbukun Ayta", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ayu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ayu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ayz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mai Brat", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aza", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Azha", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "azb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "South Azerbaijani", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "azd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Eastern Durango Nahuatl", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "aze", + Part2B = "aze", + Part2T = "aze", + Part1 = "az", + Scope = "M", + LanguageType = "L", + RefName = "Azerbaijani", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "azg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "San Pedro Amuzgos Amuzgo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "azj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "North Azerbaijani", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "azm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ipalapa Amuzgo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "azn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Western Durango Nahuatl", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "azo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Awing", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "azt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Faire Atta", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "azz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Highland Puebla Nahuatl", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "baa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Babatana", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bab", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bainouk-Gunyuño", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bac", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Badui", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bae", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Baré", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "baf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nubaca", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bag", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tuki", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bah", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bahamas Creole English", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "baj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Barakai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bak", + Part2B = "bak", + Part2T = "bak", + Part1 = "ba", + Scope = "I", + LanguageType = "L", + RefName = "Bashkir", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bal", + Part2B = "bal", + Part2T = "bal", + Part1 = "", + Scope = "M", + LanguageType = "L", + RefName = "Baluchi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bam", + Part2B = "bam", + Part2T = "bam", + Part1 = "bm", + Scope = "I", + LanguageType = "L", + RefName = "Bambara", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ban", + Part2B = "ban", + Part2T = "ban", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Balinese", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bao", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Waimaha", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bap", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bantawa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bar", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bavarian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bas", + Part2B = "bas", + Part2T = "bas", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Basa (Cameroon)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bau", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bada (Nigeria)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bav", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Vengo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "baw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bambili-Bambui", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bax", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bamun", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bay", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Batuley", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bba", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Baatonum", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bbb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Barai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bbc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Batak Toba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bbd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bau", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bbe", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bangba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bbf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Baibai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bbg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Barama", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bbh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bugan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bbi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Barombi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bbj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ghomálá'", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bbk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Babanki", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bbl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bats", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bbm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Babango", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bbn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Uneapa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bbo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Northern Bobo Madaré", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bbp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "West Central Banda", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bbq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bamali", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bbr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Girawa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bbs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bakpinka", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bbt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mburku", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bbu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kulung (Nigeria)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bbv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Karnai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bbw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Baba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bbx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bubia", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bby", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Befang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bca", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Central Bai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bcb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bainouk-Samik", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bcc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southern Balochi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bcd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "North Babar", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bce", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bamenyam", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bcf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bamu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bcg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Baga Pokur", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bch", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bariai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bci", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Baoulé", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bcj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bardi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bck", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bunuba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bcl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Central Bikol", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bcm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bannoni", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bcn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bali (Nigeria)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bco", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kaluli", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bcp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bali (Democratic Republic of Congo)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bcq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bench", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bcr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Babine", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bcs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kohumono", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bct", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bendi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bcu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Awad Bing", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bcv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Shoo-Minda-Nye", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bcw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bana", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bcy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bacama", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bcz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bainouk-Gunyaamolo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bda", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bayot", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bdb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Basap", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bdc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Emberá-Baudó", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bdd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bunama", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bde", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bade", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bdf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Biage", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bdg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bonggi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bdh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Baka (South Sudan)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bdi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Burun", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bdj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bai (South Sudan)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bdk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Budukh", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bdl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Indonesian Bajau", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bdm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Buduma", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bdn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Baldemu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bdo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Morom", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bdp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bende", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bdq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bahnar", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bdr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "West Coast Bajau", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bds", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Burunge", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bdt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bokoto", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bdu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Oroko", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bdv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bodo Parja", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bdw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Baham", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bdx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Budong-Budong", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bdy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bandjalang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bdz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Badeshi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bea", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Beaver", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "beb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bebele", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bec", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Iceve-Maci", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bed", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bedoanas", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bee", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Byangsi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bef", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Benabena", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "beg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Belait", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "beh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Biali", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bei", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bekati'", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bej", + Part2B = "bej", + Part2T = "bej", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Beja", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bek", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bebeli", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bel", + Part2B = "bel", + Part2T = "bel", + Part1 = "be", + Scope = "I", + LanguageType = "L", + RefName = "Belarusian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bem", + Part2B = "bem", + Part2T = "bem", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bemba (Zambia)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ben", + Part2B = "ben", + Part2T = "ben", + Part1 = "bn", + Scope = "I", + LanguageType = "L", + RefName = "Bengali", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "beo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Beami", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bep", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Besoa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "beq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Beembe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bes", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Besme", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bet", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Guiberoua Béte", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "beu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Blagar", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bev", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Daloa Bété", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bew", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Betawi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bex", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Jur Modo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bey", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Beli (Papua New Guinea)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bez", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bena (Tanzania)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bfa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bari", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bfb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pauri Bareli", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bfc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Panyi Bai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bfd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bafut", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bfe", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Betaf", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bff", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bofi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bfg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Busang Kayan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bfh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Blafe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bfi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "British Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bfj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bafanji", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bfk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ban Khor Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bfl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Banda-Ndélé", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bfm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mmen", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bfn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bunak", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bfo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Malba Birifor", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bfp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Beba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bfq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Badaga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bfr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bazigar", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bfs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southern Bai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bft", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Balti", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bfu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gahri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bfw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bondo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bfx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bantayanon", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bfy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bagheli", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bfz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mahasu Pahari", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bga", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gwamhi-Wuri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bgb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bobongko", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bgc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Haryanvi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bgd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Rathwi Bareli", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bge", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bauria", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bgf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bangandu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bgg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bugun", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bgi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Giangan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bgj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bangolan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bgk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bit", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bgl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bo (Laos)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bgn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Western Balochi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bgo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Baga Koga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bgp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Eastern Balochi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bgq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bagri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bgr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bawm Chin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bgs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tagabawa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bgt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bughotu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bgu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mbongno", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bgv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Warkay-Bipim", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bgw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bhatri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bgx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Balkan Gagauz Turkish", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bgy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Benggoi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bgz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Banggai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bha", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bharia", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bhb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bhili", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bhc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Biga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bhd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bhadrawahi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bhe", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bhaya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bhf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Odiai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bhg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Binandere", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bhh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bukharic", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bhi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bhilali", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bhj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bahing", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bhl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bimin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bhm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bathari", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bhn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bohtan Neo-Aramaic", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bho", + Part2B = "bho", + Part2T = "bho", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bhojpuri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bhp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bima", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bhq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tukang Besi South", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bhr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bara Malagasy", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bhs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Buwal", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bht", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bhattiyali", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bhu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bhunjia", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bhv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bahau", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bhw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Biak", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bhx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bhalay", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bhy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bhele", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bhz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bada (Indonesia)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bia", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Badimaya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bib", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bissa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bid", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bidiyo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bie", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bepour", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bif", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Biafada", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "big", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Biangai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bik", + Part2B = "bik", + Part2T = "bik", + Part1 = "", + Scope = "M", + LanguageType = "L", + RefName = "Bikol", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bil", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bile", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bim", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bimoba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bin", + Part2B = "bin", + Part2T = "bin", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bini", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bio", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bip", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bila", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "biq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bipi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bir", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bisorio", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bis", + Part2B = "bis", + Part2T = "bis", + Part1 = "bi", + Scope = "I", + LanguageType = "L", + RefName = "Bislama", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bit", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Berinomo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "biu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Biete", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "biv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southern Birifor", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "biw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kol (Cameroon)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bix", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bijori", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "biy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Birhor", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "biz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Baloi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bja", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Budza", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bjb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Banggarla", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bjc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bariji", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bje", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Biao-Jiao Mien", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bjf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Barzani Jewish Neo-Aramaic", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bjg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bidyogo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bjh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bahinemo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bji", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Burji", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bjj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kanauji", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bjk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Barok", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bjl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bulu (Papua New Guinea)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bjm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bajelani", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bjn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Banjar", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bjo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mid-Southern Banda", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bjp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Fanamaket", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bjr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Binumarien", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bjs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bajan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bjt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Balanta-Ganja", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bju", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Busuu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bjv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bedjond", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bjw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bakwé", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bjx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Banao Itneg", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bjy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Bayali", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bjz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Baruga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bka", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kyak", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bkc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Baka (Cameroon)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bkd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Binukid", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bkf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Beeke", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bkg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Buraka", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bkh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bakoko", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bki", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Baki", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bkj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pande", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bkk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Brokskat", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bkl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Berik", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bkm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kom (Cameroon)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bkn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bukitan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bko", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kwa'", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bkp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Boko (Democratic Republic of Congo)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bkq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bakairí", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bkr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bakumpai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bks", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Northern Sorsoganon", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bkt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Boloki", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bku", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Buhid", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bkv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bekwarra", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bkw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bekwel", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bkx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Baikeno", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bky", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bokyi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bkz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bungku", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bla", + Part2B = "bla", + Part2T = "bla", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Siksika", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "blb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bilua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "blc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bella Coola", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bld", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bolango", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ble", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Balanta-Kentohe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "blf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Buol", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "blh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kuwaa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bli", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bolia", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "blj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bolongan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "blk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pa'o Karen", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bll", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Biloxi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "blm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Beli (South Sudan)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bln", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southern Catanduanes Bikol", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "blo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Anii", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "blp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Blablanga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "blq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Baluan-Pam", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "blr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Blang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bls", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Balaesang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "blt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tai Dam", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "blv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kibala", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "blw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Balangao", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "blx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mag-Indi Ayta", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bly", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Notre", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "blz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Balantak", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bma", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lame", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bmb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bembe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bmc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Biem", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bmd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Baga Manduri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bme", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Limassa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bmf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bom-Kim", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bmg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bamwe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bmh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kein", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bmi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bagirmi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bmj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bote-Majhi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bmk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ghayavi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bml", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bomboli", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bmm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Northern Betsimisaraka Malagasy", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bmn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Bina (Papua New Guinea)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bmo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bambalang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bmp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bulgebi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bmq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bomu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bmr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Muinane", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bms", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bilma Kanuri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bmt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Biao Mon", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bmu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Somba-Siawari", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bmv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bum", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bmw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bomwali", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bmx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Baimak", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bmz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Baramu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bna", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bonerate", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bnb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bookan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bnc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "M", + LanguageType = "L", + RefName = "Bontok", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bnd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Banda (Indonesia)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bne", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bintauna", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bnf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Masiwang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bng", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Benga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bni", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bangi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bnj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Eastern Tawbuid", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bnk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bierebo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bnl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Boon", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bnm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Batanga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bnn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bunun", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bno", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bantoanon", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bnp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bola", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bnq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bantik", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bnr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Butmas-Tur", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bns", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bundeli", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bnu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bentong", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bnv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bonerif", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bnw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bisis", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bnx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bangubangu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bny", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bintulu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bnz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Beezen", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "boa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bora", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bob", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Aweer", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bod", + Part2B = "tib", + Part2T = "bod", + Part1 = "bo", + Scope = "I", + LanguageType = "L", + RefName = "Tibetan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "boe", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mundabli", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bof", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bolon", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bog", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bamako Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "boh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Boma", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "boi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Barbareño", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "boj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Anjam", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bok", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bonjo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bol", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bole", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bom", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Berom", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bon", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bine", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "boo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tiemacèwè Bozo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bop", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bonkiman", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "boq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bogaya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bor", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Borôro", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bos", + Part2B = "bos", + Part2T = "bos", + Part1 = "bs", + Scope = "I", + LanguageType = "L", + RefName = "Bosnian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bot", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bongo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bou", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bondei", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bov", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tuwuli", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bow", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Rema", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "box", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Buamu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "boy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bodo (Central African Republic)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "boz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tiéyaxo Bozo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bpa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Daakaka", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bpc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mbuk", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bpd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Banda-Banda", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bpe", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bauni", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bpg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bonggo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bph", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Botlikh", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bpi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bagupi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bpj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Binji", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bpk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Orowe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bpl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Broome Pearling Lugger Pidgin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bpm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Biyom", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bpn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dzao Min", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bpo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Anasi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bpp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kaure", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bpq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Banda Malay", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bpr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Koronadal Blaan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bps", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sarangani Blaan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bpt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Barrow Point", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bpu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bongu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bpv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bian Marind", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bpw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bo (Papua New Guinea)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bpx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Palya Bareli", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bpy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bishnupriya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bpz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bilba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bqa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tchumbuli", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bqb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bagusa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bqc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Boko (Benin)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bqd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bung", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bqf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Baga Kaloum", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bqg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bago-Kusuntu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bqh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Baima", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bqi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bakhtiari", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bqj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bandial", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bqk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Banda-Mbrès", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bql", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Karian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bqm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wumboko", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bqn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bulgarian Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bqo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Balo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bqp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Busa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bqq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Biritai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bqr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Burusu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bqs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bosngun", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bqt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bamukumbit", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bqu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Boguru", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bqv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Koro Wachi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bqw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Buru (Nigeria)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bqx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Baangi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bqy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bengkala Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bqz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bakaka", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bra", + Part2B = "bra", + Part2T = "bra", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Braj", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "brb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Brao", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "brc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Berbice Creole Dutch", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "brd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Baraamu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bre", + Part2B = "bre", + Part2T = "bre", + Part1 = "br", + Scope = "I", + LanguageType = "L", + RefName = "Breton", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "brf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bira", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "brg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Baure", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "brh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Brahui", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bri", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mokpwe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "brj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bieria", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "brk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Birked", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "brl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Birwa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "brm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Barambu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "brn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Boruca", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bro", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Brokkat", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "brp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Barapasi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "brq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Breri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "brr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Birao", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "brs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Baras", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "brt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bitare", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bru", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Eastern Bru", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "brv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Western Bru", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "brw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bellari", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "brx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bodo (India)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bry", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Burui", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "brz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bilbil", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bsa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Abinomn", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bsb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Brunei Bisaya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bsc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bassari", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bse", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wushi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bsf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bauchi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bsg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bashkardi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bsh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kati", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bsi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bassossi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bsj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bangwinji", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bsk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Burushaski", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bsl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Basa-Gumna", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bsm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Busami", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bsn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Barasana-Eduria", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bso", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Buso", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bsp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Baga Sitemu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bsq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bassa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bsr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bassa-Kontagora", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bss", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Akoose", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bst", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Basketo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bsu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bahonsuai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bsv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Baga Sobané", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bsw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Baiso", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bsx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yangkam", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bsy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sabah Bisaya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bta", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bata", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "btc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bati (Cameroon)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "btd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Batak Dairi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bte", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Gamo-Ningi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "btf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Birgit", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "btg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gagnoa Bété", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bth", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Biatah Bidayuh", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bti", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Burate", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "btj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bacanese Malay", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "btm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Batak Mandailing", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "btn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ratagnon", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bto", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Rinconada Bikol", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "btp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Budibud", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "btq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Batek", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "btr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Baetora", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bts", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Batak Simalungun", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "btt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bete-Bendi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "btu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Batu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "btv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bateri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "btw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Butuanon", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "btx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Batak Karo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bty", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bobot", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "btz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Batak Alas-Kluet", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bua", + Part2B = "bua", + Part2T = "bua", + Part1 = "", + Scope = "M", + LanguageType = "L", + RefName = "Buriat", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bub", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "buc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bushi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bud", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ntcham", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bue", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Beothuk", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "buf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bushoong", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bug", + Part2B = "bug", + Part2T = "bug", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Buginese", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "buh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Younuo Bunu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bui", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bongili", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "buj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Basa-Gurmana", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "buk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bugawac", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bul", + Part2B = "bul", + Part2T = "bul", + Part1 = "bg", + Scope = "I", + LanguageType = "L", + RefName = "Bulgarian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bum", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bulu (Cameroon)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bun", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sherbro", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "buo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Terei", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bup", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Busoa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "buq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Brem", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bus", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bokobaru", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "but", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bungain", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "buu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Budu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "buv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bun", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "buw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bubi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bux", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Boghom", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "buy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bullom So", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "buz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bukwen", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bva", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Barein", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bvb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bube", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bvc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Baelelea", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bvd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Baeggu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bve", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Berau Malay", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bvf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Boor", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bvg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bonkeng", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bvh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bure", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bvi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Belanda Viri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bvj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Baan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bvk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bukat", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bvl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bolivian Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bvm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bamunka", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bvn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Buna", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bvo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bolgo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bvp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bumang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bvq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Birri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bvr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Burarra", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bvt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bati (Indonesia)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bvu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bukit Malay", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bvv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Baniva", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bvw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Boga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bvx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dibole", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bvy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Baybayanon", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bvz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bauzi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bwa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bwatoo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bwb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Namosi-Naitasiri-Serua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bwc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bwile", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bwd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bwaidoka", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bwe", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bwe Karen", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bwf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Boselewa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bwg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Barwe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bwh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bishuo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bwi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Baniwa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bwj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Láá Láá Bwamu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bwk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bauwaki", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bwl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bwela", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bwm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Biwat", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bwn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wunai Bunu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bwo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Boro (Ethiopia)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bwp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mandobo Bawah", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bwq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southern Bobo Madaré", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bwr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bura-Pabir", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bws", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bomboma", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bwt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bafaw-Balong", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bwu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Buli (Ghana)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bww", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bwa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bwx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bu-Nao Bunu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bwy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Cwi Bwamu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bwz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bwisi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bxa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tairaha", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bxb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Belanda Bor", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bxc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Molengue", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bxd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pela", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bxe", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Birale", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bxf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bilur", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bxg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bangala", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bxh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Buhutu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bxi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Pirlatapa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bxj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bayungu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bxk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bukusu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bxl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Jalkunan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bxm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mongolia Buriat", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bxn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Burduna", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bxo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Barikanchi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bxp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bebil", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bxq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Beele", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bxr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Russia Buriat", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bxs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Busam", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bxu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "China Buriat", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bxv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Berakou", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bxw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bankagooma", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bxz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Binahari", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bya", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Batak", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "byb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bikya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "byc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ubaghara", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "byd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Benyadu'", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bye", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pouye", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "byf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bete", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "byg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Baygo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "byh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bhujel", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "byi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Buyu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "byj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bina (Nigeria)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "byk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Biao", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "byl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bayono", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bym", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bidjara", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "byn", + Part2B = "byn", + Part2T = "byn", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bilin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "byo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Biyo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "byp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bumaji", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "byq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Basay", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "byr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Baruya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bys", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Burak", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "byt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Berti", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "byv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Medumba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "byw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Belhariya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "byx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Qaqet", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "byz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Banaro", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bza", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bandi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bzb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Andio", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bzc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southern Betsimisaraka Malagasy", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bzd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bribri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bze", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Jenaama Bozo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bzf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Boikin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bzg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Babuza", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bzh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mapos Buang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bzi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bisu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bzj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Belize Kriol English", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bzk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nicaragua Creole English", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bzl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Boano (Sulawesi)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bzm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bolondo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bzn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Boano (Maluku)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bzo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bozaba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bzp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kemberano", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bzq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Buli (Indonesia)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bzr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Biri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bzs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Brazilian Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bzt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "C", + RefName = "Brithenig", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bzu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Burmeso", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bzv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Naami", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bzw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Basa (Nigeria)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bzx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kɛlɛngaxo Bozo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bzy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Obanliku", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "bzz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Evant", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "caa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chortí", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cab", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Garifuna", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cac", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chuj", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cad", + Part2B = "cad", + Part2T = "cad", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Caddo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cae", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lehar", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "caf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southern Carrier", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cag", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nivaclé", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cah", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Cahuarano", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "caj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Chané", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cak", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kaqchikel", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cal", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Carolinian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cam", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Cemuhî", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "can", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chambri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cao", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chácobo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cap", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chipaya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "caq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Car Nicobarese", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "car", + Part2B = "car", + Part2T = "car", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Galibi Carib", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cas", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tsimané", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cat", + Part2B = "cat", + Part2T = "cat", + Part1 = "ca", + Scope = "I", + LanguageType = "L", + RefName = "Catalan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cav", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Cavineña", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "caw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Callawalla", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cax", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chiquitano", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cay", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Cayuga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "caz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Canichana", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cbb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Cabiyarí", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cbc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Carapana", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cbd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Carijona", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cbg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chimila", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cbi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chachi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cbj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ede Cabe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cbk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chavacano", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cbl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bualkhaw Chin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cbn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nyahkur", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cbo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Izora", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cbq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tsucuba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cbr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Cashibo-Cacataibo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cbs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Cashinahua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cbt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chayahuita", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cbu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Candoshi-Shapra", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cbv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Cacua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cbw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kinabalian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cby", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Carabayo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ccc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chamicuro", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ccd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Cafundo Creole", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cce", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chopi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ccg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Samba Daka", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cch", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Atsam", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ccj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kasanga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ccl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Cutchi-Swahili", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ccm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Malaccan Creole Malay", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cco", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Comaltepec Chinantec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ccp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chakma", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ccr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Cacaopera", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cda", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Choni", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cde", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chenchu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cdf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chiru", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cdh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chambeali", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cdi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chodri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cdj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Churahi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cdm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chepang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cdn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chaudangsi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cdo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Min Dong Chinese", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cdr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Cinda-Regi-Tiyal", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cds", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chadian Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cdy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chadong", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cdz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Koda", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cea", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Lower Chehalis", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ceb", + Part2B = "ceb", + Part2T = "ceb", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Cebuano", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ceg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chamacoco", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cek", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Eastern Khumi Chin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cen", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Cen", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ces", + Part2B = "cze", + Part2T = "ces", + Part1 = "cs", + Scope = "I", + LanguageType = "L", + RefName = "Czech", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cet", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Centúúm", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cey", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ekai Chin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cfa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dijim-Bwilim", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cfd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Cara", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cfg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Como Karim", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cfm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Falam Chin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cga", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Changriwa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cgc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kagayanen", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cgg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chiga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cgk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chocangacakha", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cha", + Part2B = "cha", + Part2T = "cha", + Part1 = "ch", + Scope = "I", + LanguageType = "L", + RefName = "Chamorro", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "chb", + Part2B = "chb", + Part2T = "chb", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Chibcha", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "chc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Catawba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "chd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Highland Oaxaca Chontal", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "che", + Part2B = "che", + Part2T = "che", + Part1 = "ce", + Scope = "I", + LanguageType = "L", + RefName = "Chechen", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "chf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tabasco Chontal", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "chg", + Part2B = "chg", + Part2T = "chg", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Chagatai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "chh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Chinook", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "chj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ojitlán Chinantec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "chk", + Part2B = "chk", + Part2T = "chk", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chuukese", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "chl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Cahuilla", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "chm", + Part2B = "chm", + Part2T = "chm", + Part1 = "", + Scope = "M", + LanguageType = "L", + RefName = "Mari (Russia)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "chn", + Part2B = "chn", + Part2T = "chn", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chinook jargon", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cho", + Part2B = "cho", + Part2T = "cho", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Choctaw", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "chp", + Part2B = "chp", + Part2T = "chp", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chipewyan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "chq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Quiotepec Chinantec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "chr", + Part2B = "chr", + Part2T = "chr", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Cherokee", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cht", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Cholón", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "chu", + Part2B = "chu", + Part2T = "chu", + Part1 = "cu", + Scope = "I", + LanguageType = "H", + RefName = "Church Slavic", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "chv", + Part2B = "chv", + Part2T = "chv", + Part1 = "cv", + Scope = "I", + LanguageType = "L", + RefName = "Chuvash", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "chw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chuwabu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "chx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chantyal", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "chy", + Part2B = "chy", + Part2T = "chy", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Cheyenne", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "chz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ozumacín Chinantec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cia", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Cia-Cia", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cib", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ci Gbe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cic", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chickasaw", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cid", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Chimariko", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cie", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Cineni", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cih", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chinali", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cik", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chitkuli Kinnauri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cim", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Cimbrian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cin", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Cinta Larga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cip", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chiapanec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cir", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tiri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ciw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chippewa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ciy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chaima", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cja", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Western Cham", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cje", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chru", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cjh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Upper Chehalis", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cji", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chamalal", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cjk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chokwe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cjm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Eastern Cham", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cjn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chenapian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cjo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ashéninka Pajonal", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cjp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Cabécar", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cjs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Shor", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cjv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chuave", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cjy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Jinyu Chinese", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ckb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Central Kurdish", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ckh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chak", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ckl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Cibak", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ckm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chakavian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ckn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kaang Chin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cko", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Anufo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ckq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kajakse", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ckr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kairak", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cks", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tayo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ckt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chukot", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cku", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Koasati", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ckv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kavalan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ckx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Caka", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cky", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Cakfem-Mushere", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ckz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Cakchiquel-Quiché Mixed Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cla", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ron", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "clc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chilcotin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cld", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chaldean Neo-Aramaic", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cle", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lealao Chinantec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "clh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chilisso", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cli", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chakali", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "clj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Laitu Chin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "clk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Idu-Mishmi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cll", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chala", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "clm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Clallam", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "clo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lowland Oaxaca Chontal", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cls", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Classical Sanskrit", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "clt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lautu Chin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "clu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Caluyanun", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "clw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chulym", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cly", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Eastern Highland Chatino", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cma", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Maa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cme", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Cerma", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cmg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Classical Mongolian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cmi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Emberá-Chamí", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cml", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Campalagian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cmm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Michigamea", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cmn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mandarin Chinese", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cmo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Central Mnong", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cmr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mro-Khimi Chin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cms", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Messapic", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cmt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Camtho", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cna", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Changthang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cnb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chinbon Chin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cnc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Côông", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cng", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Northern Qiang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cnh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Hakha Chin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cni", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Asháninka", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cnk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Khumi Chin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cnl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lalana Chinantec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cno", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Con", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cnp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Northern Ping Chinese", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cnq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chung", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cnr", + Part2B = "cnr", + Part2T = "cnr", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Montenegrin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cns", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Central Asmat", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cnt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tepetotutla Chinantec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cnu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chenoua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cnw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ngawn Chin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cnx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Middle Cornish", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "coa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Cocos Islands Malay", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cob", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Chicomuceltec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "coc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Cocopa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cod", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Cocama-Cocamilla", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "coe", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Koreguaje", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cof", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Colorado", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cog", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chong", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "coh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chonyi-Dzihana-Kauma", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "coj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Cochimi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cok", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Santa Teresa Cora", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "col", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Columbia-Wenatchi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "com", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Comanche", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "con", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Cofán", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "coo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Comox", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cop", + Part2B = "cop", + Part2T = "cop", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Coptic", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "coq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Coquille", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cor", + Part2B = "cor", + Part2T = "cor", + Part1 = "kw", + Scope = "I", + LanguageType = "L", + RefName = "Cornish", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cos", + Part2B = "cos", + Part2T = "cos", + Part1 = "co", + Scope = "I", + LanguageType = "L", + RefName = "Corsican", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cot", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Caquinte", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cou", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wamey", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cov", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Cao Miao", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cow", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Cowlitz", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cox", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nanti", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "coz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chochotec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cpa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Palantla Chinantec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cpb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ucayali-Yurúa Ashéninka", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cpc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ajyíninka Apurucayali", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cpg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Cappadocian Greek", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cpi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chinese Pidgin English", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cpn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Cherepon", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cpo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kpeego", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cps", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Capiznon", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cpu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pichis Ashéninka", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cpx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pu-Xian Chinese", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cpy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "South Ucayali Ashéninka", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cqd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chuanqiandian Cluster Miao", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cra", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chara", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "crb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Island Carib", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "crc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lonwolwol", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "crd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Coeur d'Alene", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cre", + Part2B = "cre", + Part2T = "cre", + Part1 = "cr", + Scope = "M", + LanguageType = "L", + RefName = "Cree", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "crf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Caramanta", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "crg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Michif", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "crh", + Part2B = "crh", + Part2T = "crh", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Crimean Tatar", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cri", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sãotomense", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "crj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southern East Cree", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "crk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Plains Cree", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "crl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Northern East Cree", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "crm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Moose Cree", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "crn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "El Nayar Cora", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cro", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Crow", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "crq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Iyo'wujwa Chorote", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "crr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Carolina Algonquian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "crs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Seselwa Creole French", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "crt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Iyojwa'ja Chorote", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "crv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chaura", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "crw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chrau", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "crx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Carrier", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cry", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Cori", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "crz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Cruzeño", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "csa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chiltepec Chinantec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "csb", + Part2B = "csb", + Part2T = "csb", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kashubian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "csc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Catalan Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "csd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chiangmai Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cse", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Czech Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "csf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Cuba Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "csg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chilean Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "csh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Asho Chin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "csi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Coast Miwok", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "csj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Songlai Chin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "csk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Jola-Kasa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "csl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chinese Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "csm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Central Sierra Miwok", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "csn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Colombian Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cso", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sochiapam Chinantec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "csp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southern Ping Chinese", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "csq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Croatia Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "csr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Costa Rican Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "css", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Southern Ohlone", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cst", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Northern Ohlone", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "csv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sumtu Chin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "csw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Swampy Cree", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "csx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Cambodian Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "csy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Siyin Chin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "csz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Coos", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cta", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tataltepec Chatino", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ctc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Chetco", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ctd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tedim Chin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cte", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tepinapa Chinantec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ctg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chittagonian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cth", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Thaiphum Chin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ctl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tlacoatzintepec Chinantec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ctm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Chitimacha", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ctn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chhintange", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cto", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Emberá-Catío", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ctp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Western Highland Chatino", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cts", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Northern Catanduanes Bikol", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ctt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wayanad Chetti", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ctu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chol", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cty", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Moundadan Chetty", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ctz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Zacatepec Chatino", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cua", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Cua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cub", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Cubeo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cuc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Usila Chinantec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cuh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chuka", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cui", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Cuiba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cuj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mashco Piro", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cuk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "San Blas Kuna", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cul", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Culina", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cuo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Cumanagoto", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cup", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Cupeño", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cuq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Cun", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cur", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chhulung", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cut", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Teutila Cuicatec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cuu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tai Ya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cuv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Cuvok", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cuw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chukwa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cux", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tepeuxila Cuicatec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cuy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Cuitlatec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cvg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chug", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cvn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Valle Nacional Chinantec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cwa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kabwa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cwb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Maindo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cwd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Woods Cree", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cwe", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kwere", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cwg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chewong", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cwt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kuwaataay", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cxh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Cha'ari", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cya", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nopala Chatino", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cyb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Cayubaba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cym", + Part2B = "wel", + Part2T = "cym", + Part1 = "cy", + Scope = "I", + LanguageType = "L", + RefName = "Welsh", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "cyo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Cuyonon", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "czh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Huizhou Chinese", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "czk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Knaanic", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "czn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Zenzontepec Chatino", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "czo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Min Zhong Chinese", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "czt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Zotung Chin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "daa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dangaléat", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dac", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dambi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dad", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Marik", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dae", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Duupa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dag", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dagbani", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dah", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gwahatike", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dai", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Day", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "daj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dar Fur Daju", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dak", + Part2B = "dak", + Part2T = "dak", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dakota", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dal", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dahalo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dam", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Damakawa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dan", + Part2B = "dan", + Part2T = "dan", + Part1 = "da", + Scope = "I", + LanguageType = "L", + RefName = "Danish", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dao", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Daai Chin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "daq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dandami Maria", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dar", + Part2B = "dar", + Part2T = "dar", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dargwa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "das", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Daho-Doo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dau", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dar Sila Daju", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dav", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Taita", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "daw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Davawenyo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dax", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dayi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "daz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Moi-Wadea", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dba", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bangime", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dbb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Deno", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dbd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dadiya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dbe", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dabe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dbf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Edopi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dbg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dogul Dom Dogon", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dbi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Doka", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dbj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ida'an", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dbl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dyirbal", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dbm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Duguri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dbn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Duriankere", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dbo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dulbu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dbp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Duwai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dbq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Daba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dbr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dabarre", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dbt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ben Tey Dogon", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dbu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bondum Dom Dogon", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dbv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dungu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dbw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bankan Tey Dogon", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dby", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dibiyaso", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dcc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Deccan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dcr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Negerhollands", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dda", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Dadi Dadi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ddd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dongotono", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dde", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Doondo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ddg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Fataluku", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ddi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "West Goodenough", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ddj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Jaru", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ddn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dendi (Benin)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ddo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dido", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ddr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Dhudhuroa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dds", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Donno So Dogon", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ddw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dawera-Daweloor", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dec", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dagik", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ded", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dedua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dee", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dewoin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "def", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dezfuli", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "deg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Degema", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "deh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dehwari", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dei", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Demisa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "del", + Part2B = "del", + Part2T = "del", + Part1 = "", + Scope = "M", + LanguageType = "L", + RefName = "Delaware", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dem", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dem", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "den", + Part2B = "den", + Part2T = "den", + Part1 = "", + Scope = "M", + LanguageType = "L", + RefName = "Slave (Athapascan)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dep", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Pidgin Delaware", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "deq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dendi (Central African Republic)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "der", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Deori", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "des", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Desano", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "deu", + Part2B = "ger", + Part2T = "deu", + Part1 = "de", + Scope = "I", + LanguageType = "L", + RefName = "German", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dev", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Domung", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dez", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dengese", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dga", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southern Dagaare", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dgb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bunoge Dogon", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dgc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Casiguran Dumagat Agta", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dgd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dagaari Dioula", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dge", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Degenan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dgg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Doga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dgh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dghwede", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dgi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Northern Dagara", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dgk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dagba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dgl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Andaandi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dgn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Dagoman", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dgo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dogri (individual language)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dgr", + Part2B = "dgr", + Part2T = "dgr", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tlicho", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dgs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dogoso", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dgt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Ndra'ngith", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dgw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Daungwurrung", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dgx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Doghoro", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dgz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Daga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dhd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dhundari", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dhg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dhangu-Djangu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dhi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dhimal", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dhl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dhalandji", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dhm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Zemba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dhn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dhanki", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dho", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dhodia", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dhr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dhargari", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dhs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dhaiso", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dhu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Dhurga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dhv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dehu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dhw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dhanwar (Nepal)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dhx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dhungaloo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dia", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dia", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dib", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "South Central Dinka", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dic", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lakota Dida", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "did", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Didinga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dif", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Dieri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dig", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Digo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dih", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kumiai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dii", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dimbong", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dij", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dik", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southwestern Dinka", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dil", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dilling", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dim", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dime", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "din", + Part2B = "din", + Part2T = "din", + Part1 = "", + Scope = "M", + LanguageType = "L", + RefName = "Dinka", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dio", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dibo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dip", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Northeastern Dinka", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "diq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dimli (individual language)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dir", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dirim", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dis", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dimasa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "diu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Diriku", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "div", + Part2B = "div", + Part2T = "div", + Part1 = "dv", + Scope = "I", + LanguageType = "L", + RefName = "Dhivehi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "diw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Northwestern Dinka", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dix", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dixon Reef", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "diy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Diuwe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "diz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ding", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dja", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Djadjawurrung", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "djb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Djinba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "djc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dar Daju Daju", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "djd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Djamindjung", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dje", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Zarma", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "djf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Djangun", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dji", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Djinang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "djj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Djeebbana", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "djk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Eastern Maroon Creole", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "djm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Jamsay Dogon", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "djn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Jawoyn", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "djo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Jangkang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "djr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Djambarrpuyngu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dju", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kapriman", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "djw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Djawi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dka", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dakpakha", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dkg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kadung", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dkk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dakka", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dkr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kuijau", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dks", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southeastern Dinka", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dkx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mazagway", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dlg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dolgan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dlk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dahalik", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dlm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Dalmatian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dln", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Darlong", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dma", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Duma", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dmb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mombo Dogon", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dmc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gavak", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dmd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Madhi Madhi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dme", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dugwor", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dmf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Medefaidrin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dmg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Upper Kinabatangan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dmk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Domaaki", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dml", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dameli", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dmm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dama", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dmo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kemedzung", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dmr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "East Damar", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dms", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dampelas", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dmu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dubu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dmv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dumpas", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dmw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mudburra", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dmx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dema", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dmy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Demta", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dna", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Upper Grand Valley Dani", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dnd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Daonda", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dne", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ndendeule", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dng", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dungan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dni", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lower Grand Valley Dani", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dnj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dnk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dengka", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dnn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dzùùngoo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dno", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ndrulo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dnr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Danaru", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dnt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mid Grand Valley Dani", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dnu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Danau", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dnv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Danu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dnw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Western Dani", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dny", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dení", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "doa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dom", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dob", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dobu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "doc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Northern Dong", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "doe", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Doe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dof", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Domu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "doh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dong", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "doi", + Part2B = "doi", + Part2T = "doi", + Part1 = "", + Scope = "M", + LanguageType = "L", + RefName = "Dogri (macrolanguage)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dok", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dondo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dol", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Doso", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "don", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Toura (Papua New Guinea)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "doo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dongo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dop", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lukpa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "doq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dominican Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dor", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dori'o", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dos", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dogosé", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dot", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dass", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dov", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dombe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dow", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Doyayo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dox", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bussa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "doy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dompo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "doz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dorze", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dpp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Papar", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "drb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dair", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "drc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Minderico", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "drd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Darmiya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dre", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dolpo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "drg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Rungus", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dri", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "C'Lela", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "drl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Paakantyi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "drn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "West Damar", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dro", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Daro-Matu Melanau", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "drq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Dura", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "drs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gedeo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "drt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Drents", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dru", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Rukai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dry", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Darai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dsb", + Part2B = "dsb", + Part2T = "dsb", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lower Sorbian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dse", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dutch Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dsh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Daasanach", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dsi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Disa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dsk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dokshi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dsl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Danish Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dsn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Dusner", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dso", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Desiya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dsq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tadaksahak", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dsz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mardin Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dta", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Daur", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dtb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Labuk-Kinabatangan Kadazan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dtd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ditidaht", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dth", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Adithinngithigh", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dti", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ana Tinga Dogon", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dtk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tene Kan Dogon", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dtm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tomo Kan Dogon", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dtn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Daatsʼíin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dto", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tommo So Dogon", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dtp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kadazan Dusun", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dtr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lotud", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dts", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Toro So Dogon", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dtt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Toro Tegu Dogon", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dtu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tebul Ure Dogon", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dty", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dotyali", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dua", + Part2B = "dua", + Part2T = "dua", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Duala", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dub", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dubli", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "duc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Duna", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "due", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Umiray Dumaget Agta", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "duf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dumbea", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dug", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Duruma", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "duh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dungra Bhil", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dui", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dumun", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "duk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Uyajitaya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dul", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Alabat Island Agta", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dum", + Part2B = "dum", + Part2T = "dum", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Middle Dutch (ca. 1050-1350)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dun", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dusun Deyah", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "duo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dupaninan Agta", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dup", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Duano", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "duq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dusun Malang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dur", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dii", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dus", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dumi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "duu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Drung", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "duv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Duvle", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "duw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dusun Witu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dux", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Duungooma", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "duy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Dicamay Agta", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "duz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Duli-Gey", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dva", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Duau", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dwa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Diri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dwk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dawik Kui", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dwr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dawro", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dws", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "C", + RefName = "Dutton World Speedwords", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dwu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dhuwal", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dww", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dawawa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dwy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dhuwaya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dwz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dewas Rai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dya", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dyan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dyb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Dyaberdyaber", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dyd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Dyugun", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dyg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Villa Viciosa Agta", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dyi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Djimini Senoufo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dym", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yanda Dom Dogon", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dyn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dyangadi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dyo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Jola-Fonyi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dyr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dyarim", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dyu", + Part2B = "dyu", + Part2T = "dyu", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dyula", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dyy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Djabugay", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dza", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tunzu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dzd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Daza", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dze", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Djiwarli", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dzg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dazaga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dzl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dzalakha", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dzn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dzando", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "dzo", + Part2B = "dzo", + Part2T = "dzo", + Part1 = "dz", + Scope = "I", + LanguageType = "L", + RefName = "Dzongkha", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "eaa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Karenggapa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ebc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Beginci", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ebg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ebughu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ebk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Eastern Bontok", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ebo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Teke-Ebo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ebr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ebrié", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ebu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Embu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ecr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Eteocretan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ecs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ecuadorian Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ecy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Eteocypriot", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "eee", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "E", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "efa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Efai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "efe", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Efe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "efi", + Part2B = "efi", + Part2T = "efi", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Efik", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ega", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ega", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "egl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Emilian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "egm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Benamanga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ego", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Eggon", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "egy", + Part2B = "egy", + Part2T = "egy", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Egyptian (Ancient)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ehs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Miyakubo Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ehu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ehueun", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "eip", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Eipomek", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "eit", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Eitiep", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "eiv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Askopan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "eja", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ejamat", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "eka", + Part2B = "eka", + Part2T = "eka", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ekajuk", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "eke", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ekit", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ekg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ekari", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "eki", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Eki", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ekk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Standard Estonian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ekl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kol (Bangladesh)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ekm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Elip", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "eko", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Koti", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ekp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ekpeye", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ekr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yace", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "eky", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Eastern Kayah", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ele", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Elepi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "elh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "El Hugeirat", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "eli", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Nding", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "elk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Elkei", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ell", + Part2B = "gre", + Part2T = "ell", + Part1 = "el", + Scope = "I", + LanguageType = "L", + RefName = "Modern Greek (1453-)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "elm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Eleme", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "elo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "El Molo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "elu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Elu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "elx", + Part2B = "elx", + Part2T = "elx", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Elamite", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ema", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Emai-Iuleha-Ora", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "emb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Embaloh", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "eme", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Emerillon", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "emg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Eastern Meohang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "emi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mussau-Emira", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "emk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Eastern Maninkakan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "emm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Mamulique", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "emn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Eman", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "emp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Northern Emberá", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "emq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Eastern Minyag", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ems", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pacific Gulf Yupik", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "emu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Eastern Muria", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "emw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Emplawas", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "emx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Erromintxela", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "emy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Epigraphic Mayan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "emz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mbessa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ena", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Apali", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "enb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Markweeta", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "enc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "En", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "end", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ende", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "enf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Forest Enets", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "eng", + Part2B = "eng", + Part2T = "eng", + Part1 = "en", + Scope = "I", + LanguageType = "L", + RefName = "English", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "enh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tundra Enets", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "enl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Enlhet", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "enm", + Part2B = "enm", + Part2T = "enm", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Middle English (1100-1500)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "enn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Engenni", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "eno", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Enggano", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "enq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Enga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "enr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Emumu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "enu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Enu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "env", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Enwan (Edo State)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "enw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Enwan (Akwa Ibom State)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "enx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Enxet", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "eot", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Beti (Côte d'Ivoire)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "epi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Epie", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "epo", + Part2B = "epo", + Part2T = "epo", + Part1 = "eo", + Scope = "I", + LanguageType = "C", + RefName = "Esperanto", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "era", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Eravallan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "erg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sie", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "erh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Eruwa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "eri", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ogea", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "erk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "South Efate", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ero", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Horpa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "err", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Erre", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ers", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ersu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ert", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Eritai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "erw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Erokwanas", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ese", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ese Ejja", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "esg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Aheri Gondi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "esh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Eshtehardi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "esi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "North Alaskan Inupiatun", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "esk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Northwest Alaska Inupiatun", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "esl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Egypt Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "esm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Esuma", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "esn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Salvadoran Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "eso", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Estonian Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "esq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Esselen", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ess", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Central Siberian Yupik", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "est", + Part2B = "est", + Part2T = "est", + Part1 = "et", + Scope = "M", + LanguageType = "L", + RefName = "Estonian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "esu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Central Yupik", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "esy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Eskayan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "etb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Etebi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "etc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Etchemin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "eth", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ethiopian Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "etn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Eton (Vanuatu)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "eto", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Eton (Cameroon)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "etr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Edolo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ets", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yekhee", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ett", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Etruscan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "etu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ejagham", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "etx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Eten", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "etz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Semimi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "eud", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Eudeve", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "eus", + Part2B = "baq", + Part2T = "eus", + Part1 = "eu", + Scope = "I", + LanguageType = "L", + RefName = "Basque", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "eve", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Even", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "evh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Uvbie", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "evn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Evenki", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ewe", + Part2B = "ewe", + Part2T = "ewe", + Part1 = "ee", + Scope = "I", + LanguageType = "L", + RefName = "Ewe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ewo", + Part2B = "ewo", + Part2T = "ewo", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ewondo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ext", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Extremaduran", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "eya", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Eyak", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "eyo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Keiyo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "eza", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ezaa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "eze", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Uzekwe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "faa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Fasu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "fab", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Fa d'Ambu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "fad", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wagi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "faf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Fagani", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "fag", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Finongan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "fah", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Baissa Fali", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "fai", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Faiwol", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "faj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Faita", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "fak", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Fang (Cameroon)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "fal", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "South Fali", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "fam", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Fam", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "fan", + Part2B = "fan", + Part2T = "fan", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Fang (Equatorial Guinea)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "fao", + Part2B = "fao", + Part2T = "fao", + Part1 = "fo", + Scope = "I", + LanguageType = "L", + RefName = "Faroese", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "fap", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Paloor", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "far", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Fataleka", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "fas", + Part2B = "per", + Part2T = "fas", + Part1 = "fa", + Scope = "M", + LanguageType = "L", + RefName = "Persian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "fat", + Part2B = "fat", + Part2T = "fat", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Fanti", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "fau", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Fayu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "fax", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Fala", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "fay", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southwestern Fars", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "faz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Northwestern Fars", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "fbl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "West Albay Bikol", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "fcs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Quebec Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "fer", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Feroge", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ffi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Foia Foia", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ffm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Maasina Fulfulde", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "fgr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Fongoro", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "fia", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nobiin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "fie", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Fyer", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "fif", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Faifi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "fij", + Part2B = "fij", + Part2T = "fij", + Part1 = "fj", + Scope = "I", + LanguageType = "L", + RefName = "Fijian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "fil", + Part2B = "fil", + Part2T = "fil", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Filipino", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "fin", + Part2B = "fin", + Part2T = "fin", + Part1 = "fi", + Scope = "I", + LanguageType = "L", + RefName = "Finnish", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "fip", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Fipa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "fir", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Firan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "fit", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tornedalen Finnish", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "fiw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Fiwaga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "fkk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kirya-Konzəl", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "fkv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kven Finnish", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "fla", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kalispel-Pend d'Oreille", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "flh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Foau", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "fli", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Fali", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "fll", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "North Fali", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "fln", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Flinders Island", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "flr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Fuliiru", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "fly", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Flaaitaal", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "fmp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Fe'fe'", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "fmu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Far Western Muria", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "fnb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Fanbak", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "fng", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Fanagalo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "fni", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Fania", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "fod", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Foodo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "foi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Foi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "fom", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Foma", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "fon", + Part2B = "fon", + Part2T = "fon", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Fon", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "for", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Fore", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "fos", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Siraya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "fpe", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Fernando Po Creole English", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "fqs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Fas", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "fra", + Part2B = "fre", + Part2T = "fra", + Part1 = "fr", + Scope = "I", + LanguageType = "L", + RefName = "French", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "frc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Cajun French", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "frd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Fordata", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "frk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Frankish", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "frm", + Part2B = "frm", + Part2T = "frm", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Middle French (ca. 1400-1600)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "fro", + Part2B = "fro", + Part2T = "fro", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Old French (842-ca. 1400)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "frp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Arpitan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "frq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Forak", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "frr", + Part2B = "frr", + Part2T = "frr", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Northern Frisian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "frs", + Part2B = "frs", + Part2T = "frs", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Eastern Frisian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "frt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Fortsenal", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "fry", + Part2B = "fry", + Part2T = "fry", + Part1 = "fy", + Scope = "I", + LanguageType = "L", + RefName = "Western Frisian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "fse", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Finnish Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "fsl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "French Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "fss", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Finland-Swedish Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "fub", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Adamawa Fulfulde", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "fuc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pulaar", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "fud", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "East Futuna", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "fue", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Borgu Fulfulde", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "fuf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pular", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "fuh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Western Niger Fulfulde", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "fui", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bagirmi Fulfulde", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "fuj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ko", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ful", + Part2B = "ful", + Part2T = "ful", + Part1 = "ff", + Scope = "M", + LanguageType = "L", + RefName = "Fulah", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "fum", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Fum", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "fun", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Fulniô", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "fuq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Central-Eastern Niger Fulfulde", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "fur", + Part2B = "fur", + Part2T = "fur", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Friulian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "fut", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Futuna-Aniwa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "fuu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Furu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "fuv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nigerian Fulfulde", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "fuy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Fuyug", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "fvr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Fur", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "fwa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Fwâi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "fwe", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Fwe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gaa", + Part2B = "gaa", + Part2T = "gaa", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gab", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gabri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gac", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mixed Great Andamanese", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gad", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gaddang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gae", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Guarequena", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gaf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gende", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gag", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gagauz", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gah", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Alekano", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gai", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Borei", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gaj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gadsup", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gak", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gamkonora", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gal", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Galolen", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gam", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kandawo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gan", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gan Chinese", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gao", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gants", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gap", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gal", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gaq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gata'", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gar", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Galeya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gas", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Adiwasi Garasia", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gat", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kenati", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gau", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mudhili Gadaba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gaw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nobonob", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gax", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Borana-Arsi-Guji Oromo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gay", + Part2B = "gay", + Part2T = "gay", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gayo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gaz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "West Central Oromo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gba", + Part2B = "gba", + Part2T = "gba", + Part1 = "", + Scope = "M", + LanguageType = "L", + RefName = "Gbaya (Central African Republic)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gbb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kaytetye", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gbd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Karajarri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gbe", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Niksek", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gbf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gaikundi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gbg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gbanziri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gbh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Defi Gbe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gbi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Galela", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gbj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bodo Gadaba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gbk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gaddi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gbl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gamit", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gbm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Garhwali", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gbn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mo'da", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gbo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Northern Grebo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gbp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gbaya-Bossangoa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gbq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gbaya-Bozoum", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gbr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gbagyi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gbs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gbesi Gbe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gbu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gagadu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gbv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gbanu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gbw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gabi-Gabi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gbx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Eastern Xwla Gbe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gby", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gbari", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gbz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Zoroastrian Dari", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gcc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mali", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gcd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Ganggalida", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gce", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Galice", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gcf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Guadeloupean Creole French", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gcl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Grenadian Creole English", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gcn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gaina", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gcr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Guianese Creole French", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gct", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Colonia Tovar German", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gda", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gade Lohar", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gdb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pottangi Ollar Gadaba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gdc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Gugu Badhun", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gdd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gedaged", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gde", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gude", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gdf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Guduf-Gava", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gdg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ga'dang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gdh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gadjerawang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gdi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gundi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gdj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gurdjar", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gdk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gadang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gdl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dirasha", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gdm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Laal", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gdn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Umanakaina", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gdo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ghodoberi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gdq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mehri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gdr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wipi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gds", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ghandruk Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gdt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Kungardutyi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gdu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gudu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gdx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Godwari", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gea", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Geruma", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "geb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kire", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gec", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gboloo Grebo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ged", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gade", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gef", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gerai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "geg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gengle", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "geh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Hutterite German", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gei", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gebe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gej", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gen", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gek", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ywom", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gel", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "ut-Ma'in", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "geq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Geme", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ges", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Geser-Gorom", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gev", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Eviya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gew", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gera", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gex", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Garre", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gey", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Enya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gez", + Part2B = "gez", + Part2T = "gez", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Geez", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gfk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Patpatar", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gft", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Gafat", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gga", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gao", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ggb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gbii", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ggd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Gugadj", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gge", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gurr-goni", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ggg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gurgula", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ggk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Kungarakany", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ggl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ganglau", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ggt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gitua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ggu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gagu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ggw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gogodala", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gha", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ghadamès", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ghc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Hiberno-Scottish Gaelic", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ghe", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southern Ghale", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ghh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Northern Ghale", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ghk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Geko Karen", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ghl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ghulfan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ghn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ghanongga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gho", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ghomara", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ghr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ghera", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ghs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Guhu-Samane", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ght", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kuke", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gia", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kija", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gib", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gibanawa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gic", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gail", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gid", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gidar", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gie", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gaɓogbo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gig", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Goaria", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gih", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Githabul", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gii", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Girirra", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gil", + Part2B = "gil", + Part2T = "gil", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gilbertese", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gim", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gimi (Eastern Highlands)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gin", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Hinukh", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gip", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gimi (West New Britain)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "giq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Green Gelao", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gir", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Red Gelao", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gis", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "North Giziga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "git", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gitxsan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "giu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mulao", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "giw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "White Gelao", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gix", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gilima", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "giy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Giyug", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "giz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "South Giziga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gjk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kachi Koli", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gjm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Gunditjmara", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gjn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gonja", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gjr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gurindji Kriol", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gju", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gujari", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gka", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Guya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gkd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Magɨ (Madang Province)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gke", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ndai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gkn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gokana", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gko", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Kok-Nar", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gkp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Guinea Kpelle", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gku", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "ǂUngkue", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gla", + Part2B = "gla", + Part2T = "gla", + Part1 = "gd", + Scope = "I", + LanguageType = "L", + RefName = "Scottish Gaelic", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "glb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Belning", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "glc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bon Gula", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gld", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nanai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gle", + Part2B = "gle", + Part2T = "gle", + Part1 = "ga", + Scope = "I", + LanguageType = "L", + RefName = "Irish", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "glg", + Part2B = "glg", + Part2T = "glg", + Part1 = "gl", + Scope = "I", + LanguageType = "L", + RefName = "Galician", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "glh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Northwest Pashai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "glj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gula Iro", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "glk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gilaki", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gll", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Garlali", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "glo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Galambu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "glr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Glaro-Twabo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "glu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gula (Chad)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "glv", + Part2B = "glv", + Part2T = "glv", + Part1 = "gv", + Scope = "I", + LanguageType = "L", + RefName = "Manx", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "glw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Glavda", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gly", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Gule", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gma", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Gambera", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gmb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gula'alaa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gmd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mághdì", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gmg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Magɨyi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gmh", + Part2B = "gmh", + Part2T = "gmh", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Middle High German (ca. 1050-1500)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gml", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Middle Low German", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gmm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gbaya-Mbodomo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gmn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gimnime", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gmr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mirning", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gmu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gumalu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gmv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gamo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gmx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Magoma", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gmy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Mycenaean Greek", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gmz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mgbolizhia", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gna", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kaansa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gnb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gangte", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gnc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Guanche", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gnd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Zulgo-Gemzek", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gne", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ganang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gng", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ngangam", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gnh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lere", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gni", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gooniyandi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gnj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ngen", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gnk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "ǁGana", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gnl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Gangulu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gnm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ginuman", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gnn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gumatj", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gno", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Northern Gondi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gnq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gana", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gnr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Gureng Gureng", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gnt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Guntai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gnu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gnau", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gnw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Western Bolivian Guaraní", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gnz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ganzi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "goa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Guro", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gob", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Playero", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "goc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gorakor", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "god", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Godié", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "goe", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gongduk", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gof", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gofa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gog", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gogo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "goh", + Part2B = "goh", + Part2T = "goh", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Old High German (ca. 750-1050)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "goi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gobasi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "goj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gowlan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gok", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gowli", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gol", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gola", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gom", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Goan Konkani", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gon", + Part2B = "gon", + Part2T = "gon", + Part1 = "", + Scope = "M", + LanguageType = "L", + RefName = "Gondi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "goo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gone Dau", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gop", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yeretuar", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "goq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gorap", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gor", + Part2B = "gor", + Part2T = "gor", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gorontalo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gos", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gronings", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "got", + Part2B = "got", + Part2T = "got", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Gothic", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gou", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gavar", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gov", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Goo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gow", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gorowa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gox", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gobu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "goy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Goundo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "goz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gozarkhani", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gpa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gupa-Abawa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gpe", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ghanaian Pidgin English", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gpn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Taiap", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gqa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ga'anda", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gqi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Guiqiong", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gqn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Guana (Brazil)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gqr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gor", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gqu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Qau", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gra", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Rajput Garasia", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "grb", + Part2B = "grb", + Part2T = "grb", + Part1 = "", + Scope = "M", + LanguageType = "L", + RefName = "Grebo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "grc", + Part2B = "grc", + Part2T = "grc", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Ancient Greek (to 1453)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "grd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Guruntum-Mbaaru", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "grg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Madi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "grh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gbiri-Niragu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gri", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ghari", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "grj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southern Grebo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "grm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kota Marudu Talantang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "grn", + Part2B = "grn", + Part2T = "grn", + Part1 = "gn", + Scope = "M", + LanguageType = "L", + RefName = "Guarani", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gro", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Groma", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "grq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gorovu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "grr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Taznatit", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "grs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gresi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "grt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Garo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gru", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kistane", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "grv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Central Grebo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "grw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gweda", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "grx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Guriaso", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gry", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Barclayville Grebo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "grz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Guramalum", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gse", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ghanaian Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gsg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "German Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gsl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gusilay", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gsm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Guatemalan Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gsn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nema", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gso", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southwest Gbaya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gsp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wasembo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gss", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Greek Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gsw", + Part2B = "gsw", + Part2T = "gsw", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Swiss German", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gta", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Guató", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gtu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Aghu-Tharnggala", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gua", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Shiki", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gub", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Guajajára", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "guc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wayuu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gud", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yocoboué Dida", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gue", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gurindji", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "guf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gupapuyngu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gug", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Paraguayan Guaraní", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "guh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Guahibo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gui", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Eastern Bolivian Guaraní", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "guj", + Part2B = "guj", + Part2T = "guj", + Part1 = "gu", + Scope = "I", + LanguageType = "L", + RefName = "Gujarati", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "guk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gumuz", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gul", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sea Island Creole English", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gum", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Guambiano", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gun", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mbyá Guaraní", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "guo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Guayabero", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gup", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gunwinggu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "guq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Aché", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gur", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Farefare", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gus", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Guinean Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gut", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Maléku Jaíka", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "guu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yanomamö", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "guw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gun", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gux", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gourmanchéma", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "guz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gusii", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gva", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Guana (Paraguay)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gvc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Guanano", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gve", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Duwet", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gvf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Golin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gvj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Guajá", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gvl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gulay", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gvm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gurmana", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gvn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kuku-Yalanji", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gvo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gavião Do Jiparaná", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gvp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pará Gavião", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gvr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gurung", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gvs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gumawana", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gvy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Guyani", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gwa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mbato", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gwb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gwa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gwc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gawri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gwd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gawwada", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gwe", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gweno", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gwf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gowro", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gwg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Moo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gwi", + Part2B = "gwi", + Part2T = "gwi", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gwichʼin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gwj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "ǀGwi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gwm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Awngthim", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gwn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gwandara", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gwr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gwere", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gwt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gawar-Bati", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gwu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Guwamu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gww", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kwini", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gwx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gxx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wè Southern", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gya", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Northwest Gbaya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gyb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Garus", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gyd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kayardild", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gye", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gyem", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gyf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Gungabula", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gyg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gbayi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gyi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gyele", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gyl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gayil", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gym", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ngäbere", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gyn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Guyanese Creole English", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gyo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gyalsumdo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gyr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Guarayu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gyy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Gunya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gyz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Geji", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gza", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ganza", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gzi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gazi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "gzn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gane", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "haa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Han", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hab", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Hanoi Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hac", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gurani", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "had", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Hatam", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hae", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Eastern Oromo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "haf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Haiphong Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hag", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Hanga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hah", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Hahon", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hai", + Part2B = "hai", + Part2T = "hai", + Part1 = "", + Scope = "M", + LanguageType = "L", + RefName = "Haida", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "haj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Hajong", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hak", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Hakka Chinese", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hal", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Halang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ham", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Hewa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "han", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Hangaza", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hao", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Hakö", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hap", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Hupla", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "haq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ha", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "har", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Harari", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "has", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Haisla", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hat", + Part2B = "hat", + Part2T = "hat", + Part1 = "ht", + Scope = "I", + LanguageType = "L", + RefName = "Haitian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hau", + Part2B = "hau", + Part2T = "hau", + Part1 = "ha", + Scope = "I", + LanguageType = "L", + RefName = "Hausa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hav", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Havu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "haw", + Part2B = "haw", + Part2T = "haw", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Hawaiian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hax", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southern Haida", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hay", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Haya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "haz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Hazaragi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hba", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Hamba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hbb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Huba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hbn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Heiban", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hbo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Ancient Hebrew", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hbs", + Part2B = "", + Part2T = "", + Part1 = "sh", + Scope = "M", + LanguageType = "L", + RefName = "Serbo-Croatian", + Comment = "Code element for 639-1 has been deprecated", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hbu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Habu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hca", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Andaman Creole Hindi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hch", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Huichol", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hdn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Northern Haida", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hds", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Honduras Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hdy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Hadiyya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hea", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Northern Qiandong Miao", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "heb", + Part2B = "heb", + Part2T = "heb", + Part1 = "he", + Scope = "I", + LanguageType = "L", + RefName = "Hebrew", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hed", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Herdé", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "heg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Helong", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "heh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Hehe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hei", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Heiltsuk", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hem", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Hemba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "her", + Part2B = "her", + Part2T = "her", + Part1 = "hz", + Scope = "I", + LanguageType = "L", + RefName = "Herero", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hgm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Haiǁom", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hgw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Haigwai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hhi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Hoia Hoia", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hhr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kerak", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hhy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Hoyahoya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hia", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lamang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hib", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Hibito", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hid", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Hidatsa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hif", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Fiji Hindi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hig", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kamwe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hih", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pamosu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hii", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Hinduri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hij", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Hijuk", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hik", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Seit-Kaitetu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hil", + Part2B = "hil", + Part2T = "hil", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Hiligaynon", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hin", + Part2B = "hin", + Part2T = "hin", + Part1 = "hi", + Scope = "I", + LanguageType = "L", + RefName = "Hindi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hio", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tsoa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hir", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Himarimã", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hit", + Part2B = "hit", + Part2T = "hit", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Hittite", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hiw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Hiw", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hix", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Hixkaryána", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hji", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Haji", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hka", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kahe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hke", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Hunde", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hkh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Khah", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hkk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Hunjara-Kaina Ke", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hkn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mel-Khaonh", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hks", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Hong Kong Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hla", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Halia", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hlb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Halbi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hld", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Halang Doan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hle", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Hlersu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hlt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Matu Chin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hlu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Hieroglyphic Luwian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hma", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southern Mashan Hmong", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hmb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Humburi Senni Songhay", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hmc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Central Huishui Hmong", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hmd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Large Flowery Miao", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hme", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Eastern Huishui Hmong", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hmf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Hmong Don", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hmg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southwestern Guiyang Hmong", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hmh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southwestern Huishui Hmong", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hmi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Northern Huishui Hmong", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hmj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ge", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hmk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Maek", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hml", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Luopohe Hmong", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hmm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Central Mashan Hmong", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hmn", + Part2B = "hmn", + Part2T = "hmn", + Part1 = "", + Scope = "M", + LanguageType = "L", + RefName = "Hmong", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hmo", + Part2B = "hmo", + Part2T = "hmo", + Part1 = "ho", + Scope = "I", + LanguageType = "L", + RefName = "Hiri Motu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hmp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Northern Mashan Hmong", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hmq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Eastern Qiandong Miao", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hmr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Hmar", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hms", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southern Qiandong Miao", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hmt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Hamtai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hmu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Hamap", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hmv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Hmong Dô", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hmw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Western Mashan Hmong", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hmy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southern Guiyang Hmong", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hmz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Hmong Shua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hna", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mina (Cameroon)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hnd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southern Hindko", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hne", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chhattisgarhi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hng", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Hungu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hnh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "ǁAni", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hni", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Hani", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hnj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Hmong Njua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hnm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Hainanese", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hnn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Hanunoo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hno", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Northern Hindko", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hns", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Caribbean Hindustani", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hnu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Hung", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hoa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Hoava", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hob", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mari (Madang Province)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hoc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ho", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hod", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Holma", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hoe", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Horom", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hoh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Hobyót", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hoi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Holikachuk", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hoj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Hadothi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hol", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Holu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hom", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Homa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hoo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Holoholo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hop", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Hopi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hor", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Horo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hos", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ho Chi Minh City Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hot", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Hote", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hov", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Hovongan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "how", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Honi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hoy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Holiya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hoz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Hozo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hpo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Hpon", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hps", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Hawai'i Sign Language (HSL)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hra", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Hrangkhol", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hrc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Niwer Mil", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hre", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Hre", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hrk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Haruku", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hrm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Horned Miao", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hro", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Haroi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hrp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Nhirrpi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hrt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Hértevin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hru", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Hruso", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hrv", + Part2B = "hrv", + Part2T = "hrv", + Part1 = "hr", + Scope = "I", + LanguageType = "L", + RefName = "Croatian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hrw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Warwar Feni", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hrx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Hunsrik", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hrz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Harzani", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hsb", + Part2B = "hsb", + Part2T = "hsb", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Upper Sorbian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hsh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Hungarian Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hsl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Hausa Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hsn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Xiang Chinese", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hss", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Harsusi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hti", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Hoti", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hto", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Minica Huitoto", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hts", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Hadza", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "htu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Hitu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "htx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Middle Hittite", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hub", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Huambisa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "huc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "ǂHua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hud", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Huaulu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hue", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "San Francisco Del Mar Huave", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "huf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Humene", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hug", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Huachipaeri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "huh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Huilliche", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hui", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Huli", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "huj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Northern Guiyang Hmong", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "huk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Hulung", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hul", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Hula", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hum", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Hungana", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hun", + Part2B = "hun", + Part2T = "hun", + Part1 = "hu", + Scope = "I", + LanguageType = "L", + RefName = "Hungarian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "huo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Hu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hup", + Part2B = "hup", + Part2T = "hup", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Hupa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "huq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tsat", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hur", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Halkomelem", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hus", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Huastec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hut", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Humla", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "huu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Murui Huitoto", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "huv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "San Mateo Del Mar Huave", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "huw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Hukumina", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hux", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nüpode Huitoto", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "huy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Hulaulá", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "huz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Hunzib", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hvc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Haitian Vodoun Culture Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hve", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "San Dionisio Del Mar Huave", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hvk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Haveke", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hvn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sabu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hvv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Santa María Del Mar Huave", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hwa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wané", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hwc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Hawai'i Creole English", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hwo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Hwana", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hya", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Hya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hye", + Part2B = "arm", + Part2T = "hye", + Part1 = "hy", + Scope = "I", + LanguageType = "L", + RefName = "Armenian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "hyw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Western Armenian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "iai", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Iaai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ian", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Iatmul", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "iar", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Purari", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "iba", + Part2B = "iba", + Part2T = "iba", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Iban", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ibb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ibibio", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ibd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Iwaidja", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ibe", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Akpes", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ibg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ibanag", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ibh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bih", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ibl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ibaloi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ibm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Agoi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ibn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ibino", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ibo", + Part2B = "ibo", + Part2T = "ibo", + Part1 = "ig", + Scope = "I", + LanguageType = "L", + RefName = "Igbo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ibr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ibuoro", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ibu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ibu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "iby", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ibani", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ica", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ede Ica", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ich", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Etkywan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "icl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Icelandic Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "icr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Islander Creole English", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ida", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Idakho-Isukha-Tiriki", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "idb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Indo-Portuguese", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "idc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Idon", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "idd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ede Idaca", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ide", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Idere", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "idi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Idi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ido", + Part2B = "ido", + Part2T = "ido", + Part1 = "io", + Scope = "I", + LanguageType = "C", + RefName = "Ido", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "idr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Indri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ids", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Idesa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "idt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Idaté", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "idu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Idoma", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ifa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Amganad Ifugao", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ifb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Batad Ifugao", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ife", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ifè", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "iff", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Ifo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ifk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tuwali Ifugao", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ifm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Teke-Fuumu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ifu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mayoyao Ifugao", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ify", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Keley-I Kallahan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "igb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ebira", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ige", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Igede", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "igg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Igana", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "igl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Igala", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "igm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kanggape", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ign", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ignaciano", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "igo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Isebe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "igs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "C", + RefName = "Interglossa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "igw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Igwe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ihb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Iha Based Pidgin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ihi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ihievbe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ihp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Iha", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ihw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Bidhawal", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "iii", + Part2B = "iii", + Part2T = "iii", + Part1 = "ii", + Scope = "I", + LanguageType = "L", + RefName = "Sichuan Yi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "iin", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Thiin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ijc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Izon", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ije", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Biseni", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ijj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ede Ije", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ijn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kalabari", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ijs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southeast Ijo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ike", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Eastern Canadian Inuktitut", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ikh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ikhin-Arokho", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "iki", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Iko", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ikk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ika", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ikl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ikulu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "iko", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Olulumo-Ikom", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ikp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ikpeshi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ikr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Ikaranggal", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "iks", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Inuit Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ikt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Inuinnaqtun", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "iku", + Part2B = "iku", + Part2T = "iku", + Part1 = "iu", + Scope = "M", + LanguageType = "L", + RefName = "Inuktitut", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ikv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Iku-Gora-Ankwa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ikw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ikwere", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ikx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ik", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ikz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ikizu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ila", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ile Ape", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ilb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ila", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ile", + Part2B = "ile", + Part2T = "ile", + Part1 = "ie", + Scope = "I", + LanguageType = "C", + RefName = "Interlingue", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ilg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Garig-Ilgar", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ili", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ili Turki", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ilk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ilongot", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ilm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Iranun (Malaysia)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ilo", + Part2B = "ilo", + Part2T = "ilo", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Iloko", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ilp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Iranun (Philippines)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ils", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "International Sign", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ilu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ili'uun", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ilv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ilue", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ima", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mala Malasar", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "imi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Anamgura", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "iml", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Miluk", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "imn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Imonda", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "imo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Imbongu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "imr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Imroing", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ims", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Marsian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "imt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Imotong", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "imy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Milyan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ina", + Part2B = "ina", + Part2T = "ina", + Part1 = "ia", + Scope = "I", + LanguageType = "C", + RefName = "Interlingua (International Auxiliary Language Association)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "inb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Inga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ind", + Part2B = "ind", + Part2T = "ind", + Part1 = "id", + Scope = "I", + LanguageType = "L", + RefName = "Indonesian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ing", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Degexit'an", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "inh", + Part2B = "inh", + Part2T = "inh", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ingush", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "inj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Jungle Inga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "inl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Indonesian Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "inm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Minaean", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "inn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Isinai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ino", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Inoke-Yate", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "inp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Iñapari", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ins", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Indian Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "int", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Intha", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "inz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Ineseño", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ior", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Inor", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "iou", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tuma-Irumu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "iow", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Iowa-Oto", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ipi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ipili", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ipk", + Part2B = "ipk", + Part2T = "ipk", + Part1 = "ik", + Scope = "M", + LanguageType = "L", + RefName = "Inupiaq", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ipo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ipiko", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "iqu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Iquito", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "iqw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ikwo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ire", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Iresim", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "irh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Irarutu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "iri", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Rigwe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "irk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Iraqw", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "irn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Irántxe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "irr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ir", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "iru", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Irula", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "irx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kamberau", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "iry", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Iraya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "isa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Isabi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "isc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Isconahua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "isd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Isnag", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ise", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Italian Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "isg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Irish Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ish", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Esan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "isi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nkem-Nkum", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "isk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ishkashimi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "isl", + Part2B = "ice", + Part2T = "isl", + Part1 = "is", + Scope = "I", + LanguageType = "L", + RefName = "Icelandic", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ism", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Masimasi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "isn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Isanzu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "iso", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Isoko", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "isr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Israeli Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ist", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Istriot", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "isu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Isu (Menchum Division)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "isv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "C", + RefName = "Interslavic", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ita", + Part2B = "ita", + Part2T = "ita", + Part1 = "it", + Scope = "I", + LanguageType = "L", + RefName = "Italian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "itb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Binongan Itneg", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "itd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southern Tidung", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ite", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Itene", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "iti", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Inlaod Itneg", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "itk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Judeo-Italian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "itl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Itelmen", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "itm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Itu Mbon Uzo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ito", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Itonama", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "itr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Iteri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "its", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Isekiri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "itt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Maeng Itneg", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "itv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Itawit", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "itw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ito", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "itx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Itik", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ity", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Moyadan Itneg", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "itz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Itzá", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ium", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Iu Mien", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ivb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ibatan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ivv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ivatan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "iwk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "I-Wak", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "iwm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Iwam", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "iwo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Iwur", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "iws", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sepik Iwam", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ixc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ixcatec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ixl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ixil", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "iya", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Iyayu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "iyo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mesaka", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "iyx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yaka (Congo)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "izh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ingrian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "izm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kizamani", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "izr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Izere", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "izz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Izii", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jaa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Jamamadí", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jab", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Hyam", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jac", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Popti'", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jad", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Jahanka", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jae", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yabem", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jaf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Jara", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jah", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Jah Hut", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jaj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Zazao", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jak", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Jakun", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jal", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yalahatan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jam", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Jamaican Creole English", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jan", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Jandai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jao", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yanyuwa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jaq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yaqay", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jas", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "New Caledonian Javanese", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jat", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Jakati", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jau", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yaur", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jav", + Part2B = "jav", + Part2T = "jav", + Part1 = "jv", + Scope = "I", + LanguageType = "L", + RefName = "Javanese", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jax", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Jambi Malay", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jay", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yan-nhangu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jaz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Jawe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jbe", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Judeo-Berber", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jbi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Badjiri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jbj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Arandai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jbk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Barikewa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jbm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bijim", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jbn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nafusi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jbo", + Part2B = "jbo", + Part2T = "jbo", + Part1 = "", + Scope = "I", + LanguageType = "C", + RefName = "Lojban", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jbr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Jofotek-Bromnya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jbt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Jabutí", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jbu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Jukun Takum", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jbw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Yawijibaya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jcs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Jamaican Country Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jct", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Krymchak", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jda", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Jad", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jdg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Jadgali", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jdt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Judeo-Tat", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jeb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Jebero", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jee", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Jerung", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jeh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Jeh", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jei", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yei", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jek", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Jeri Kuo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jel", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yelmek", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jen", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dza", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jer", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Jere", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jet", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Manem", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jeu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Jonkor Bourmataguil", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jgb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Ngbee", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jge", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Judeo-Georgian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jgk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gwak", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jgo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ngomba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jhi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Jehai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jhs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Jhankot Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jia", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Jina", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jib", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Jibu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jic", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tol", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jid", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bu (Kaduna State)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jie", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Jilbe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jig", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Jingulu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jih", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "sTodsde", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jii", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Jiiddu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jil", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Jilim", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jim", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Jimi (Cameroon)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jio", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Jiamao", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jiq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Guanyinqiao", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jit", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Jita", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jiu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Youle Jinuo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jiv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Shuar", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jiy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Buyuan Jinuo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jje", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Jejueo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jjr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bankal", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jka", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kaera", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jkm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mobwa Karen", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jko", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kubo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jkp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Paku Karen", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jkr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Koro (India)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jks", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Amami Koniya Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jku", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Labir", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jle", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ngile", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jls", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Jamaican Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jma", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dima", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jmb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Zumbun", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jmc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Machame", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jmd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yamdena", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jmi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Jimi (Nigeria)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jml", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Jumli", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jmn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Makuri Naga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jmr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kamara", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jms", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mashi (Nigeria)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jmw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mouwase", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jmx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Western Juxtlahuaca Mixtec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jna", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Jangshung", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jnd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Jandavra", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jng", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Yangman", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jni", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Janji", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jnj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yemsa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jnl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Rawat", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jns", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Jaunsari", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "job", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Joba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jod", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wojenaka", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jog", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Jogi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jor", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Jorá", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jos", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Jordanian Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jow", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Jowulu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jpa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Jewish Palestinian Aramaic", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jpn", + Part2B = "jpn", + Part2T = "jpn", + Part1 = "ja", + Scope = "I", + LanguageType = "L", + RefName = "Japanese", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jpr", + Part2B = "jpr", + Part2T = "jpr", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Judeo-Persian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jqr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Jaqaru", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jra", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Jarai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jrb", + Part2B = "jrb", + Part2T = "jrb", + Part1 = "", + Scope = "M", + LanguageType = "L", + RefName = "Judeo-Arabic", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jrr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Jiru", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jrt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Jakattoe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jru", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Japrería", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jsl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Japanese Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jua", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Júma", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jub", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wannu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "juc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Jurchen", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jud", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Worodougou", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "juh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Hõne", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jui", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Ngadjuri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "juk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wapan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jul", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Jirel", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jum", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Jumjum", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jun", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Juang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "juo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Jiba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jup", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Hupdë", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jur", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Jurúna", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jus", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Jumla Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jut", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Jutish", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "juu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ju", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "juw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wãpha", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "juy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Juray", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jvd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Javindo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jvn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Caribbean Javanese", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jwi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Jwira-Pepesa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jya", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Jiarong", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jye", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Judeo-Yemeni Arabic", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "jyy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Jaya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kaa", + Part2B = "kaa", + Part2T = "kaa", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kara-Kalpak", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kab", + Part2B = "kab", + Part2T = "kab", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kabyle", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kac", + Part2B = "kac", + Part2T = "kac", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kachin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kad", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Adara", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kae", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Ketangalan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kaf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Katso", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kag", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kajaman", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kah", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kara (Central African Republic)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kai", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Karekare", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kaj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Jju", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kak", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kalanguya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kal", + Part2B = "kal", + Part2T = "kal", + Part1 = "kl", + Scope = "I", + LanguageType = "L", + RefName = "Kalaallisut", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kam", + Part2B = "kam", + Part2T = "kam", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kamba (Kenya)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kan", + Part2B = "kan", + Part2T = "kan", + Part1 = "kn", + Scope = "I", + LanguageType = "L", + RefName = "Kannada", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kao", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Xaasongaxango", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kap", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bezhta", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kaq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Capanahua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kas", + Part2B = "kas", + Part2T = "kas", + Part1 = "ks", + Scope = "I", + LanguageType = "L", + RefName = "Kashmiri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kat", + Part2B = "geo", + Part2T = "kat", + Part1 = "ka", + Scope = "I", + LanguageType = "L", + RefName = "Georgian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kau", + Part2B = "kau", + Part2T = "kau", + Part1 = "kr", + Scope = "M", + LanguageType = "L", + RefName = "Kanuri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kav", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Katukína", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kaw", + Part2B = "kaw", + Part2T = "kaw", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Kawi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kax", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kao", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kay", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kamayurá", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kaz", + Part2B = "kaz", + Part2T = "kaz", + Part1 = "kk", + Scope = "I", + LanguageType = "L", + RefName = "Kazakh", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kba", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Kalarko", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kbb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Kaxuiâna", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kbc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kadiwéu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kbd", + Part2B = "kbd", + Part2T = "kbd", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kabardian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kbe", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kanju", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kbg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Khamba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kbh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Camsá", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kbi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kaptiau", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kbj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kari", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kbk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Grass Koiari", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kbl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kanembu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kbm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Iwal", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kbn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kare (Central African Republic)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kbo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Keliko", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kbp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kabiyè", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kbq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kamano", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kbr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kafa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kbs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kande", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kbt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Abadi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kbu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kabutra", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kbv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dera (Indonesia)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kbw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kaiep", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kbx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ap Ma", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kby", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Manga Kanuri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kbz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Duhwa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kca", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Khanty", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kcb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kawacha", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kcc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lubila", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kcd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ngkâlmpw Kanum", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kce", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kaivi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kcf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ukaan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kcg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tyap", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kch", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Vono", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kci", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ngyian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kcj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kobiana", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kck", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kalanga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kcl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kela (Papua New Guinea)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kcm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gula (Central African Republic)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kcn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nubi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kco", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kinalakna", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kcp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kanga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kcq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kamo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kcr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Katla", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kcs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Koenoem", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kct", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kaian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kcu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kami (Tanzania)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kcv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kete", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kcw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kabwari", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kcx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kachama-Ganjule", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kcy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Korandje", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kcz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Konongo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kda", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Worimi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kdc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kutu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kdd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yankunytjatjara", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kde", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Makonde", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kdf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mamusi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kdg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Seba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kdh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tem", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kdi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kumam", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kdj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Karamojong", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kdk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Numèè", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kdl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tsikimba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kdm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kagoma", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kdn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kunda", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kdp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kaningdon-Nindem", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kdq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Koch", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kdr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Karaim", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kdt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kuy", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kdu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kadaru", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kdw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Koneraw", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kdx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kam", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kdy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Keder", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kdz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kwaja", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kea", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kabuverdianu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "keb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kélé", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kec", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Keiga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ked", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kerewe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kee", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Eastern Keres", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kef", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kpessi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "keg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tese", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "keh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Keak", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kei", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kei", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kej", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kadar", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kek", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kekchí", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kel", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kela (Democratic Republic of Congo)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kem", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kemak", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ken", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kenyang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "keo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kakwa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kep", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kaikadi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "keq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kamar", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ker", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kera", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kes", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kugbo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ket", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ket", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "keu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Akebu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kev", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kanikkaran", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kew", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "West Kewa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kex", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kukna", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "key", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kupia", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kez", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kukele", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kfa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kodava", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kfb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Northwestern Kolami", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kfc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Konda-Dora", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kfd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Korra Koraga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kfe", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kota (India)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kff", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Koya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kfg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kudiya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kfh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kurichiya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kfi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kannada Kurumba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kfj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kemiehua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kfk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kinnauri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kfl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kung", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kfm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Khunsari", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kfn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kuk", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kfo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Koro (Côte d'Ivoire)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kfp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Korwa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kfq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Korku", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kfr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kachhi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kfs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bilaspuri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kft", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kanjari", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kfu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Katkari", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kfv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kurmukar", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kfw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kharam Naga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kfx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kullu Pahari", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kfy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kumaoni", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kfz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Koromfé", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kga", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Koyaga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kgb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kawe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kge", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Komering", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kgf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kube", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kgg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kusunda", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kgi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Selangor Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kgj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gamale Kham", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kgk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kaiwá", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kgl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Kunggari", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kgn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Karingani", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kgo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Krongo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kgp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kaingang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kgq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kamoro", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kgr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Abun", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kgs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kumbainggar", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kgt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Somyev", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kgu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kobol", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kgv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Karas", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kgw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Karon Dori", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kgx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kamaru", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kgy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kyerung", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kha", + Part2B = "kha", + Part2T = "kha", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Khasi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "khb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lü", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "khc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tukang Besi North", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "khd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bädi Kanum", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "khe", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Korowai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "khf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Khuen", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "khg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Khams Tibetan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "khh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kehu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "khj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kuturmi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "khk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Halh Mongolian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "khl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lusi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "khm", + Part2B = "khm", + Part2T = "khm", + Part1 = "km", + Scope = "I", + LanguageType = "L", + RefName = "Khmer", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "khn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Khandesi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kho", + Part2B = "kho", + Part2T = "kho", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Khotanese", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "khp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kapori", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "khq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Koyra Chiini Songhay", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "khr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kharia", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "khs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kasua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kht", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Khamti", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "khu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nkhumbi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "khv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Khvarshi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "khw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Khowar", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "khx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kanu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "khy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kele (Democratic Republic of Congo)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "khz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Keapara", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kia", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kim", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kib", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Koalib", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kic", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kickapoo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kid", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Koshin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kie", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kibet", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kif", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Eastern Parbate Kham", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kig", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kimaama", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kih", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kilmeri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kii", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Kitsai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kij", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kilivila", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kik", + Part2B = "kik", + Part2T = "kik", + Part1 = "ki", + Scope = "I", + LanguageType = "L", + RefName = "Kikuyu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kil", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kariya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kim", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Karagas", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kin", + Part2B = "kin", + Part2T = "kin", + Part1 = "rw", + Scope = "I", + LanguageType = "L", + RefName = "Kinyarwanda", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kio", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kiowa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kip", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sheshi Kham", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kiq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kosadle", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kir", + Part2B = "kir", + Part2T = "kir", + Part1 = "ky", + Scope = "I", + LanguageType = "L", + RefName = "Kirghiz", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kis", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kis", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kit", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Agob", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kiu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kirmanjki (individual language)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kiv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kimbu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kiw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Northeast Kiwai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kix", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Khiamniungan Naga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kiy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kirikiri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kiz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kisi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kja", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mlap", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kjb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Q'anjob'al", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kjc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Coastal Konjo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kjd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southern Kiwai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kje", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kisar", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kjg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Khmu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kjh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Khakas", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kji", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Zabana", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kjj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Khinalugh", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kjk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Highland Konjo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kjl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Western Parbate Kham", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kjm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kháng", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kjn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kunjen", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kjo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Harijan Kinnauri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kjp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pwo Eastern Karen", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kjq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Western Keres", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kjr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kurudu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kjs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "East Kewa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kjt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Phrae Pwo Karen", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kju", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kashaya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kjv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Kaikavian Literary Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kjx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ramopa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kjy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Erave", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kjz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bumthangkha", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kka", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kakanda", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kkb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kwerisa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kkc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Odoodee", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kkd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kinuku", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kke", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kakabe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kkf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kalaktang Monpa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kkg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mabaka Valley Kalinga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kkh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Khün", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kki", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kagulu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kkj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kako", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kkk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kokota", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kkl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kosarek Yale", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kkm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kiong", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kkn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kon Keu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kko", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Karko", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kkp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gugubera", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kkq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kaeku", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kkr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kir-Balar", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kks", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Giiwo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kkt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Koi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kku", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tumi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kkv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kangean", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kkw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Teke-Kukuya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kkx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kohin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kky", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Guugu Yimidhirr", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kkz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kaska", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kla", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Klamath-Modoc", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "klb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kiliwa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "klc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kolbila", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kld", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gamilaraay", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kle", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kulung (Nepal)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "klf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kendeje", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "klg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tagakaulo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "klh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Weliki", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kli", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kalumpang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "klj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Khalaj", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "klk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kono (Nigeria)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kll", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kagan Kalagan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "klm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Migum", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kln", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "M", + LanguageType = "L", + RefName = "Kalenjin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "klo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kapya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "klp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kamasa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "klq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Rumu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "klr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Khaling", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kls", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kalasha", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "klt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nukna", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "klu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Klao", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "klv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Maskelynes", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "klw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tado", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "klx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Koluwawa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kly", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kalao", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "klz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kabola", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kma", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Konni", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kmb", + Part2B = "kmb", + Part2T = "kmb", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kimbundu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kmc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southern Dong", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kmd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Majukayang Kalinga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kme", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bakole", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kmf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kare (Papua New Guinea)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kmg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kâte", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kmh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kalam", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kmi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kami (Nigeria)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kmj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kumarbhag Paharia", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kmk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Limos Kalinga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kml", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tanudan Kalinga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kmm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kom (India)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kmn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Awtuw", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kmo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kwoma", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kmp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gimme", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kmq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kwama", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kmr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Northern Kurdish", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kms", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kamasau", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kmt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kemtuik", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kmu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kanite", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kmv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Karipúna Creole French", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kmw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Komo (Democratic Republic of Congo)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kmx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Waboda", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kmy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Koma", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kmz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Khorasani Turkish", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kna", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dera (Nigeria)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "knb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lubuagan Kalinga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "knc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Central Kanuri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "knd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Konda", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kne", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kankanaey", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "knf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mankanya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kng", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Koongo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kni", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kanufi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "knj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Western Kanjobal", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "knk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kuranko", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "knl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Keninjal", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "knm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kanamarí", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "knn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Konkani (individual language)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kno", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kono (Sierra Leone)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "knp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kwanja", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "knq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kintaq", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "knr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kaningra", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kns", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kensiu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "knt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Panoan Katukína", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "knu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kono (Guinea)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "knv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tabo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "knw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kung-Ekoka", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "knx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kendayan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kny", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kanyok", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "knz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kalamsé", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "koa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Konomala", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "koc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Kpati", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kod", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kodi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "koe", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kacipo-Bale Suri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kof", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Kubi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kog", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Cogui", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "koh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Koyo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "koi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Komi-Permyak", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kok", + Part2B = "kok", + Part2T = "kok", + Part1 = "", + Scope = "M", + LanguageType = "L", + RefName = "Konkani (macrolanguage)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kol", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kol (Papua New Guinea)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kom", + Part2B = "kom", + Part2T = "kom", + Part1 = "kv", + Scope = "M", + LanguageType = "L", + RefName = "Komi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kon", + Part2B = "kon", + Part2T = "kon", + Part1 = "kg", + Scope = "M", + LanguageType = "L", + RefName = "Kongo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "koo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Konzo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kop", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Waube", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "koq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kota (Gabon)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kor", + Part2B = "kor", + Part2T = "kor", + Part1 = "ko", + Scope = "I", + LanguageType = "L", + RefName = "Korean", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kos", + Part2B = "kos", + Part2T = "kos", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kosraean", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kot", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lagwan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kou", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Koke", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kov", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kudu-Camo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kow", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kugama", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "koy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Koyukon", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "koz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Korak", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kpa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kutto", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kpb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mullu Kurumba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kpc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Curripaco", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kpd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Koba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kpe", + Part2B = "kpe", + Part2T = "kpe", + Part1 = "", + Scope = "M", + LanguageType = "L", + RefName = "Kpelle", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kpf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Komba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kpg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kapingamarangi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kph", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kplang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kpi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kofei", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kpj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Karajá", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kpk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kpan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kpl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kpala", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kpm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Koho", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kpn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Kepkiriwát", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kpo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ikposo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kpq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Korupun-Sela", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kpr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Korafe-Yegha", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kps", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tehit", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kpt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Karata", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kpu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kafoa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kpv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Komi-Zyrian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kpw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kobon", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kpx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mountain Koiali", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kpy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Koryak", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kpz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kupsabiny", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kqa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mum", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kqb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kovai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kqc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Doromu-Koki", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kqd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Koy Sanjaq Surat", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kqe", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kalagan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kqf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kakabai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kqg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Khe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kqh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kisankasa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kqi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Koitabu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kqj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Koromira", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kqk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kotafon Gbe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kql", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kyenele", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kqm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Khisa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kqn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kaonde", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kqo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Eastern Krahn", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kqp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kimré", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kqq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Krenak", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kqr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kimaragang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kqs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Northern Kissi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kqt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Klias River Kadazan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kqu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Seroa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kqv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Okolod", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kqw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kandas", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kqx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mser", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kqy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Koorete", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kqz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Korana", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kra", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kumhali", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "krb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Karkin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "krc", + Part2B = "krc", + Part2T = "krc", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Karachay-Balkar", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "krd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kairui-Midiki", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kre", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Panará", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "krf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Koro (Vanuatu)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "krh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kurama", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kri", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Krio", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "krj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kinaray-A", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "krk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Kerek", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "krl", + Part2B = "krl", + Part2T = "krl", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Karelian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "krn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sapo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "krp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Durop", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "krr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Krung", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "krs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gbaya (Sudan)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "krt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tumari Kanuri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kru", + Part2B = "kru", + Part2T = "kru", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kurukh", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "krv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kavet", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "krw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Western Krahn", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "krx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Karon", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kry", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kryts", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "krz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sota Kanum", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ksb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Shambala", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ksc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southern Kalinga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ksd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kuanua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kse", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kuni", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ksf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bafia", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ksg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kusaghe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ksh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kölsch", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ksi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Krisa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ksj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Uare", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ksk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kansa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ksl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kumalu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ksm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kumba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ksn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kasiguranin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kso", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kofa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ksp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kaba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ksq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kwaami", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ksr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Borong", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kss", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southern Kisi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kst", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Winyé", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ksu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Khamyang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ksv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kusu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ksw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "S'gaw Karen", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ksx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kedang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ksy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kharia Thar", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ksz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kodaku", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kta", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Katua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ktb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kambaata", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ktc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kholok", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ktd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kokata", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kte", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nubri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ktf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kwami", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ktg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Kalkutung", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kth", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Karanga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kti", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "North Muyu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ktj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Plapo Krumen", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ktk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Kaniet", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ktl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Koroshi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ktm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kurti", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ktn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Karitiâna", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kto", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kuot", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ktp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kaduo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ktq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Katabaga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kts", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "South Muyu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ktt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ketum", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ktu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kituba (Democratic Republic of Congo)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ktv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Eastern Katu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ktw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Kato", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ktx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kaxararí", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kty", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kango (Bas-Uélé District)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ktz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Juǀʼhoan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kua", + Part2B = "kua", + Part2T = "kua", + Part1 = "kj", + Scope = "I", + LanguageType = "L", + RefName = "Kuanyama", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kub", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kutep", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kuc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kwinsu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kud", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "'Auhelawa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kue", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kuman (Papua New Guinea)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kuf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Western Katu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kug", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kupa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kuh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kushi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kui", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kuikúro-Kalapálo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kuj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kuria", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kuk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kepo'", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kul", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kulere", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kum", + Part2B = "kum", + Part2T = "kum", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kumyk", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kun", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kunama", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kuo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kumukio", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kup", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kunimaipa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kuq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Karipuna", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kur", + Part2B = "kur", + Part2T = "kur", + Part1 = "ku", + Scope = "M", + LanguageType = "L", + RefName = "Kurdish", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kus", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kusaal", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kut", + Part2B = "kut", + Part2T = "kut", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kutenai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kuu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Upper Kuskokwim", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kuv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kur", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kuw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kpagua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kux", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kukatja", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kuy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kuuku-Ya'u", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kuz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Kunza", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kva", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bagvalal", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kvb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kubu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kvc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kove", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kvd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kui (Indonesia)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kve", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kalabakan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kvf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kabalai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kvg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kuni-Boazi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kvh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Komodo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kvi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kwang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kvj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Psikye", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kvk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Korean Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kvl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kayaw", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kvm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kendem", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kvn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Border Kuna", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kvo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dobel", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kvp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kompane", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kvq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Geba Karen", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kvr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kerinci", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kvt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lahta Karen", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kvu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yinbaw Karen", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kvv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kola", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kvw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wersing", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kvx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Parkari Koli", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kvy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yintale Karen", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kvz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tsakwambo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kwa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dâw", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kwb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kwa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kwc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Likwala", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kwd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kwaio", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kwe", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kwerba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kwf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kwara'ae", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kwg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sara Kaba Deme", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kwh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kowiai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kwi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Awa-Cuaiquer", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kwj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kwanga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kwk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kwakiutl", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kwl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kofyar", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kwm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kwambi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kwn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kwangali", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kwo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kwomtari", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kwp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kodia", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kwr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kwer", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kws", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kwese", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kwt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kwesten", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kwu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kwakum", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kwv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sara Kaba Náà", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kww", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kwinti", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kwx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Khirwar", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kwy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "San Salvador Kongo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kwz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Kwadi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kxa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kairiru", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kxb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Krobu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kxc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Konso", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kxd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Brunei", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kxf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Manumanaw Karen", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kxh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Karo (Ethiopia)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kxi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Keningau Murut", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kxj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kulfa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kxk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Zayein Karen", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kxm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Northern Khmer", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kxn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kanowit-Tanjong Melanau", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kxo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Kanoé", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kxp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wadiyara Koli", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kxq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Smärky Kanum", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kxr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Koro (Papua New Guinea)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kxs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kangjia", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kxt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Koiwat", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kxv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kuvi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kxw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Konai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kxx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Likuba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kxy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kayong", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kxz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kerewo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kya", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kwaya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kyb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Butbut Kalinga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kyc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kyaka", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kyd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Karey", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kye", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Krache", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kyf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kouya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kyg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Keyagana", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kyh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Karok", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kyi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kiput", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kyj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Karao", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kyk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kamayo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kyl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kalapuya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kym", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kpatili", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kyn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Northern Binukidnon", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kyo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kelon", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kyp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kyq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kenga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kyr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kuruáya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kys", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Baram Kayan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kyt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kayagar", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kyu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Western Kayah", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kyv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kayort", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kyw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kudmali", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kyx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Rapoisi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kyy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kambaira", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kyz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kayabí", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kza", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Western Karaboro", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kzb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kaibobo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kzc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bondoukou Kulango", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kzd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kadai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kze", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kosena", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kzf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Da'a Kaili", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kzg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kikai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kzi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kelabit", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kzk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Kazukuru", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kzl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kayeli", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kzm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kais", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kzn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kokola", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kzo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kaningi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kzp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kaidipang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kzq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kaike", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kzr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Karang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kzs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sugut Dusun", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kzu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kayupulau", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kzv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Komyandaret", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kzw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Karirí-Xocó", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kzx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Kamarian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kzy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kango (Tshopo District)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "kzz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kalabra", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "laa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southern Subanen", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lab", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Linear A", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lac", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lacandon", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lad", + Part2B = "lad", + Part2T = "lad", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ladino", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lae", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pattani", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "laf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lafofa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lag", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Rangi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lah", + Part2B = "lah", + Part2T = "lah", + Part1 = "", + Scope = "M", + LanguageType = "L", + RefName = "Lahnda", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lai", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lambya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "laj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lango (Uganda)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lal", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lalia", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lam", + Part2B = "lam", + Part2T = "lam", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lamba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lan", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Laru", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lao", + Part2B = "lao", + Part2T = "lao", + Part1 = "lo", + Scope = "I", + LanguageType = "L", + RefName = "Lao", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lap", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Laka (Chad)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "laq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Qabiao", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lar", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Larteh", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "las", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lama (Togo)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lat", + Part2B = "lat", + Part2T = "lat", + Part1 = "la", + Scope = "I", + LanguageType = "H", + RefName = "Latin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lau", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Laba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lav", + Part2B = "lav", + Part2T = "lav", + Part1 = "lv", + Scope = "M", + LanguageType = "L", + RefName = "Latvian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "law", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lauje", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lax", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tiwa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lay", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lama Bai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "laz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Aribwatsa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lbb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Label", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lbc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lakkia", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lbe", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lak", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lbf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tinani", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lbg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Laopang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lbi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "La'bi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lbj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ladakhi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lbk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Central Bontok", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lbl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Libon Bikol", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lbm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lodhi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lbn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Rmeet", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lbo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Laven", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lbq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wampar", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lbr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lohorung", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lbs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Libyan Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lbt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lachi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lbu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Labu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lbv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lavatbura-Lamusong", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lbw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tolaki", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lbx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lawangan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lby", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Lamalama", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lbz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lardil", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lcc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Legenyem", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lcd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lola", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lce", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Loncong", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lcf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lubu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lch", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Luchazi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lcl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lisela", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lcm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tungag", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lcp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Western Lawa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lcq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Luhu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lcs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lisabata-Nuniali", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lda", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kla-Dan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ldb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dũya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ldd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Luri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ldg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lenyima", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ldh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lamja-Dengsa-Tola", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ldi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Laari", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ldj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lemoro", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ldk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Leelau", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ldl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kaan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ldm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Landoma", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ldn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "C", + RefName = "Láadan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ldo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Loo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ldp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tso", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ldq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lufu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lea", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lega-Shabunda", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "leb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lala-Bisa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lec", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Leco", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "led", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lendu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lee", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lyélé", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lef", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lelemi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "leh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lenje", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lei", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lemio", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lej", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lengola", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lek", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Leipon", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lel", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lele (Democratic Republic of Congo)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lem", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nomaande", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "len", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Lenca", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "leo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Leti (Cameroon)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lep", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lepcha", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "leq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lembena", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ler", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lenkau", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "les", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lese", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "let", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lesing-Gelimi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "leu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kara (Papua New Guinea)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lev", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lamma", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lew", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ledo Kaili", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lex", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Luang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ley", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lemolang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lez", + Part2B = "lez", + Part2T = "lez", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lezghian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lfa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lefa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lfn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "C", + RefName = "Lingua Franca Nova", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lga", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lungga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lgb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Laghu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lgg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lugbara", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lgh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Laghuu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lgi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lengilu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lgk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lingarak", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lgl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wala", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lgm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lega-Mwenga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lgn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "T'apo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lgo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lango (South Sudan)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lgq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Logba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lgr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lengo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lgs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Guinea-Bissau Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lgt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pahi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lgu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Longgu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lgz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ligenza", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lha", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Laha (Viet Nam)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lhh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Laha (Indonesia)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lhi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lahu Shi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lhl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lahul Lohar", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lhm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lhomi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lhn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lahanan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lhp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lhokpu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lhs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Mlahsö", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lht", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lo-Toga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lhu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lahu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lia", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "West-Central Limba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lib", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Likum", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lic", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Hlai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lid", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nyindrou", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lie", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Likila", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lif", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Limbu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lig", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ligbi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lih", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lihir", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lij", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ligurian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lik", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lika", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lil", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lillooet", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lim", + Part2B = "lim", + Part2T = "lim", + Part1 = "li", + Scope = "I", + LanguageType = "L", + RefName = "Limburgan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lin", + Part2B = "lin", + Part2T = "lin", + Part1 = "ln", + Scope = "I", + LanguageType = "L", + RefName = "Lingala", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lio", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Liki", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lip", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sekpele", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "liq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Libido", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lir", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Liberian English", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lis", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lisu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lit", + Part2B = "lit", + Part2T = "lit", + Part1 = "lt", + Scope = "I", + LanguageType = "L", + RefName = "Lithuanian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "liu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Logorik", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "liv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Liv", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "liw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Col", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lix", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Liabuku", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "liy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Banda-Bambari", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "liz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Libinza", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lja", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Golpa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lje", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Rampi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lji", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Laiyolo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ljl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Li'o", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ljp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lampung Api", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ljw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yirandali", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ljx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Yuru", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lka", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lakalei", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lkb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kabras", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lkc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kucong", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lkd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lakondê", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lke", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kenyi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lkh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lakha", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lki", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Laki", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lkj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Remun", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lkl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Laeko-Libuat", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lkm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Kalaamaya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lkn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lakon", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lko", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Khayo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lkr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Päri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lks", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kisa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lkt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lakota", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lku", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Kungkari", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lky", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lokoya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lla", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lala-Roba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "llb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lolo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "llc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lele (Guinea)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lld", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ladin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lle", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lele (Papua New Guinea)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "llf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Hermit", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "llg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lole", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "llh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lamu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lli", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Teke-Laali", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "llj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Ladji Ladji", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "llk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Lelak", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lll", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lilau", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "llm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lasalimu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lln", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lele (Chad)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "llp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "North Efate", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "llq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lolak", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lls", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lithuanian Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "llu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lau", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "llx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lauan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lma", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "East Limba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lmb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Merei", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lmc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Limilngan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lmd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lumun", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lme", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pévé", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lmf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "South Lembata", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lmg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lamogai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lmh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lambichhong", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lmi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lombi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lmj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "West Lembata", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lmk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lamkang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lml", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Hano", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lmn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lambadi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lmo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lombard", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lmp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Limbum", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lmq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lamatuka", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lmr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lamalera", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lmu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lamenu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lmv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lomaiviti", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lmw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lake Miwok", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lmx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Laimbue", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lmy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lamboya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lna", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Langbashe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lnb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mbalanhu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lnd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lundayeh", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lng", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Langobardic", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lnh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lanoh", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lni", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Daantanai'", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lnj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Leningitij", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lnl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "South Central Banda", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lnm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Langam", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lnn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lorediakarkar", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lns", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lamnso'", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lnu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Longuda", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lnw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Lanima", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lnz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lonzo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "loa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Loloda", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lob", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lobi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "loc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Inonhan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "loe", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Saluan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lof", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Logol", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "log", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Logo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "loh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Laarim", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "loi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Loma (Côte d'Ivoire)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "loj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lou", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lok", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Loko", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lol", + Part2B = "lol", + Part2T = "lol", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mongo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lom", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Loma (Liberia)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lon", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Malawi Lomwe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "loo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lombo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lop", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lopa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "loq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lobala", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lor", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Téén", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "los", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Loniu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lot", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Otuho", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lou", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Louisiana Creole", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lov", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lopi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "low", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tampias Lobu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lox", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Loun", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "loy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Loke", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "loz", + Part2B = "loz", + Part2T = "loz", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lozi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lpa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lelepa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lpe", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lepki", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lpn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Long Phuri Naga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lpo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lipo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lpx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lopit", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lqr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Logir", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lra", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Rara Bakati'", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lrc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Northern Luri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lre", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Laurentian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lrg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Laragia", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lri", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Marachi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lrk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Loarki", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lrl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lari", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lrm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Marama", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lrn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lorang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lro", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Laro", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lrr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southern Yamphu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lrt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Larantuka Malay", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lrv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Larevat", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lrz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lemerig", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lsa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lasgerdi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lsb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Burundian Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lsc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Albarradas Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lsd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lishana Deni", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lse", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lusengo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lsh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lish", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lsi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lashi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lsl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Latvian Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lsm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Saamia", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lsn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tibetan Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lso", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Laos Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lsp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Panamanian Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lsr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Aruop", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lss", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lasi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lst", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Trinidad and Tobago Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lsv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sivia Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lsw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Seychelles Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lsy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mauritian Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ltc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Late Middle Chinese", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ltg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Latgalian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lth", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Thur", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lti", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Leti (Indonesia)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ltn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Latundê", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lto", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tsotso", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lts", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tachoni", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ltu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Latu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ltz", + Part2B = "ltz", + Part2T = "ltz", + Part1 = "lb", + Scope = "I", + LanguageType = "L", + RefName = "Luxembourgish", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lua", + Part2B = "lua", + Part2T = "lua", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Luba-Lulua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lub", + Part2B = "lub", + Part2T = "lub", + Part1 = "lu", + Scope = "I", + LanguageType = "L", + RefName = "Luba-Katanga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "luc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Aringa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lud", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ludian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lue", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Luvale", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "luf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Laua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lug", + Part2B = "lug", + Part2T = "lug", + Part1 = "lg", + Scope = "I", + LanguageType = "L", + RefName = "Ganda", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "luh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Leizhou Chinese", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lui", + Part2B = "lui", + Part2T = "lui", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Luiseno", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "luj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Luna", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "luk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lunanakha", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lul", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Olu'bo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lum", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Luimbi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lun", + Part2B = "lun", + Part2T = "lun", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lunda", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "luo", + Part2B = "luo", + Part2T = "luo", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Luo (Kenya and Tanzania)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lup", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lumbu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "luq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lucumi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lur", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Laura", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lus", + Part2B = "lus", + Part2T = "lus", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lushai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lut", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lushootseed", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "luu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lumba-Yakkha", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "luv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Luwati", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "luw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Luo (Cameroon)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "luy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "M", + LanguageType = "L", + RefName = "Luyia", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "luz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southern Luri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lva", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Maku'a", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lvi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lavi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lvk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lavukaleve", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lvl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lwel", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lvs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Standard Latvian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lvu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Levuka", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lwa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lwalu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lwe", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lewo Eleng", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lwg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wanga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lwh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "White Lachi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lwl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Eastern Lawa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lwm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Laomian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lwo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Luwo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lws", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Malawian Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lwt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lewotobi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lwu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lawu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lww", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lewo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lxm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lakurumau", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lya", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Layakha", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lyg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lyngngam", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lyn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Luyana", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lzh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Literary Chinese", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lzl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Litzlitz", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lzn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Leinong Naga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "lzz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Laz", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "maa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "San Jerónimo Tecóatl Mazatec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mab", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yutanduchi Mixtec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mad", + Part2B = "mad", + Part2T = "mad", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Madurese", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mae", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bo-Rukul", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "maf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mafa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mag", + Part2B = "mag", + Part2T = "mag", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Magahi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mah", + Part2B = "mah", + Part2T = "mah", + Part1 = "mh", + Scope = "I", + LanguageType = "L", + RefName = "Marshallese", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mai", + Part2B = "mai", + Part2T = "mai", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Maithili", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "maj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Jalapa De Díaz Mazatec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mak", + Part2B = "mak", + Part2T = "mak", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Makasar", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mal", + Part2B = "mal", + Part2T = "mal", + Part1 = "ml", + Scope = "I", + LanguageType = "L", + RefName = "Malayalam", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mam", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mam", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "man", + Part2B = "man", + Part2T = "man", + Part1 = "", + Scope = "M", + LanguageType = "L", + RefName = "Mandingo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "maq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chiquihuitlán Mazatec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mar", + Part2B = "mar", + Part2T = "mar", + Part1 = "mr", + Scope = "I", + LanguageType = "L", + RefName = "Marathi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mas", + Part2B = "mas", + Part2T = "mas", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Masai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mat", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "San Francisco Matlatzinca", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mau", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Huautla Mazatec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mav", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sateré-Mawé", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "maw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mampruli", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "max", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "North Moluccan Malay", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "maz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Central Mazahua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mba", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Higaonon", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mbb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Western Bukidnon Manobo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mbc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Macushi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mbd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dibabawon Manobo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mbe", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Molale", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mbf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Baba Malay", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mbh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mangseng", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mbi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ilianen Manobo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mbj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nadëb", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mbk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Malol", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mbl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Maxakalí", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mbm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ombamba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mbn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Macaguán", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mbo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mbo (Cameroon)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mbp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Malayo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mbq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Maisin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mbr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nukak Makú", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mbs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sarangani Manobo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mbt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Matigsalug Manobo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mbu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mbula-Bwazza", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mbv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mbulungish", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mbw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Maring", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mbx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mari (East Sepik Province)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mby", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Memoni", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mbz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Amoltepec Mixtec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mca", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Maca", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mcb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Machiguenga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mcc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bitur", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mcd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sharanahua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mce", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Itundujia Mixtec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mcf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Matsés", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mcg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mapoyo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mch", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Maquiritari", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mci", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mese", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mcj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mvanip", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mck", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mbunda", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mcl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Macaguaje", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mcm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Malaccan Creole Portuguese", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mcn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Masana", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mco", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Coatlán Mixe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mcp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Makaa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mcq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ese", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mcr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Menya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mcs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mambai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mct", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mengisa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mcu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Cameroon Mambila", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mcv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Minanibai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mcw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mawa (Chad)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mcx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mpiemo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mcy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "South Watut", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mcz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mawan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mda", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mada (Nigeria)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mdb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Morigi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mdc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Male (Papua New Guinea)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mdd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mbum", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mde", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Maba (Chad)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mdf", + Part2B = "mdf", + Part2T = "mdf", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Moksha", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mdg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Massalat", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mdh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Maguindanaon", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mdi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mamvu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mdj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mangbetu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mdk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mangbutu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mdl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Maltese Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mdm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mayogo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mdn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mbati", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mdp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mbala", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mdq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mbole", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mdr", + Part2B = "mdr", + Part2T = "mdr", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mandar", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mds", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Maria (Papua New Guinea)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mdt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mbere", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mdu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mboko", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mdv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Santa Lucía Monteverde Mixtec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mdw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mbosi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mdx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dizin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mdy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Male (Ethiopia)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mdz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Suruí Do Pará", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mea", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Menka", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "meb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ikobi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mec", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Marra", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "med", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Melpa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mee", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mengen", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mef", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Megam", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "meh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southwestern Tlaxiaco Mixtec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mei", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Midob", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mej", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Meyah", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mek", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mekeo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mel", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Central Melanau", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mem", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Mangala", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "men", + Part2B = "men", + Part2T = "men", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mende (Sierra Leone)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "meo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kedah Malay", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mep", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Miriwoong", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "meq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Merey", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mer", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Meru", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mes", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Masmaje", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "met", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mato", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "meu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Motu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mev", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mano", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mew", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Maaka", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mey", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Hassaniyya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mez", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Menominee", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mfa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pattani Malay", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mfb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bangka", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mfc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mfd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mendankwe-Nkwen", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mfe", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Morisyen", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mff", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Naki", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mfg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mogofin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mfh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Matal", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mfi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wandala", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mfj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mefele", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mfk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "North Mofu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mfl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Putai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mfm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Marghi South", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mfn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Cross River Mbembe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mfo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mbe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mfp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Makassar Malay", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mfq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Moba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mfr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Marrithiyel", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mfs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mexican Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mft", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mokerang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mfu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mbwela", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mfv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mandjak", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mfw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Mulaha", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mfx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Melo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mfy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mayo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mfz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mabaan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mga", + Part2B = "mga", + Part2T = "mga", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Middle Irish (900-1200)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mgb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mararit", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mgc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Morokodo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mgd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Moru", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mge", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mango", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mgf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Maklew", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mgg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mpumpong", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mgh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Makhuwa-Meetto", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mgi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lijili", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mgj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Abureni", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mgk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mawes", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mgl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Maleu-Kilenge", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mgm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mambae", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mgn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mbangi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mgo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Meta'", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mgp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Eastern Magar", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mgq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Malila", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mgr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mambwe-Lungu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mgs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Manda (Tanzania)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mgt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mongol", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mgu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mailu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mgv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Matengo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mgw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Matumbi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mgy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mbunga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mgz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mbugwe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mha", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Manda (India)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mhb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mahongwe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mhc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mocho", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mhd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mbugu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mhe", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Besisi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mhf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mamaa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mhg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Margu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mhi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ma'di", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mhj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mogholi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mhk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mungaka", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mhl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mauwake", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mhm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Makhuwa-Moniga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mhn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mócheno", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mho", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mashi (Zambia)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mhp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Balinese Malay", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mhq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mandan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mhr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Eastern Mari", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mhs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Buru (Indonesia)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mht", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mandahuaca", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mhu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Digaro-Mishmi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mhw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mbukushu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mhx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Maru", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mhy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ma'anyan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mhz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mor (Mor Islands)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mia", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Miami", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mib", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Atatláhuca Mixtec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mic", + Part2B = "mic", + Part2T = "mic", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mi'kmaq", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mid", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mandaic", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mie", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ocotepec Mixtec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mif", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mofu-Gudur", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mig", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "San Miguel El Grande Mixtec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mih", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chayuco Mixtec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mii", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chigmecatitlán Mixtec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mij", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Abar", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mik", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mikasuki", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mil", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Peñoles Mixtec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mim", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Alacatlatzala Mixtec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "min", + Part2B = "min", + Part2T = "min", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Minangkabau", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mio", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pinotepa Nacional Mixtec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mip", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Apasco-Apoala Mixtec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "miq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mískito", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mir", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Isthmus Mixe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mis", + Part2B = "mis", + Part2T = "mis", + Part1 = "", + Scope = "S", + LanguageType = "S", + RefName = "Uncoded languages", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mit", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southern Puebla Mixtec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "miu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Cacaloxtepec Mixtec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "miw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Akoye", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mix", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mixtepec Mixtec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "miy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ayutla Mixtec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "miz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Coatzospan Mixtec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mjb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Makalero", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mjc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "San Juan Colorado Mixtec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mjd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Northwest Maidu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mje", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Muskum", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mjg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mjh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mwera (Nyasa)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mji", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kim Mun", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mjj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mawak", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mjk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Matukar", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mjl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mandeali", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mjm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Medebur", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mjn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ma (Papua New Guinea)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mjo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Malankuravan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mjp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Malapandaram", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mjq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Malaryan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mjr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Malavedan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mjs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Miship", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mjt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sauria Paharia", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mju", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Manna-Dora", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mjv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mannan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mjw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Karbi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mjx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mahali", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mjy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Mahican", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mjz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Majhi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mka", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mbre", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mkb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mal Paharia", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mkc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Siliput", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mkd", + Part2B = "mac", + Part2T = "mkd", + Part1 = "mk", + Scope = "I", + LanguageType = "L", + RefName = "Macedonian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mke", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mawchi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mkf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Miya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mkg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mak (China)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mki", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dhatki", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mkj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mokilese", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mkk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Byep", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mkl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mokole", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mkm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Moklen", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mkn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kupang Malay", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mko", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mingang Doso", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mkp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Moikodi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mkq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Bay Miwok", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mkr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Malas", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mks", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Silacayoapan Mixtec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mkt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Vamale", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mku", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Konyanka Maninka", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mkv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mafea", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mkw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kituba (Congo)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mkx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kinamiging Manobo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mky", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "East Makian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mkz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Makasae", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mla", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Malo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mlb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mbule", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mlc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Cao Lan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mle", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Manambu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mlf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mal", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mlg", + Part2B = "mlg", + Part2T = "mlg", + Part1 = "mg", + Scope = "M", + LanguageType = "L", + RefName = "Malagasy", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mlh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mape", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mli", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Malimpung", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mlj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Miltu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mlk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ilwana", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mll", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Malua Bay", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mlm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mulam", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mln", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Malango", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mlo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mlomp", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mlp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bargam", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mlq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Western Maninkakan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mlr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Vame", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mls", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Masalit", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mlt", + Part2B = "mlt", + Part2T = "mlt", + Part1 = "mt", + Scope = "I", + LanguageType = "L", + RefName = "Maltese", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mlu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "To'abaita", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mlv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Motlav", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mlw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Moloko", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mlx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Malfaxal", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mlz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Malaynon", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mma", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mama", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mmb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Momina", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mmc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Michoacán Mazahua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mmd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Maonan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mme", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mae", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mmf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mundat", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mmg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "North Ambrym", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mmh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mehináku", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mmi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Hember Avu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mmj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Majhwar", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mmk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mukha-Dora", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mml", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Man Met", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mmm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Maii", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mmn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mamanwa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mmo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mangga Buang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mmp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Siawi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mmq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Musak", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mmr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Western Xiangxi Miao", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mmt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Malalamai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mmu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mmaala", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mmv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Miriti", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mmw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Emae", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mmx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Madak", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mmy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Migaama", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mmz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mabaale", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mna", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mbula", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mnb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Muna", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mnc", + Part2B = "mnc", + Part2T = "mnc", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Manchu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mnd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mondé", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mne", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Naba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mnf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mundani", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mng", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Eastern Mnong", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mnh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mono (Democratic Republic of Congo)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mni", + Part2B = "mni", + Part2T = "mni", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Manipuri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mnj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Munji", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mnk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mandinka", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mnl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tiale", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mnm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mapena", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mnn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southern Mnong", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mnp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Min Bei Chinese", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mnq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Minriq", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mnr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mono (USA)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mns", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mansi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mnu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mer", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mnv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Rennell-Bellona", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mnw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mon", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mnx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Manikion", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mny", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Manyawa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mnz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Moni", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "moa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mwan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "moc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mocoví", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mod", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Mobilian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "moe", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Innu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mog", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mongondow", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "moh", + Part2B = "moh", + Part2T = "moh", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mohawk", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "moi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mboi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "moj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Monzombo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mok", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Morori", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mom", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Mangue", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mon", + Part2B = "mon", + Part2T = "mon", + Part1 = "mn", + Scope = "M", + LanguageType = "L", + RefName = "Mongolian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "moo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Monom", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mop", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mopán Maya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "moq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mor (Bomberai Peninsula)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mor", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Moro", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mos", + Part2B = "mos", + Part2T = "mos", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mossi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mot", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Barí", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mou", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mogum", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mov", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mohave", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mow", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Moi (Congo)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mox", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Molima", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "moy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Shekkacho", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "moz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mukulu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mpa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mpoto", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mpb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Malak Malak", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mpc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mangarrayi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mpd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Machinere", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mpe", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Majang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mpg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Marba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mph", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Maung", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mpi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mpade", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mpj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Martu Wangka", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mpk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mbara (Chad)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mpl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Middle Watut", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mpm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yosondúa Mixtec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mpn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mindiri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mpo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Miu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mpp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Migabac", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mpq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Matís", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mpr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Vangunu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mps", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dadibi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mpt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mpu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Makuráp", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mpv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mungkip", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mpw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mapidian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mpx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Misima-Panaeati", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mpy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mapia", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mpz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mpi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mqa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Maba (Indonesia)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mqb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mbuko", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mqc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mangole", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mqe", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Matepi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mqf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Momuna", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mqg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kota Bangun Kutai Malay", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mqh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tlazoyaltepec Mixtec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mqi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mariri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mqj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mamasa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mqk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Rajah Kabunsuwan Manobo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mql", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mbelime", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mqm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "South Marquesan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mqn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Moronene", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mqo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Modole", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mqp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Manipa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mqq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Minokok", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mqr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mander", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mqs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "West Makian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mqt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mok", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mqu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mandari", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mqv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mosimo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mqw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Murupi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mqx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mamuju", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mqy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Manggarai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mqz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pano", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mra", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mlabri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mrb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Marino", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mrc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Maricopa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mrd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Western Magar", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mre", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Martha's Vineyard Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mrf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Elseng", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mrg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mising", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mrh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mara Chin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mri", + Part2B = "mao", + Part2T = "mri", + Part1 = "mi", + Scope = "I", + LanguageType = "L", + RefName = "Maori", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mrj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Western Mari", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mrk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Hmwaveke", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mrl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mortlockese", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mrm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Merlav", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mrn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Cheke Holo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mro", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mru", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mrp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Morouas", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mrq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "North Marquesan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mrr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Maria (India)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mrs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Maragus", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mrt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Marghi Central", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mru", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mono (Cameroon)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mrv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mangareva", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mrw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Maranao", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mrx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Maremgi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mry", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mandaya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mrz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Marind", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "msa", + Part2B = "may", + Part2T = "msa", + Part1 = "ms", + Scope = "M", + LanguageType = "L", + RefName = "Malay (macrolanguage)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "msb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Masbatenyo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "msc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sankaran Maninka", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "msd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yucatec Maya Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mse", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Musey", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "msf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mekwei", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "msg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Moraid", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "msh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Masikoro Malagasy", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "msi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sabah Malay", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "msj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ma (Democratic Republic of Congo)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "msk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mansaka", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "msl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Molof", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "msm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Agusan Manobo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "msn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Vurës", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mso", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mombum", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "msp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Maritsauá", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "msq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Caac", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "msr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mongolian Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mss", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "West Masela", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "msu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Musom", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "msv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Maslam", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "msw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mansoanka", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "msx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Moresada", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "msy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Aruamu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "msz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Momare", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mta", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Cotabato Manobo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mtb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Anyin Morofo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mtc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Munit", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mtd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mualang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mte", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mono (Solomon Islands)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mtf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Murik (Papua New Guinea)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mtg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Una", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mth", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Munggui", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mti", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Maiwa (Papua New Guinea)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mtj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Moskona", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mtk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mbe'", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mtl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Montol", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mtm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Mator", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mtn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Matagalpa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mto", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Totontepec Mixe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mtp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wichí Lhamtés Nocten", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mtq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Muong", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mtr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mewari", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mts", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yora", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mtt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mota", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mtu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tututepec Mixtec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mtv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Asaro'o", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mtw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southern Binukidnon", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mtx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tidaá Mixtec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mty", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nabi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mua", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mundang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mub", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mubi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "muc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ajumbu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mud", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mednyj Aleut", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mue", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Media Lengua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mug", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Musgu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "muh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mündü", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mui", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Musi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "muj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mabire", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "muk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mugom", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mul", + Part2B = "mul", + Part2T = "mul", + Part1 = "", + Scope = "S", + LanguageType = "S", + RefName = "Multiple languages", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mum", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Maiwala", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "muo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nyong", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mup", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Malvi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "muq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Eastern Xiangxi Miao", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mur", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Murle", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mus", + Part2B = "mus", + Part2T = "mus", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Creek", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mut", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Western Muria", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "muu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yaaku", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "muv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Muthuvan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mux", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bo-Ung", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "muy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Muyang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "muz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mursi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mva", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Manam", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mvb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Mattole", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mvd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mamboru", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mve", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Marwari (Pakistan)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mvf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Peripheral Mongolian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mvg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yucuañe Mixtec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mvh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mulgi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mvi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Miyako", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mvk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mekmek", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mvl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Mbara (Australia)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mvn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Minaveha", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mvo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Marovo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mvp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Duri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mvq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Moere", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mvr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Marau", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mvs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Massep", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mvt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mpotovoro", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mvu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Marfa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mvv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tagal Murut", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mvw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Machinga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mvx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Meoswar", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mvy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Indus Kohistani", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mvz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mesqan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mwa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mwatebu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mwb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Juwal", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mwc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Are", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mwe", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mwera (Chimwera)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mwf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Murrinh-Patha", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mwg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Aiklep", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mwh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mouk-Aria", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mwi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Labo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mwk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kita Maninkakan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mwl", + Part2B = "mwl", + Part2T = "mwl", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mirandese", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mwm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sar", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mwn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nyamwanga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mwo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Central Maewo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mwp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kala Lagaw Ya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mwq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mün Chin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mwr", + Part2B = "mwr", + Part2T = "mwr", + Part1 = "", + Scope = "M", + LanguageType = "L", + RefName = "Marwari", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mws", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mwimbi-Muthambi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mwt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Moken", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mwu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Mittu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mwv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mentawai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mww", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Hmong Daw", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mwz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Moingi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mxa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Northwest Oaxaca Mixtec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mxb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tezoatlán Mixtec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mxc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Manyika", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mxd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Modang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mxe", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mele-Fila", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mxf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Malgbe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mxg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mbangala", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mxh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mvuba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mxi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Mozarabic", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mxj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Miju-Mishmi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mxk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Monumbo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mxl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Maxi Gbe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mxm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Meramera", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mxn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Moi (Indonesia)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mxo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mbowe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mxp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tlahuitoltepec Mixe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mxq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Juquila Mixe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mxr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Murik (Malaysia)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mxs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Huitepec Mixtec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mxt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Jamiltepec Mixtec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mxu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mada (Cameroon)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mxv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Metlatónoc Mixtec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mxw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Namo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mxx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mahou", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mxy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southeastern Nochixtlán Mixtec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mxz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Central Masela", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mya", + Part2B = "bur", + Part2T = "mya", + Part1 = "my", + Scope = "I", + LanguageType = "L", + RefName = "Burmese", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "myb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mbay", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "myc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mayeka", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mye", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Myene", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "myf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bambassi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "myg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Manta", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "myh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Makah", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "myj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mangayat", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "myk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mamara Senoufo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "myl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Moma", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mym", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Me'en", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "myo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Anfillo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "myp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pirahã", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "myr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Muniche", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mys", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Mesmes", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "myu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mundurukú", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "myv", + Part2B = "myv", + Part2T = "myv", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Erzya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "myw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Muyuw", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "myx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Masaaba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "myy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Macuna", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "myz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Classical Mandaic", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mza", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Santa María Zacatepec Mixtec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mzb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tumzabt", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mzc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Madagascar Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mzd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Malimba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mze", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Morawa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mzg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Monastic Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mzh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wichí Lhamtés Güisnay", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mzi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ixcatlán Mazatec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mzj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Manya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mzk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nigeria Mambila", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mzl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mazatlán Mixe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mzm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mumuye", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mzn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mazanderani", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mzo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Matipuhy", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mzp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Movima", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mzq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mori Atas", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mzr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Marúbo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mzs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Macanese", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mzt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mintil", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mzu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Inapang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mzv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Manza", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mzw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Deg", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mzx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mawayana", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mzy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mozambican Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "mzz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Maiadomu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "naa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Namla", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nab", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southern Nambikuára", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nac", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Narak", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nae", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Naka'ela", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "naf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nabak", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nag", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Naga Pidgin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "naj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nalu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nak", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nakanai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nal", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nalik", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nam", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ngan'gityemerri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nan", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Min Nan Chinese", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nao", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Naaba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nap", + Part2B = "nap", + Part2T = "nap", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Neapolitan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "naq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Khoekhoe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nar", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Iguta", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nas", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Naasioi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nat", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ca̱hungwa̱rya̱", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nau", + Part2B = "nau", + Part2T = "nau", + Part1 = "na", + Scope = "I", + LanguageType = "L", + RefName = "Nauru", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nav", + Part2B = "nav", + Part2T = "nav", + Part1 = "nv", + Scope = "I", + LanguageType = "L", + RefName = "Navajo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "naw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nawuri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nax", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nakwi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nay", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Ngarrindjeri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "naz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Coatepec Nahuatl", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nba", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nyemba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nbb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ndoe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nbc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chang Naga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nbd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ngbinda", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nbe", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Konyak Naga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nbg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nagarchal", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nbh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ngamo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nbi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mao Naga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nbj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ngarinyman", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nbk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nake", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nbl", + Part2B = "nbl", + Part2T = "nbl", + Part1 = "nr", + Scope = "I", + LanguageType = "L", + RefName = "South Ndebele", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nbm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ngbaka Ma'bo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nbn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kuri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nbo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nkukoli", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nbp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nnam", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nbq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nggem", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nbr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Numana", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nbs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Namibian Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nbt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Na", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nbu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Rongmei Naga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nbv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ngamambo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nbw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southern Ngbandi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nby", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ningera", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nca", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Iyo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ncb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Central Nicobarese", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ncc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ponam", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ncd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nachering", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nce", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yale", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ncf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Notsi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ncg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nisga'a", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nch", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Central Huasteca Nahuatl", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nci", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Classical Nahuatl", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ncj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Northern Puebla Nahuatl", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nck", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Na-kara", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ncl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Michoacán Nahuatl", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ncm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nambo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ncn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nauna", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nco", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sibe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ncq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Northern Katang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ncr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ncane", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ncs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nicaraguan Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nct", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chothe Naga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ncu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chumburung", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ncx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Central Puebla Nahuatl", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ncz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Natchez", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nda", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ndasa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ndb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kenswei Nsei", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ndc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ndau", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ndd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nde-Nsele-Nta", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nde", + Part2B = "nde", + Part2T = "nde", + Part1 = "nd", + Scope = "I", + LanguageType = "L", + RefName = "North Ndebele", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ndf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Nadruvian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ndg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ndengereko", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ndh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ndali", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ndi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Samba Leko", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ndj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ndamba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ndk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ndaka", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ndl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ndolo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ndm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ndam", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ndn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ngundi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ndo", + Part2B = "ndo", + Part2T = "ndo", + Part1 = "ng", + Scope = "I", + LanguageType = "L", + RefName = "Ndonga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ndp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ndo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ndq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ndombe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ndr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ndoola", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nds", + Part2B = "nds", + Part2T = "nds", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Low German", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ndt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ndunga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ndu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dugun", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ndv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ndut", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ndw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ndobo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ndx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nduga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ndy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lutos", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ndz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ndogo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nea", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Eastern Ngad'a", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "neb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Toura (Côte d'Ivoire)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nec", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nedebang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ned", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nde-Gbite", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nee", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nêlêmwa-Nixumwak", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nef", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nefamese", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "neg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Negidal", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "neh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nyenkha", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nei", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Neo-Hittite", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nej", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Neko", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nek", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Neku", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nem", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nemi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nen", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nengone", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "neo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ná-Meo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nep", + Part2B = "nep", + Part2T = "nep", + Part1 = "ne", + Scope = "M", + LanguageType = "L", + RefName = "Nepali (macrolanguage)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "neq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "North Central Mixe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ner", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yahadian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nes", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bhoti Kinnauri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "net", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nete", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "neu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "C", + RefName = "Neo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nev", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nyaheun", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "new", + Part2B = "new", + Part2T = "new", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nepal Bhasa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nex", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Neme", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ney", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Neyo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nez", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nez Perce", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nfa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dhao", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nfd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ahwai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nfl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ayiwo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nfr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nafaanra", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nfu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mfumte", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nga", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ngbaka", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ngb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Northern Ngbandi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ngc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ngombe (Democratic Republic of Congo)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ngd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ngando (Central African Republic)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nge", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ngemba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ngg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ngbaka Manza", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ngh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nǁng", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ngi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ngizim", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ngj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ngie", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ngk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dalabon", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ngl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lomwe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ngm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ngatik Men's Creole", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ngn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ngwo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ngp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ngulu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ngq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ngurimi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ngr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Engdewu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ngs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gvoko", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ngt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kriang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ngu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Guerrero Nahuatl", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ngv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Nagumi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ngw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ngwaba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ngx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nggwahyi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ngy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tibea", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ngz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ngungwel", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nha", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nhanda", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nhb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Beng", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nhc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Tabasco Nahuatl", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nhd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chiripá", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nhe", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Eastern Huasteca Nahuatl", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nhf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nhuwala", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nhg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tetelcingo Nahuatl", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nhh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nahari", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nhi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Zacatlán-Ahuacatlán-Tepetzintla Nahuatl", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nhk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Isthmus-Cosoleacaque Nahuatl", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nhm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Morelos Nahuatl", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nhn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Central Nahuatl", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nho", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Takuu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nhp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Isthmus-Pajapan Nahuatl", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nhq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Huaxcaleca Nahuatl", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nhr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Naro", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nht", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ometepec Nahuatl", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nhu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Noone", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nhv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Temascaltepec Nahuatl", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nhw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Western Huasteca Nahuatl", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nhx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Isthmus-Mecayapan Nahuatl", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nhy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Northern Oaxaca Nahuatl", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nhz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Santa María La Alta Nahuatl", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nia", + Part2B = "nia", + Part2T = "nia", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nias", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nib", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nakame", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nid", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Ngandi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nie", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Niellim", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nif", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nek", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nig", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Ngalakgan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nih", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nyiha (Tanzania)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nii", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nii", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nij", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ngaju", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nik", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southern Nicobarese", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nil", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nila", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nim", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nilamba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nin", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ninzo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nio", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nganasan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "niq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nandi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nir", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nimboran", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nis", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nimi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nit", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southeastern Kolami", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "niu", + Part2B = "niu", + Part2T = "niu", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Niuean", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "niv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gilyak", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "niw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nimo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nix", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Hema", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "niy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ngiti", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "niz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ningil", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nja", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nzanyi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "njb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nocte Naga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "njd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ndonde Hamba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "njh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lotha Naga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nji", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gudanji", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "njj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Njen", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "njl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Njalgulgule", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "njm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Angami Naga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "njn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Liangmai Naga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "njo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ao Naga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "njr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Njerep", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "njs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nisa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "njt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ndyuka-Trio Pidgin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nju", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ngadjunmaya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "njx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kunyi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "njy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Njyem", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "njz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nyishi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nka", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nkoya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nkb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Khoibu Naga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nkc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nkongho", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nkd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Koireng", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nke", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Duke", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nkf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Inpui Naga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nkg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nekgini", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nkh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Khezha Naga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nki", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Thangal Naga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nkj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nakai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nkk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nokuku", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nkm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Namat", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nkn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nkangala", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nko", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nkonya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nkp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Niuatoputapu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nkq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nkami", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nkr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nukuoro", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nks", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "North Asmat", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nkt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nyika (Tanzania)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nku", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bouna Kulango", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nkv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nyika (Malawi and Zambia)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nkw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nkutu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nkx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nkoroo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nkz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nkari", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nla", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ngombale", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nlc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nalca", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nld", + Part2B = "dut", + Part2T = "nld", + Part1 = "nl", + Scope = "I", + LanguageType = "L", + RefName = "Dutch", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nle", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "East Nyala", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nlg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gela", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nli", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Grangali", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nlj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nyali", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nlk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ninia Yali", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nll", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nihali", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nlm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mankiyali", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nlo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ngul", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nlq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lao Naga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nlu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nchumbulu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nlv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Orizaba Nahuatl", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nlw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Walangama", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nlx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nahali", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nly", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nyamal", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nlz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nalögo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nma", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Maram Naga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nmb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Big Nambas", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nmc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ngam", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nmd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ndumu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nme", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mzieme Naga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nmf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tangkhul Naga (India)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nmg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kwasio", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nmh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Monsang Naga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nmi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nyam", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nmj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ngombe (Central African Republic)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nmk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Namakura", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nml", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ndemli", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nmm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Manangba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nmn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "ǃXóõ", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nmo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Moyon Naga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nmp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Nimanbur", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nmq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nambya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nmr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Nimbari", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nms", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Letemboi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nmt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Namonuito", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nmu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Northeast Maidu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nmv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Ngamini", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nmw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nimoa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nmx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nama (Papua New Guinea)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nmy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Namuyi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nmz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nawdm", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nna", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nyangumarta", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nnb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nande", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nnc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nancere", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nnd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "West Ambae", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nne", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ngandyera", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nnf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ngaing", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nng", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Maring Naga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nnh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ngiemboon", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nni", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "North Nuaulu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nnj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nyangatom", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nnk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nankina", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nnl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Northern Rengma Naga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nnm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Namia", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nnn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ngete", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nno", + Part2B = "nno", + Part2T = "nno", + Part1 = "nn", + Scope = "I", + LanguageType = "L", + RefName = "Norwegian Nynorsk", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nnp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wancho Naga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nnq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ngindo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nnr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Narungga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nnt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Nanticoke", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nnu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dwang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nnv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Nugunu (Australia)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nnw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southern Nuni", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nny", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Nyangga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nnz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nda'nda'", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "noa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Woun Meu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nob", + Part2B = "nob", + Part2T = "nob", + Part1 = "nb", + Scope = "I", + LanguageType = "L", + RefName = "Norwegian Bokmål", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "noc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nuk", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nod", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Northern Thai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "noe", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nimadi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nof", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nomane", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nog", + Part2B = "nog", + Part2T = "nog", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nogai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "noh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nomu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "noi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Noiri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "noj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nonuya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nok", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Nooksack", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nol", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Nomlaki", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "non", + Part2B = "non", + Part2T = "non", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Old Norse", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nop", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Numanggang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "noq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ngongo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nor", + Part2B = "nor", + Part2T = "nor", + Part1 = "no", + Scope = "M", + LanguageType = "L", + RefName = "Norwegian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nos", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Eastern Nisu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "not", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nomatsiguenga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nou", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ewage-Notu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nov", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "C", + RefName = "Novial", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "now", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nyambo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "noy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Noy", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "noz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nayi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "npa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nar Phu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "npb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nupbikha", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "npg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ponyo-Gongwang Naga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nph", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Phom Naga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "npi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nepali (individual language)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "npl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southeastern Puebla Nahuatl", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "npn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mondropolon", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "npo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pochuri Naga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nps", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nipsan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "npu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Puimei Naga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "npx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Noipx", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "npy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Napu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nqg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southern Nago", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nqk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kura Ede Nago", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nql", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ngendelengo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nqm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ndom", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nqn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nen", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nqo", + Part2B = "nqo", + Part2T = "nqo", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "N'Ko", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nqq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kyan-Karyaw Naga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nqt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nteng", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nqy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Akyaung Ari Naga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nra", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ngom", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nrb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nara", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nrc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Noric", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nre", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southern Rengma Naga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nrf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Jèrriais", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nrg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Narango", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nri", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chokri Naga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nrk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ngarla", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nrl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ngarluma", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nrm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Narom", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nrn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Norn", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nrp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "North Picene", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nrr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Norra", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nrt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Northern Kalapuya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nru", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Narua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nrx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Ngurmbur", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nrz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lala", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nsa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sangtam Naga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nsb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Lower Nossob", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nsc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nshi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nsd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southern Nisu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nse", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nsenga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nsf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Northwestern Nisu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nsg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ngasa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nsh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ngoshie", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nsi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nigerian Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nsk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Naskapi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nsl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Norwegian Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nsm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sumi Naga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nsn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nehan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nso", + Part2B = "nso", + Part2T = "nso", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pedi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nsp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nepalese Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nsq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Northern Sierra Miwok", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nsr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Maritime Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nss", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nali", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nst", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tase Naga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nsu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sierra Negra Nahuatl", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nsv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southwestern Nisu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nsw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Navut", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nsx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nsongo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nsy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nasal", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nsz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nisenan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ntd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Northern Tidung", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ntg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Ngantangarra", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nti", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Natioro", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ntj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ngaanyatjarra", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ntk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ikoma-Nata-Isenye", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ntm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nateni", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nto", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ntomba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ntp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Northern Tepehuan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ntr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Delo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ntu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Natügu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ntw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Nottoway", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ntx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tangkhul Naga (Myanmar)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nty", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mantsi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ntz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Natanzi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nua", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yuanga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nuc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Nukuini", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nud", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ngala", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nue", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ngundu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nuf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nusu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nug", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Nungali", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nuh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ndunda", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nui", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ngumbi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nuj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nyole", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nuk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nuu-chah-nulth", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nul", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Nusa Laut", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "num", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Niuafo'ou", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nun", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Anong", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nuo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nguôn", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nup", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nupe-Nupe-Tako", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nuq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nukumanu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nur", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nukuria", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nus", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nuer", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nut", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nung (Viet Nam)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nuu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ngbundu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nuv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Northern Nuni", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nuw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nguluwan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nux", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mehek", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nuy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nunggubuyu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nuz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tlamacazapa Nahuatl", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nvh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nasarian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nvm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Namiae", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nvo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nyokon", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nwa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Nawathinehena", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nwb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nyabwa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nwc", + Part2B = "nwc", + Part2T = "nwc", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Classical Newari", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nwe", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ngwe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nwg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Ngayawung", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nwi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southwest Tanna", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nwm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nyamusa-Molo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nwo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Nauo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nwr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nawaru", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nww", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ndwewe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nwx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Middle Newar", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nwy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Nottoway-Meherrin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nxa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nauete", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nxd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ngando (Democratic Republic of Congo)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nxe", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nage", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nxg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ngad'a", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nxi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nindi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nxk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Koki Naga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nxl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "South Nuaulu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nxm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Numidian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nxn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Ngawun", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nxo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ndambomo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nxq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Naxi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nxr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ninggerum", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nxx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nafri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nya", + Part2B = "nya", + Part2T = "nya", + Part1 = "ny", + Scope = "I", + LanguageType = "L", + RefName = "Nyanja", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nyb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nyangbo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nyc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nyanga-li", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nyd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nyore", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nye", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nyengo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nyf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Giryama", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nyg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nyindu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nyh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nyikina", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nyi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ama (Sudan)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nyj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nyanga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nyk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nyaneka", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nyl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nyeu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nym", + Part2B = "nym", + Part2T = "nym", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nyamwezi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nyn", + Part2B = "nyn", + Part2T = "nyn", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nyankole", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nyo", + Part2B = "nyo", + Part2T = "nyo", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nyoro", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nyp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Nyang'i", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nyq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nayini", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nyr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nyiha (Malawi)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nys", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nyungar", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nyt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Nyawaygi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nyu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nyungwe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nyv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Nyulnyul", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nyw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nyaw", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nyx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Nganyaywana", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nyy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nyakyusa-Ngonde", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nza", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tigon Mbembe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nzb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Njebi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nzd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nzadi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nzi", + Part2B = "nzi", + Part2T = "nzi", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nzima", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nzk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nzakara", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nzm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Zeme Naga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nzr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dir-Nyamzak-Mbarimi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nzs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "New Zealand Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nzu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Teke-Nzikou", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nzy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nzakambay", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "nzz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nanga Dama Dogon", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "oaa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Orok", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "oac", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Oroch", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "oak", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Noakhali", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "oar", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Old Aramaic (up to 700 BCE)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "oav", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Old Avar", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "obi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Obispeño", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "obk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southern Bontok", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "obl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Oblo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "obm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Moabite", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "obo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Obo Manobo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "obr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Old Burmese", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "obt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Old Breton", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "obu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Obulom", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "oca", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ocaina", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "och", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Old Chinese", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "oci", + Part2B = "oci", + Part2T = "oci", + Part1 = "oc", + Scope = "I", + LanguageType = "L", + RefName = "Occitan (post 1500)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ocm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Old Cham", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "oco", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Old Cornish", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ocu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Atzingo Matlatzinca", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "oda", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Odut", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "odk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Od", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "odt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Old Dutch", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "odu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Odual", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ofo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Ofo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ofs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Old Frisian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ofu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Efutop", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ogb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ogbia", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ogc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ogbah", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "oge", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Old Georgian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ogg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ogbogolo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ogo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Khana", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ogu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ogbronuagum", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "oht", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Old Hittite", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ohu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Old Hungarian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "oia", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Oirata", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "oie", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Okolie", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "oin", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Inebu One", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ojb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Northwestern Ojibwa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ojc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Central Ojibwa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ojg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Eastern Ojibwa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "oji", + Part2B = "oji", + Part2T = "oji", + Part1 = "oj", + Scope = "M", + LanguageType = "L", + RefName = "Ojibwa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ojp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Old Japanese", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ojs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Severn Ojibwa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ojv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ontong Java", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ojw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Western Ojibwa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "oka", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Okanagan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "okb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Okobo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "okc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kobo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "okd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Okodia", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "oke", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Okpe (Southwestern Edo)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "okg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Koko Babangk", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "okh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Koresh-e Rostam", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "oki", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Okiek", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "okj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Oko-Juwoi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "okk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kwamtim One", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "okl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Old Kentish Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "okm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Middle Korean (10th-16th cent.)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "okn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Oki-No-Erabu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "oko", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Old Korean (3rd-9th cent.)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "okr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kirike", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "oks", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Oko-Eni-Osayen", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "oku", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Oku", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "okv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Orokaiva", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "okx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Okpe (Northwestern Edo)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "okz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Old Khmer", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ola", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Walungge", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "old", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mochi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ole", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Olekha", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "olk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Olkol", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "olm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Oloma", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "olo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Livvi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "olr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Olrat", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "olt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Old Lithuanian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "olu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kuvale", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "oma", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Omaha-Ponca", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "omb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "East Ambae", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "omc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Mochica", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "omg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Omagua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "omi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Omi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "omk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Omok", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "oml", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ombo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "omn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Minoan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "omo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Utarmbung", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "omp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Old Manipuri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "omr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Old Marathi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "omt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Omotik", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "omu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Omurano", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "omw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "South Tairora", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "omx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Old Mon", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "omy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Old Malay", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ona", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ona", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "onb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lingao", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "one", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Oneida", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ong", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Olo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "oni", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Onin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "onj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Onjob", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "onk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kabore One", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "onn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Onobasulu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ono", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Onondaga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "onp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sartang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "onr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Northern One", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ons", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ono", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ont", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ontenu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "onu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Unua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "onw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Old Nubian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "onx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Onin Based Pidgin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ood", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tohono O'odham", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "oog", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ong", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "oon", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Önge", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "oor", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Oorlams", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "oos", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Old Ossetic", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "opa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Okpamheri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "opk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kopkaka", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "opm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Oksapmin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "opo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Opao", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "opt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Opata", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "opy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ofayé", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ora", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Oroha", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "orc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Orma", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ore", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Orejón", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "org", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Oring", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "orh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Oroqen", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ori", + Part2B = "ori", + Part2T = "ori", + Part1 = "or", + Scope = "M", + LanguageType = "L", + RefName = "Oriya (macrolanguage)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "orm", + Part2B = "orm", + Part2T = "orm", + Part1 = "om", + Scope = "M", + LanguageType = "L", + RefName = "Oromo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "orn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Orang Kanaq", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "oro", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Orokolo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "orr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Oruma", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ors", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Orang Seletar", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ort", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Adivasi Oriya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "oru", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ormuri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "orv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Old Russian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "orw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Oro Win", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "orx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Oro", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ory", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Odia", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "orz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ormu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "osa", + Part2B = "osa", + Part2T = "osa", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Osage", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "osc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Oscan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "osi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Osing", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "osn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Old Sundanese", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "oso", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ososo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "osp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Old Spanish", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "oss", + Part2B = "oss", + Part2T = "oss", + Part1 = "os", + Scope = "I", + LanguageType = "L", + RefName = "Ossetian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ost", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Osatu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "osu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southern One", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "osx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Old Saxon", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ota", + Part2B = "ota", + Part2T = "ota", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Ottoman Turkish (1500-1928)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "otb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Old Tibetan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "otd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ot Danum", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ote", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mezquital Otomi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "oti", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Oti", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "otk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Old Turkish", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "otl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tilapa Otomi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "otm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Eastern Highland Otomi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "otn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tenango Otomi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "otq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Querétaro Otomi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "otr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Otoro", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ots", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Estado de México Otomi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ott", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Temoaya Otomi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "otu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Otuke", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "otw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ottawa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "otx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Texcatepec Otomi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "oty", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Old Tamil", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "otz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ixtenco Otomi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "oua", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tagargrent", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "oub", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Glio-Oubi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "oue", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Oune", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "oui", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Old Uighur", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "oum", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Ouma", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ovd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Elfdalian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "owi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Owiniga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "owl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Old Welsh", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "oyb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Oy", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "oyd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Oyda", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "oym", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wayampi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "oyy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Oya'oya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ozm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Koonzime", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pab", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Parecís", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pac", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pacoh", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pad", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Paumarí", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pae", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pagibete", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "paf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Paranawát", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pag", + Part2B = "pag", + Part2T = "pag", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pangasinan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pah", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tenharim", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pai", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pak", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Parakanã", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pal", + Part2B = "pal", + Part2T = "pal", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Pahlavi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pam", + Part2B = "pam", + Part2T = "pam", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pampanga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pan", + Part2B = "pan", + Part2T = "pan", + Part1 = "pa", + Scope = "I", + LanguageType = "L", + RefName = "Panjabi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pao", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Northern Paiute", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pap", + Part2B = "pap", + Part2T = "pap", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Papiamento", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "paq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Parya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "par", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Panamint", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pas", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Papasena", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pau", + Part2B = "pau", + Part2T = "pau", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Palauan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pav", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pakaásnovos", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "paw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pawnee", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pax", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Pankararé", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pay", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pech", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "paz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Pankararú", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pbb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Páez", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pbc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Patamona", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pbe", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mezontla Popoloca", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pbf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Coyotepec Popoloca", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pbg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Paraujano", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pbh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "E'ñapa Woromaipu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pbi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Parkwa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pbl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mak (Nigeria)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pbm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Puebla Mazatec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pbn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kpasam", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pbo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Papel", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pbp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Badyara", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pbr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pangwa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pbs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Central Pame", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pbt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southern Pashto", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pbu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Northern Pashto", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pbv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pnar", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pby", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pyu (Papua New Guinea)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pca", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Santa Inés Ahuatempan Popoloca", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pcb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pear", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pcc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bouyei", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pcd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Picard", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pce", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ruching Palaung", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pcf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Paliyan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pcg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Paniya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pch", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pardhan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pci", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Duruwa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pcj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Parenga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pck", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Paite Chin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pcl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pardhi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pcm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nigerian Pidgin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pcn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Piti", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pcp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pacahuara", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pcw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pyapun", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pda", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Anam", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pdc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pennsylvania German", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pdi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pa Di", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pdn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Podena", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pdo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Padoe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pdt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Plautdietsch", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pdu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kayan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pea", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Peranakan Indonesian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "peb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Eastern Pomo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ped", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mala (Papua New Guinea)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pee", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Taje", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pef", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Northeastern Pomo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "peg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pengo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "peh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bonan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pei", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chichimeca-Jonaz", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pej", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Northern Pomo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pek", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Penchal", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pel", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pekal", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pem", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Phende", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "peo", + Part2B = "peo", + Part2T = "peo", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Old Persian (ca. 600-400 B.C.)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pep", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kunja", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "peq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southern Pomo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pes", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Iranian Persian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pev", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pémono", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pex", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Petats", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pey", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Petjo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pez", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Eastern Penan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pfa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pááfang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pfe", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pere", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pfl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pfaelzisch", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pga", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sudanese Creole Arabic", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pgd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Gāndhārī", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pgg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pangwali", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pgi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pagi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pgk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Rerep", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pgl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Primitive Irish", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pgn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Paelignian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pgs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pangseng", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pgu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pagu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pgz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Papua New Guinean Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pha", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pa-Hng", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "phd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Phudagi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "phg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Phuong", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "phh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Phukha", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "phj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pahari", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "phk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Phake", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "phl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Phalura", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "phm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Phimbi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "phn", + Part2B = "phn", + Part2T = "phn", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Phoenician", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pho", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Phunoi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "phq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Phana'", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "phr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pahari-Potwari", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pht", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Phu Thai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "phu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Phuan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "phv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pahlavani", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "phw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Phangduwali", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pia", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pima Bajo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pib", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yine", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pic", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pinji", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pid", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Piaroa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pie", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Piro", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pif", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pingelapese", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pig", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pisabo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pih", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pitcairn-Norfolk", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pij", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Pijao", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pil", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yom", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pim", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Powhatan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pin", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Piame", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pio", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Piapoco", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pip", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pero", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pir", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Piratapuyo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pis", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pijin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pit", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Pitta Pitta", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "piu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pintupi-Luritja", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "piv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pileni", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "piw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pimbwe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pix", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Piu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "piy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Piya-Kwonci", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "piz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pije", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pjt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pitjantjatjara", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pka", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Ardhamāgadhī Prākrit", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pkb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pokomo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pkc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Paekche", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pkg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pak-Tong", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pkh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pankhu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pkn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pakanha", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pko", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pökoot", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pkp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pukapuka", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pkr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Attapady Kurumba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pks", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pakistan Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pkt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Maleng", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pku", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Paku", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pla", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Miani", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "plb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Polonombauk", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "plc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Central Palawano", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pld", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Polari", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ple", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Palu'e", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "plg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pilagá", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "plh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Paulohi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pli", + Part2B = "pli", + Part2T = "pli", + Part1 = "pi", + Scope = "I", + LanguageType = "H", + RefName = "Pali", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "plk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kohistani Shina", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pll", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Shwe Palaung", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pln", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Palenquero", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "plo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Oluta Popoluca", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "plq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Palaic", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "plr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Palaka Senoufo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pls", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "San Marcos Tlacoyalco Popoloca", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "plt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Plateau Malagasy", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "plu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Palikúr", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "plv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southwest Palawano", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "plw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Brooke's Point Palawano", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ply", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bolyu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "plz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Paluan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pma", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Paama", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pmb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pambia", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pmd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Pallanganmiddang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pme", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pwaamei", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pmf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pamona", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pmh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Māhārāṣṭri Prākrit", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pmi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Northern Pumi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pmj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southern Pumi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pml", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Lingua Franca", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pmm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pomo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pmn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pam", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pmo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pom", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pmq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Northern Pame", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pmr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Paynamar", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pms", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Piemontese", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pmt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tuamotuan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pmw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Plains Miwok", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pmx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Poumei Naga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pmy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Papuan Malay", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pmz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Southern Pame", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pna", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Punan Bah-Biau", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pnb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Western Panjabi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pnc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pannei", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pnd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mpinda", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pne", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Western Penan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "png", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pangu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pnh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Penrhyn", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pni", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Aoheng", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pnj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Pinjarup", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pnk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Paunaka", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pnl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Paleni", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pnm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Punan Batu 1", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pnn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pinai-Hagahai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pno", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Panobo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pnp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pancana", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pnq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pana (Burkina Faso)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pnr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Panim", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pns", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ponosakan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pnt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pontic", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pnu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Jiongnai Bunu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pnv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pinigura", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pnw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Banyjima", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pnx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Phong-Kniang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pny", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pinyin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pnz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pana (Central African Republic)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "poc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Poqomam", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "poe", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "San Juan Atzingo Popoloca", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pof", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Poke", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pog", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Potiguára", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "poh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Poqomchi'", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "poi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Highland Popoluca", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pok", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pokangá", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pol", + Part2B = "pol", + Part2T = "pol", + Part1 = "pl", + Scope = "I", + LanguageType = "L", + RefName = "Polish", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pom", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southeastern Pomo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pon", + Part2B = "pon", + Part2T = "pon", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pohnpeian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "poo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Central Pomo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pop", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pwapwâ", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "poq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Texistepec Popoluca", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "por", + Part2B = "por", + Part2T = "por", + Part1 = "pt", + Scope = "I", + LanguageType = "L", + RefName = "Portuguese", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pos", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sayula Popoluca", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pot", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Potawatomi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pov", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Upper Guinea Crioulo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pow", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "San Felipe Otlaltepec Popoloca", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pox", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Polabian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "poy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pogolo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ppe", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Papi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ppi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Paipai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ppk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Uma", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ppl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pipil", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ppm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Papuma", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ppn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Papapana", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ppo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Folopa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ppp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pelende", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ppq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pei", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pps", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "San Luís Temalacayuca Popoloca", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ppt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pare", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ppu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Papora", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pqa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pa'a", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pqm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Malecite-Passamaquoddy", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "prc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Parachi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "prd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Parsi-Dari", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pre", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Principense", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "prf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Paranan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "prg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Prussian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "prh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Porohanon", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pri", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Paicî", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "prk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Parauk", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "prl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Peruvian Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "prm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kibiri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "prn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Prasuni", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pro", + Part2B = "pro", + Part2T = "pro", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Old Provençal (to 1500)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "prq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ashéninka Perené", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "prr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Puri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "prs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dari", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "prt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Phai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pru", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Puragi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "prw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Parawen", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "prx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Purik", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "prz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Providencia Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "psa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Asue Awyu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "psc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Iranian Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "psd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Plains Indian Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pse", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Central Malay", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "psg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Penang Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "psh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southwest Pashai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "psi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southeast Pashai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "psl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Puerto Rican Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "psm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Pauserna", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "psn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Panasuan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pso", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Polish Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "psp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Philippine Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "psq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pasi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "psr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Portuguese Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pss", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kaulong", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pst", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Central Pashto", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "psu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Sauraseni Prākrit", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "psw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Port Sandwich", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "psy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Piscataway", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pta", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pai Tavytera", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pth", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Pataxó Hã-Ha-Hãe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pti", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pindiini", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ptn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Patani", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pto", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Zo'é", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ptp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Patep", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ptq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pattapu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ptr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Piamatsina", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ptt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Enrekang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ptu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bambam", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ptv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Port Vato", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ptw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Pentlatch", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pty", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pathiya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pua", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Western Highland Purepecha", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pub", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Purum", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "puc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Punan Merap", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pud", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Punan Aput", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pue", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Puelche", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "puf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Punan Merah", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pug", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Phuie", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pui", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Puinave", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "puj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Punan Tubu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pum", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Puma", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "puo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Puoc", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pup", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pulabu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "puq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Puquina", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pur", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Puruborá", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pus", + Part2B = "pus", + Part2T = "pus", + Part1 = "ps", + Scope = "M", + LanguageType = "L", + RefName = "Pushto", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "put", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Putoh", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "puu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Punu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "puw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Puluwatese", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pux", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Puare", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "puy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Purisimeño", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pwa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pawaia", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pwb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Panawa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pwg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gapapaiwa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pwi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Patwin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pwm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Molbog", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pwn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Paiwan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pwo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pwo Western Karen", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pwr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Powari", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pww", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pwo Northern Karen", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pxm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Quetzaltepec Mixe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pye", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pye Krumen", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pym", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Fyam", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pyn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Poyanáwa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pys", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Paraguayan Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pyu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Puyuma", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pyx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Pyu (Myanmar)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pyy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pyen", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pze", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pesse", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pzh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pazeh", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "pzn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Jejara Naga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "qua", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Quapaw", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "qub", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Huallaga Huánuco Quechua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "quc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "K'iche'", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "qud", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Calderón Highland Quichua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "que", + Part2B = "que", + Part2T = "que", + Part1 = "qu", + Scope = "M", + LanguageType = "L", + RefName = "Quechua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "quf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lambayeque Quechua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "qug", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chimborazo Highland Quichua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "quh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "South Bolivian Quechua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "qui", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Quileute", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "quk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chachapoyas Quechua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "qul", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "North Bolivian Quechua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "qum", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sipacapense", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "qun", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Quinault", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "qup", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southern Pastaza Quechua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "quq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Quinqui", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "qur", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yanahuanca Pasco Quechua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "qus", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Santiago del Estero Quichua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "quv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sacapulteco", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "quw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tena Lowland Quichua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "qux", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yauyos Quechua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "quy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ayacucho Quechua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "quz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Cusco Quechua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "qva", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ambo-Pasco Quechua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "qvc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Cajamarca Quechua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "qve", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Eastern Apurímac Quechua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "qvh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Huamalíes-Dos de Mayo Huánuco Quechua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "qvi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Imbabura Highland Quichua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "qvj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Loja Highland Quichua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "qvl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Cajatambo North Lima Quechua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "qvm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Margos-Yarowilca-Lauricocha Quechua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "qvn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "North Junín Quechua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "qvo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Napo Lowland Quechua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "qvp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pacaraos Quechua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "qvs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "San Martín Quechua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "qvw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Huaylla Wanca Quechua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "qvy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Queyu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "qvz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Northern Pastaza Quichua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "qwa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Corongo Ancash Quechua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "qwc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Classical Quechua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "qwh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Huaylas Ancash Quechua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "qwm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Kuman (Russia)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "qws", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sihuas Ancash Quechua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "qwt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Kwalhioqua-Tlatskanai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "qxa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chiquián Ancash Quechua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "qxc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chincha Quechua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "qxh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Panao Huánuco Quechua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "qxl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Salasaca Highland Quichua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "qxn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Northern Conchucos Ancash Quechua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "qxo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southern Conchucos Ancash Quechua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "qxp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Puno Quechua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "qxq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Qashqa'i", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "qxr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Cañar Highland Quichua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "qxs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southern Qiang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "qxt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Santa Ana de Tusi Pasco Quechua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "qxu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Arequipa-La Unión Quechua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "qxw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Jauja Wanca Quechua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "qya", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "C", + RefName = "Quenya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "qyp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Quiripi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "raa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dungmali", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rab", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Camling", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rac", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Rasawa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rad", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Rade", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "raf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Western Meohang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rag", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Logooli", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rah", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Rabha", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rai", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ramoaaina", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "raj", + Part2B = "raj", + Part2T = "raj", + Part1 = "", + Scope = "M", + LanguageType = "L", + RefName = "Rajasthani", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rak", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tulu-Bohuai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ral", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ralte", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ram", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Canela", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ran", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Riantana", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rao", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Rao", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rap", + Part2B = "rap", + Part2T = "rap", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Rapanui", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "raq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Saam", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rar", + Part2B = "rar", + Part2T = "rar", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Rarotongan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ras", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tegali", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rat", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Razajerdi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rau", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Raute", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rav", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sampang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "raw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Rawang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rax", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Rang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ray", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Rapa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "raz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Rahambuu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rbb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Rumai Palaung", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rbk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Northern Bontok", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rbl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Miraya Bikol", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rbp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Barababaraba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rcf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Réunion Creole French", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rdb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Rudbari", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rea", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Rerau", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "reb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Rembong", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ree", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Rejang Kayan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "reg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kara (Tanzania)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rei", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Reli", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rej", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Rejang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rel", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Rendille", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rem", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Remo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ren", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Rengao", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rer", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Rer Bare", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "res", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Reshe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ret", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Retta", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rey", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Reyesano", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rga", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Roria", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rge", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Romano-Greek", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rgk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Rangkas", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rgn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Romagnol", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rgr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Resígaro", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rgs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southern Roglai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rgu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ringgou", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rhg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Rohingya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rhp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yahang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ria", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Riang (India)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rib", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bribri Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rif", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tarifit", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ril", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Riang Lang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rim", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nyaturu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rin", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nungu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rir", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ribun", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rit", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ritharrngu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "riu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Riung", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rjg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Rajong", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rji", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Raji", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rjs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Rajbanshi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rka", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kraol", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rkb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Rikbaktsa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rkh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Rakahanga-Manihiki", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rki", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Rakhine", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rkm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Marka", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rkt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Rangpuri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rkw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Arakwal", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rma", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Rama", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rmb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Rembarrnga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rmc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Carpathian Romani", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rmd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Traveller Danish", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rme", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Angloromani", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rmf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kalo Finnish Romani", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rmg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Traveller Norwegian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rmh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Murkim", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rmi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lomavren", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rmk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Romkun", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rml", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Baltic Romani", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rmm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Roma", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rmn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Balkan Romani", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rmo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sinte Romani", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rmp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Rempi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rmq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Caló", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rms", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Romanian Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rmt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Domari", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rmu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tavringer Romani", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rmv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "C", + RefName = "Romanova", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rmw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Welsh Romani", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rmx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Romam", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rmy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Vlax Romani", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rmz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Marma", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rnb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Brunca Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rnd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ruund", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rng", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ronga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rnl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ranglong", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rnn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Roon", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rnp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Rongpo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rnr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Nari Nari", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rnw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Rungwa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rob", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tae'", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "roc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Cacgia Roglai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rod", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Rogo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "roe", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ronji", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rof", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Rombo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rog", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Northern Roglai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "roh", + Part2B = "roh", + Part2T = "roh", + Part1 = "rm", + Scope = "I", + LanguageType = "L", + RefName = "Romansh", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rol", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Romblomanon", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rom", + Part2B = "rom", + Part2T = "rom", + Part1 = "", + Scope = "M", + LanguageType = "L", + RefName = "Romany", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ron", + Part2B = "rum", + Part2T = "ron", + Part1 = "ro", + Scope = "I", + LanguageType = "L", + RefName = "Romanian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "roo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Rotokas", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rop", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kriol", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ror", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Rongga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rou", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Runga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "row", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dela-Oenale", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rpn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Repanbitip", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rpt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Rapting", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rri", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ririo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rrm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Moriori", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rro", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Waima", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rrt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Arritinngithigh", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rsb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Romano-Serbian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rsk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ruthenian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rsl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Russian Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rsm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Miriwoong Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rsn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Rwandan Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rsw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Rishiwa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rtc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Rungtu Chin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rth", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ratahan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rtm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Rotuman", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rts", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Yurats", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rtw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Rathawi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rub", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gungu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ruc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ruuli", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rue", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Rusyn", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ruf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Luguru", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rug", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Roviana", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ruh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ruga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rui", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Rufiji", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ruk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Che", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "run", + Part2B = "run", + Part2T = "run", + Part1 = "rn", + Scope = "I", + LanguageType = "L", + RefName = "Rundi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ruo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Istro Romanian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rup", + Part2B = "rup", + Part2T = "rup", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Macedo-Romanian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ruq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Megleno Romanian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rus", + Part2B = "rus", + Part2T = "rus", + Part1 = "ru", + Scope = "I", + LanguageType = "L", + RefName = "Russian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rut", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Rutul", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ruu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lanas Lobu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ruy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mala (Nigeria)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ruz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ruma", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rwa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Rawo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rwk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Rwa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rwl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ruwila", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rwm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Amba (Uganda)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rwo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Rawa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rwr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Marwari (India)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rxd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ngardi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rxw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Karuwali", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ryn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Northern Amami-Oshima", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rys", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yaeyama", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ryu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Central Okinawan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "rzh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Rāziḥī", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "saa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Saba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sab", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Buglere", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sac", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Meskwaki", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sad", + Part2B = "sad", + Part2T = "sad", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sandawe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sae", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sabanê", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "saf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Safaliba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sag", + Part2B = "sag", + Part2T = "sag", + Part1 = "sg", + Scope = "I", + LanguageType = "L", + RefName = "Sango", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sah", + Part2B = "sah", + Part2T = "sah", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yakut", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "saj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sahu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sak", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sake", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sam", + Part2B = "sam", + Part2T = "sam", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Samaritan Aramaic", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "san", + Part2B = "san", + Part2T = "san", + Part1 = "sa", + Scope = "M", + LanguageType = "H", + RefName = "Sanskrit", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sao", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sause", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "saq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Samburu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sar", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Saraveca", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sas", + Part2B = "sas", + Part2T = "sas", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sasak", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sat", + Part2B = "sat", + Part2T = "sat", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Santali", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sau", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Saleman", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sav", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Saafi-Saafi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "saw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sawi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sax", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "say", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Saya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "saz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Saurashtra", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sba", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ngambay", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sbb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Simbo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sbc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kele (Papua New Guinea)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sbd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southern Samo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sbe", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Saliba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sbf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chabu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sbg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Seget", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sbh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sori-Harengan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sbi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Seti", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sbj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Surbakhal", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sbk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Safwa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sbl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Botolan Sambal", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sbm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sagala", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sbn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sindhi Bhil", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sbo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sabüm", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sbp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sangu (Tanzania)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sbq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sileibi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sbr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sembakung Murut", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sbs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Subiya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sbt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kimki", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sbu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Stod Bhoti", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sbv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Sabine", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sbw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Simba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sbx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Seberuang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sby", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Soli", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sbz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sara Kaba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "scb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chut", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sce", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dongxiang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "scf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "San Miguel Creole French", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "scg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sanggau", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sch", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sakachep", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sci", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sri Lankan Creole Malay", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sck", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sadri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "scl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Shina", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "scn", + Part2B = "scn", + Part2T = "scn", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sicilian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sco", + Part2B = "sco", + Part2T = "sco", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Scots", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "scp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Hyolmo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "scq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sa'och", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "scs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "North Slavey", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sct", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southern Katang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "scu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Shumcho", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "scv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sheni", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "scw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sha", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "scx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Sicel", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sda", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Toraja-Sa'dan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sdb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Shabak", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sdc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sassarese Sardinian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sde", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Surubu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sdf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sarli", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sdg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Savi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sdh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southern Kurdish", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sdj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Suundi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sdk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sos Kundi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sdl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Saudi Arabian Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sdn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gallurese Sardinian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sdo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bukar-Sadung Bidayuh", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sdp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sherdukpen", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sdq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Semandang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sdr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Oraon Sadri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sds", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Sened", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sdt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Shuadit", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sdu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sarudu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sdx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sibu Melanau", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sdz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sallands", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sea", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Semai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "seb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Shempire Senoufo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sec", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sechelt", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sed", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sedang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "see", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Seneca", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sef", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Cebaara Senoufo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "seg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Segeju", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "seh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sena", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sei", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Seri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sej", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sene", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sek", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sekani", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sel", + Part2B = "sel", + Part2T = "sel", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Selkup", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sen", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nanerigé Sénoufo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "seo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Suarmin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sep", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sìcìté Sénoufo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "seq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Senara Sénoufo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ser", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Serrano", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ses", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Koyraboro Senni Songhai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "set", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sentani", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "seu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Serui-Laut", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sev", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nyarafolo Senoufo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sew", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sewa Bay", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sey", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Secoya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sez", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Senthang Chin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sfb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Langue des signes de Belgique Francophone", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sfe", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Eastern Subanen", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sfm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Small Flowery Miao", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sfs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "South African Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sfw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sehwi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sga", + Part2B = "sga", + Part2T = "sga", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Old Irish (to 900)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sgb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mag-antsi Ayta", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sgc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kipsigis", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sgd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Surigaonon", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sge", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Segai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sgg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Swiss-German Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sgh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Shughni", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sgi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Suga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sgj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Surgujia", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sgk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sangkong", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sgm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Singa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sgp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Singpho", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sgr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sangisari", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sgs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Samogitian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sgt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Brokpake", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sgu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Salas", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sgw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sebat Bet Gurage", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sgx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sierra Leone Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sgy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sanglechi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sgz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sursurunga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sha", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Shall-Zwall", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "shb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ninam", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "shc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sonde", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "shd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kundal Shahi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "she", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sheko", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "shg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Shua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "shh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Shoshoni", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "shi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tachelhit", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "shj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Shatt", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "shk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Shilluk", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "shl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Shendu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "shm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Shahrudi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "shn", + Part2B = "shn", + Part2T = "shn", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Shan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sho", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Shanga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "shp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Shipibo-Conibo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "shq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sala", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "shr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Shi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "shs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Shuswap", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sht", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Shasta", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "shu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chadian Arabic", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "shv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Shehri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "shw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Shwai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "shx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "She", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "shy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tachawit", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "shz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Syenara Senoufo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sia", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Akkala Sami", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sib", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sebop", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sid", + Part2B = "sid", + Part2T = "sid", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sidamo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sie", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Simaa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sif", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Siamou", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sig", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Paasaal", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sih", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Zire", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sii", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Shom Peng", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sij", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Numbami", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sik", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sikiana", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sil", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tumulung Sisaala", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sim", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mende (Papua New Guinea)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sin", + Part2B = "sin", + Part2T = "sin", + Part1 = "si", + Scope = "I", + LanguageType = "L", + RefName = "Sinhala", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sip", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sikkimese", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "siq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sonia", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sir", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Siri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sis", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Siuslaw", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "siu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sinagen", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "siv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sumariup", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "siw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Siwai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "six", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sumau", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "siy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sivandi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "siz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Siwi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sja", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Epena", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sjb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sajau Basap", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sjc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Shaojiang Chinese", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sjd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kildin Sami", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sje", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pite Sami", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sjg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Assangori", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sjk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Kemi Sami", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sjl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sajalong", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sjm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mapun", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sjn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "C", + RefName = "Sindarin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sjo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Xibe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sjp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Surjapuri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sjr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Siar-Lak", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sjs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Senhaja De Srair", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sjt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ter Sami", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sju", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ume Sami", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sjw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Shawnee", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ska", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Skagit", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "skb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Saek", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "skc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ma Manda", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "skd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southern Sierra Miwok", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ske", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Seke (Vanuatu)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "skf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sakirabiá", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "skg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sakalava Malagasy", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "skh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sikule", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ski", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sika", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "skj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Seke (Nepal)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "skm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kutong", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "skn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kolibugan Subanon", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sko", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Seko Tengah", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "skp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sekapan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "skq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sininkere", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "skr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Saraiki", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sks", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Maia", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "skt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sakata", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sku", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sakao", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "skv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Skou", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "skw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Skepi Creole Dutch", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "skx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Seko Padang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sky", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sikaiana", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "skz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sekar", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "slc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sáliba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sld", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sissala", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sle", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sholaga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "slf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Swiss-Italian Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "slg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Selungai Murut", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "slh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southern Puget Sound Salish", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sli", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lower Silesian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "slj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Salumá", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "slk", + Part2B = "slo", + Part2T = "slk", + Part1 = "sk", + Scope = "I", + LanguageType = "L", + RefName = "Slovak", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sll", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Salt-Yui", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "slm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pangutaran Sama", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sln", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Salinan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "slp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lamaholot", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "slr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Salar", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sls", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Singapore Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "slt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sila", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "slu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Selaru", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "slv", + Part2B = "slv", + Part2T = "slv", + Part1 = "sl", + Scope = "I", + LanguageType = "L", + RefName = "Slovenian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "slw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sialum", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "slx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Salampasu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sly", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Selayar", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "slz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ma'ya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sma", + Part2B = "sma", + Part2T = "sma", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southern Sami", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "smb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Simbari", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "smc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Som", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sme", + Part2B = "sme", + Part2T = "sme", + Part1 = "se", + Scope = "I", + LanguageType = "L", + RefName = "Northern Sami", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "smf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Auwe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "smg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Simbali", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "smh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Samei", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "smj", + Part2B = "smj", + Part2T = "smj", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lule Sami", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "smk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bolinao", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sml", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Central Sama", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "smm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Musasa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "smn", + Part2B = "smn", + Part2T = "smn", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Inari Sami", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "smo", + Part2B = "smo", + Part2T = "smo", + Part1 = "sm", + Scope = "I", + LanguageType = "L", + RefName = "Samoan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "smp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Samaritan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "smq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Samo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "smr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Simeulue", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sms", + Part2B = "sms", + Part2T = "sms", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Skolt Sami", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "smt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Simte", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "smu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Somray", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "smv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Samvedi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "smw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sumbawa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "smx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Samba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "smy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Semnani", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "smz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Simeku", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sna", + Part2B = "sna", + Part2T = "sna", + Part1 = "sn", + Scope = "I", + LanguageType = "L", + RefName = "Shona", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "snc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sinaugoro", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "snd", + Part2B = "snd", + Part2T = "snd", + Part1 = "sd", + Scope = "I", + LanguageType = "L", + RefName = "Sindhi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sne", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bau Bidayuh", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "snf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Noon", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sng", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sanga (Democratic Republic of Congo)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sni", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Sensi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "snj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Riverain Sango", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "snk", + Part2B = "snk", + Part2T = "snk", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Soninke", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "snl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sangil", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "snm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southern Ma'di", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "snn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Siona", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sno", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Snohomish", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "snp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Siane", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "snq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sangu (Gabon)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "snr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sihan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sns", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "South West Bay", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "snu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Senggi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "snv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sa'ban", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "snw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Selee", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "snx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sam", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sny", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Saniyo-Hiyewe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "snz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kou", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "soa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Thai Song", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sob", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sobei", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "soc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "So (Democratic Republic of Congo)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sod", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Songoora", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "soe", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Songomeno", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sog", + Part2B = "sog", + Part2T = "sog", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Sogdian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "soh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Aka", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "soi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sonha", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "soj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Soi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sok", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sokoro", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sol", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Solos", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "som", + Part2B = "som", + Part2T = "som", + Part1 = "so", + Scope = "I", + LanguageType = "L", + RefName = "Somali", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "soo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Songo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sop", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Songe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "soq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kanasi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sor", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Somrai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sos", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Seeku", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sot", + Part2B = "sot", + Part2T = "sot", + Part1 = "st", + Scope = "I", + LanguageType = "L", + RefName = "Southern Sotho", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sou", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southern Thai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sov", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sonsorol", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sow", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sowanda", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sox", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Swo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "soy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Miyobe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "soz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Temi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "spa", + Part2B = "spa", + Part2T = "spa", + Part1 = "es", + Scope = "I", + LanguageType = "L", + RefName = "Spanish", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "spb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sepa (Indonesia)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "spc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sapé", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "spd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Saep", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "spe", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sepa (Papua New Guinea)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "spg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "spi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Saponi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "spk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sengo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "spl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Selepet", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "spm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Akukem", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "spn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sanapaná", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "spo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Spokane", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "spp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Supyire Senoufo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "spq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Loreto-Ucayali Spanish", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "spr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Saparua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sps", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Saposa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "spt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Spiti Bhoti", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "spu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sapuan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "spv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sambalpuri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "spx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "South Picene", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "spy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sabaot", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sqa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Shama-Sambuga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sqh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Shau", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sqi", + Part2B = "alb", + Part2T = "sqi", + Part1 = "sq", + Scope = "M", + LanguageType = "L", + RefName = "Albanian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sqk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Albanian Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sqm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Suma", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sqn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Susquehannock", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sqo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sorkhei", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sqq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sou", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sqr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Siculo Arabic", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sqs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sri Lankan Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sqt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Soqotri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "squ", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Squamish", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sqx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kufr Qassem Sign Language (KQSL)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sra", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Saruga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "srb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sora", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "src", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Logudorese Sardinian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "srd", + Part2B = "srd", + Part2T = "srd", + Part1 = "sc", + Scope = "M", + LanguageType = "L", + RefName = "Sardinian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sre", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sara", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "srf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nafi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "srg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sulod", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "srh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sarikoli", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sri", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Siriano", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "srk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Serudung Murut", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "srl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Isirawa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "srm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Saramaccan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "srn", + Part2B = "srn", + Part2T = "srn", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sranan Tongo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sro", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Campidanese Sardinian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "srp", + Part2B = "srp", + Part2T = "srp", + Part1 = "sr", + Scope = "I", + LanguageType = "L", + RefName = "Serbian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "srq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sirionó", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "srr", + Part2B = "srr", + Part2T = "srr", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Serer", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "srs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sarsi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "srt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sauri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sru", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Suruí", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "srv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southern Sorsoganon", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "srw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Serua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "srx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sirmauri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sry", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sera", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "srz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Shahmirzadi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ssb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southern Sama", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ssc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Suba-Simbiti", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ssd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Siroi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sse", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Balangingi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ssf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Thao", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ssg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Seimat", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ssh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Shihhi Arabic", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ssi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sansi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ssj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sausi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ssk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sunam", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ssl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Western Sisaala", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ssm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Semnam", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ssn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Waata", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sso", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sissano", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ssp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Spanish Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ssq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "So'a", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ssr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Swiss-French Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sss", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sô", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sst", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sinasina", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ssu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Susuami", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ssv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Shark Bay", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ssw", + Part2B = "ssw", + Part2T = "ssw", + Part1 = "ss", + Scope = "I", + LanguageType = "L", + RefName = "Swati", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ssx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Samberigi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ssy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Saho", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ssz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sengseng", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sta", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Settla", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "stb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Northern Subanen", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "std", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sentinel", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ste", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Liana-Seti", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "stf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Seta", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "stg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Trieng", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sth", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Shelta", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sti", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bulo Stieng", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "stj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Matya Samo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "stk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Arammba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "stl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Stellingwerfs", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "stm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Setaman", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "stn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Owa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sto", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Stoney", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "stp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southeastern Tepehuan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "stq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Saterfriesisch", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "str", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Straits Salish", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sts", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Shumashti", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "stt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Budeh Stieng", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "stu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Samtao", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "stv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Silt'e", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "stw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Satawalese", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sty", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Siberian Tatar", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sua", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sulka", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sub", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Suku", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "suc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Western Subanon", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sue", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Suena", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sug", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Suganga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sui", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Suki", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "suj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Shubi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "suk", + Part2B = "suk", + Part2T = "suk", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sukuma", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sun", + Part2B = "sun", + Part2T = "sun", + Part1 = "su", + Scope = "I", + LanguageType = "L", + RefName = "Sundanese", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "suo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bouni", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "suq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tirmaga-Chai Suri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sur", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mwaghavul", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sus", + Part2B = "sus", + Part2T = "sus", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Susu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sut", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Subtiaba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "suv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Puroik", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "suw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sumbwa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sux", + Part2B = "sux", + Part2T = "sux", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Sumerian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "suy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Suyá", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "suz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sunwar", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sva", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Svan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "svb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ulau-Suain", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "svc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Vincentian Creole English", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sve", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Serili", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "svk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Slovakian Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "svm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Slavomolisano", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "svs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Savosavo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "svx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Skalvian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "swa", + Part2B = "swa", + Part2T = "swa", + Part1 = "sw", + Scope = "M", + LanguageType = "L", + RefName = "Swahili (macrolanguage)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "swb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Maore Comorian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "swc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Congo Swahili", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "swe", + Part2B = "swe", + Part2T = "swe", + Part1 = "sv", + Scope = "I", + LanguageType = "L", + RefName = "Swedish", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "swf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sere", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "swg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Swabian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "swh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Swahili (individual language)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "swi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sui", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "swj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sira", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "swk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Malawi Sena", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "swl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Swedish Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "swm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Samosa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "swn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sawknah", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "swo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Shanenawa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "swp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Suau", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "swq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sharwa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "swr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Saweru", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sws", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Seluwasan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "swt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sawila", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "swu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Suwawa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "swv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Shekhawati", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sww", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Sowa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "swx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Suruahá", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "swy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sarua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sxb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Suba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sxc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Sicanian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sxe", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sighu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sxg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Shuhi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sxk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Southern Kalapuya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sxl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Selian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sxm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Samre", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sxn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sangir", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sxo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Sorothaptic", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sxr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Saaroa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sxs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sasaru", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sxu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Upper Saxon", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sxw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Saxwe Gbe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sya", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Siang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "syb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Central Subanen", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "syc", + Part2B = "syc", + Part2T = "syc", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Classical Syriac", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "syi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Seki", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "syk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sukur", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "syl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sylheti", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sym", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Maya Samo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "syn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Senaya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "syo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Suoy", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "syr", + Part2B = "syr", + Part2T = "syr", + Part1 = "", + Scope = "M", + LanguageType = "L", + RefName = "Syriac", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sys", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sinyar", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "syw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kagate", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "syx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Samay", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "syy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Al-Sayyid Bedouin Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sza", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Semelai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "szb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ngalum", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "szc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Semaq Beri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "sze", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Seze", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "szg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sengele", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "szl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Silesian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "szn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sula", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "szp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Suabo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "szs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Solomon Islands Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "szv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Isu (Fako Division)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "szw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sawai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "szy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sakizaya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "taa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lower Tanana", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tab", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tabassaran", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tac", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lowland Tarahumara", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tad", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tause", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tae", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tariana", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "taf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tapirapé", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tag", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tagoi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tah", + Part2B = "tah", + Part2T = "tah", + Part1 = "ty", + Scope = "I", + LanguageType = "L", + RefName = "Tahitian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "taj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Eastern Tamang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tak", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tala", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tal", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tal", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tam", + Part2B = "tam", + Part2T = "tam", + Part1 = "ta", + Scope = "I", + LanguageType = "L", + RefName = "Tamil", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tan", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tangale", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tao", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yami", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tap", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Taabwa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "taq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tamasheq", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tar", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Central Tarahumara", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tas", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Tay Boi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tat", + Part2B = "tat", + Part2T = "tat", + Part1 = "tt", + Scope = "I", + LanguageType = "L", + RefName = "Tatar", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tau", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Upper Tanana", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tav", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tatuyo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "taw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tax", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tamki", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tay", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Atayal", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "taz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tocho", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tba", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Aikanã", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tbc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Takia", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tbd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kaki Ae", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tbe", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tanimbili", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tbf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mandara", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tbg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "North Tairora", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tbh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Dharawal", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tbi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gaam", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tbj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tiang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tbk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Calamian Tagbanwa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tbl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tboli", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tbm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tagbu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tbn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Barro Negro Tunebo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tbo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tawala", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tbp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Taworta", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tbr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tumtum", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tbs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tanguat", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tbt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tembo (Kitembo)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tbu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Tubar", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tbv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tobo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tbw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tagbanwa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tbx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kapin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tby", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tabaru", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tbz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ditammari", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tca", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ticuna", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tcb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tanacross", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tcc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Datooga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tcd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tafi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tce", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southern Tutchone", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tcf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Malinaltepec Me'phaa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tcg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tamagario", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tch", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Turks And Caicos Creole English", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tci", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wára", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tck", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tchitchege", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tcl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Taman (Myanmar)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tcm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tanahmerah", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tcn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tichurong", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tco", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Taungyo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tcp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tawr Chin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tcq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kaiy", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tcs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Torres Strait Creole", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tct", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "T'en", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tcu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southeastern Tarahumara", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tcw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tecpatlán Totonac", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tcx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Toda", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tcy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tulu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tcz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Thado Chin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tda", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tagdal", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tdb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Panchpargania", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tdc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Emberá-Tadó", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tdd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tai Nüa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tde", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tiranige Diga Dogon", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tdf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Talieng", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tdg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Western Tamang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tdh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Thulung", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tdi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tomadino", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tdj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tajio", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tdk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tambas", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tdl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sur", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tdm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Taruma", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tdn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tondano", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tdo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Teme", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tdq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tita", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tdr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Todrah", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tds", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Doutai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tdt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tetun Dili", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tdv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Toro", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tdx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tandroy-Mahafaly Malagasy", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tdy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tadyawan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tea", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Temiar", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "teb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Tetete", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tec", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Terik", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ted", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tepo Krumen", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tee", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Huehuetla Tepehua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tef", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Teressa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "teg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Teke-Tege", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "teh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tehuelche", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tei", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Torricelli", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tek", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ibali Teke", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tel", + Part2B = "tel", + Part2T = "tel", + Part1 = "te", + Scope = "I", + LanguageType = "L", + RefName = "Telugu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tem", + Part2B = "tem", + Part2T = "tem", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Timne", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ten", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Tama (Colombia)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "teo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Teso", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tep", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Tepecano", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "teq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Temein", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ter", + Part2B = "ter", + Part2T = "ter", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tereno", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tes", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tengger", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tet", + Part2B = "tet", + Part2T = "tet", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tetum", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "teu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Soo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tev", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Teor", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tew", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tewa (USA)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tex", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tennet", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tey", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tulishi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tez", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tetserret", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tfi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tofin Gbe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tfn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tanaina", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tfo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tefaro", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tfr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Teribe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tft", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ternate", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tga", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sagalla", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tgb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tobilung", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tgc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tigak", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tgd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ciwogai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tge", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Eastern Gorkha Tamang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tgf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chalikha", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tgh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tobagonian Creole English", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tgi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lawunuia", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tgj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tagin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tgk", + Part2B = "tgk", + Part2T = "tgk", + Part1 = "tg", + Scope = "I", + LanguageType = "L", + RefName = "Tajik", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tgl", + Part2B = "tgl", + Part2T = "tgl", + Part1 = "tl", + Scope = "I", + LanguageType = "L", + RefName = "Tagalog", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tgn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tandaganon", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tgo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sudest", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tgp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tangoa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tgq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tring", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tgr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tareng", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tgs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nume", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tgt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Central Tagbanwa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tgu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tanggu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tgv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Tingui-Boto", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tgw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tagwana Senoufo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tgx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tagish", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tgy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Togoyo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tgz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Tagalaka", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tha", + Part2B = "tha", + Part2T = "tha", + Part1 = "th", + Scope = "I", + LanguageType = "L", + RefName = "Thai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "thd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kuuk Thaayorre", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "the", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chitwania Tharu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "thf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Thangmi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "thh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Northern Tarahumara", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "thi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tai Long", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "thk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tharaka", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "thl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dangaura Tharu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "thm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Aheu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "thn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Thachanadan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "thp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Thompson", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "thq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kochila Tharu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "thr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Rana Tharu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ths", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Thakali", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tht", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tahltan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "thu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Thuri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "thv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tahaggart Tamahaq", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "thy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tha", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "thz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tayart Tamajeq", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tia", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tidikelt Tamazight", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tic", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tira", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tif", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tifal", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tig", + Part2B = "tig", + Part2T = "tig", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tigre", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tih", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Timugon Murut", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tii", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tiene", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tij", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tilung", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tik", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tikar", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "til", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Tillamook", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tim", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Timbe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tin", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tindi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tio", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Teop", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tip", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Trimuris", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tiq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tiéfo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tir", + Part2B = "tir", + Part2T = "tir", + Part1 = "ti", + Scope = "I", + LanguageType = "L", + RefName = "Tigrinya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tis", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Masadiit Itneg", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tit", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tinigua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tiu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Adasen", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tiv", + Part2B = "tiv", + Part2T = "tiv", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tiv", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tiw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tiwi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tix", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southern Tiwa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tiy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tiruray", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tiz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tai Hongjin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tja", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tajuasohn", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tjg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tunjung", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tji", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Northern Tujia", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tjj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tjungundji", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tjl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tai Laing", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tjm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Timucua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tjn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Tonjon", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tjo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Temacine Tamazight", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tjp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tjupany", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tjs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southern Tujia", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tju", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Tjurruru", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tjw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Djabwurrung", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tka", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Truká", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tkb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Buksa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tkd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tukudede", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tke", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Takwane", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tkf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Tukumanféd", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tkg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tesaka Malagasy", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tkl", + Part2B = "tkl", + Part2T = "tkl", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tokelau", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tkm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Takelma", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tkn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Toku-No-Shima", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tkp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tikopia", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tkq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tee", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tkr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tsakhur", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tks", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Takestani", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tkt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kathoriya Tharu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tku", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Upper Necaxa Totonac", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tkv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mur Pano", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tkw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Teanu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tkx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tangko", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tkz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Takua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tla", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southwestern Tepehuan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tlb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tobelo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tlc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yecuatla Totonac", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tld", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Talaud", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tlf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Telefol", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tlg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tofanma", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tlh", + Part2B = "tlh", + Part2T = "tlh", + Part1 = "", + Scope = "I", + LanguageType = "C", + RefName = "Klingon", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tli", + Part2B = "tli", + Part2T = "tli", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tlingit", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tlj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Talinga-Bwisi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tlk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Taloki", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tll", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tetela", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tlm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tolomako", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tln", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Talondo'", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tlo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Talodi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tlp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Filomena Mata-Coahuitlán Totonac", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tlq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tai Loi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tlr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Talise", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tls", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tambotalo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tlt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sou Nama", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tlu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tulehu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tlv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Taliabu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tlx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Khehek", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tly", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Talysh", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tma", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tama (Chad)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tmb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Katbol", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tmc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tumak", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tmd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Haruai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tme", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Tremembé", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tmf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Toba-Maskoy", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tmg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Ternateño", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tmh", + Part2B = "tmh", + Part2T = "tmh", + Part1 = "", + Scope = "M", + LanguageType = "L", + RefName = "Tamashek", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tmi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tutuba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tmj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Samarokena", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tml", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tamnim Citak", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tmm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tai Thanh", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tmn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Taman (Indonesia)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tmo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Temoq", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tmq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tumleo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tmr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Jewish Babylonian Aramaic (ca. 200-1200 CE)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tms", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tima", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tmt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tasmate", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tmu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Iau", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tmv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tembo (Motembo)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tmw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Temuan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tmy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tami", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tmz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Tamanaku", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tna", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tacana", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tnb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Western Tunebo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tnc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tanimuca-Retuarã", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tnd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Angosturas Tunebo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tng", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tobanga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tnh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Maiani", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tni", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tandia", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tnk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kwamera", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tnl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lenakel", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tnm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tabla", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tnn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "North Tanna", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tno", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Toromono", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tnp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Whitesands", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tnq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Taino", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tnr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ménik", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tns", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tenis", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tnt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tontemboan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tnu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tay Khang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tnv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tangchangya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tnw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tonsawang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tnx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tanema", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tny", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tongwe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tnz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ten'edn", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tob", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Toba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "toc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Coyutla Totonac", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tod", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Toma", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tof", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gizrra", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tog", + Part2B = "tog", + Part2T = "tog", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tonga (Nyasa)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "toh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gitonga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "toi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tonga (Zambia)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "toj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tojolabal", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tok", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "C", + RefName = "Toki Pona", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tol", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Tolowa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tom", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tombulu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ton", + Part2B = "ton", + Part2T = "ton", + Part1 = "to", + Scope = "I", + LanguageType = "L", + RefName = "Tonga (Tonga Islands)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "too", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Xicotepec De Juárez Totonac", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "top", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Papantla Totonac", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "toq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Toposa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tor", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Togbo-Vara Banda", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tos", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Highland Totonac", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tou", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tho", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tov", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Upper Taromi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tow", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Jemez", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tox", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tobian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "toy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Topoiyo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "toz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "To", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tpa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Taupota", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tpc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Azoyú Me'phaa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tpe", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tippera", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tpf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tarpia", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tpg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kula", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tpi", + Part2B = "tpi", + Part2T = "tpi", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tok Pisin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tpj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tapieté", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tpk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Tupinikin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tpl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tlacoapa Me'phaa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tpm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tampulma", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tpn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Tupinambá", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tpo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tai Pao", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tpp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pisaflores Tepehua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tpq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tukpa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tpr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tuparí", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tpt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tlachichilco Tepehua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tpu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tampuan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tpv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tanapag", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tpx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Acatepec Me'phaa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tpy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Trumai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tpz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tinputz", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tqb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tembé", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tql", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lehali", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tqm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Turumsa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tqn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tenino", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tqo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Toaripi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tqp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tomoip", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tqq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tunni", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tqr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Torona", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tqt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Western Totonac", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tqu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Touo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tqw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Tonkawa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tra", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tirahi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "trb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Terebu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "trc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Copala Triqui", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "trd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Turi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tre", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "East Tarangan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "trf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Trinidadian Creole English", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "trg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lishán Didán", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "trh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Turaka", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tri", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Trió", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "trj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Toram", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "trl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Traveller Scottish", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "trm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tregami", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "trn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Trinitario", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tro", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tarao Naga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "trp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kok Borok", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "trq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "San Martín Itunyoso Triqui", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "trr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Taushiro", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "trs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chicahuaxtla Triqui", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "trt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tunggare", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tru", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Turoyo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "trv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sediq", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "trw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Torwali", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "trx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tringgus-Sembaan Bidayuh", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "try", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Turung", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "trz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Torá", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tsa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tsaangi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tsb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tsamai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tsc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tswa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tsd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tsakonian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tse", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tunisian Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tsg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tausug", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tsh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tsuvan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tsi", + Part2B = "tsi", + Part2T = "tsi", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tsimshian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tsj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tshangla", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tsk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tseku", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tsl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ts'ün-Lao", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tsm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Turkish Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tsn", + Part2B = "tsn", + Part2T = "tsn", + Part1 = "tn", + Scope = "I", + LanguageType = "L", + RefName = "Tswana", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tso", + Part2B = "tso", + Part2T = "tso", + Part1 = "ts", + Scope = "I", + LanguageType = "L", + RefName = "Tsonga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tsp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Northern Toussian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tsq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Thai Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tsr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Akei", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tss", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Taiwan Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tst", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tondi Songway Kiini", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tsu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tsou", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tsv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tsogo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tsw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tsishingini", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tsx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mubami", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tsy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tebul Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tsz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Purepecha", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tta", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Tutelo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ttb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gaa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ttc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tektiteko", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ttd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tauade", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tte", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bwanabwana", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ttf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tuotomb", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ttg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tutong", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tth", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Upper Ta'oih", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tti", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tobati", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ttj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tooro", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ttk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Totoro", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ttl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Totela", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ttm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Northern Tutchone", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ttn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Towei", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tto", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lower Ta'oih", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ttp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tombelala", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ttq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tawallammat Tamajaq", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ttr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tera", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tts", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Northeastern Thai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ttt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Muslim Tat", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ttu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Torau", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ttv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Titan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ttw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Long Wat", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tty", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sikaritai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ttz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tsum", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tua", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wiarumus", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tub", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Tübatulabal", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tuc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mutu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tud", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Tuxá", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tue", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tuyuca", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tuf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Central Tunebo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tug", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tunia", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tuh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Taulil", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tui", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tupuri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tuj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tugutil", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tuk", + Part2B = "tuk", + Part2T = "tuk", + Part1 = "tk", + Scope = "I", + LanguageType = "L", + RefName = "Turkmen", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tul", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tula", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tum", + Part2B = "tum", + Part2T = "tum", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tumbuka", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tun", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tunica", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tuo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tucano", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tuq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tedaga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tur", + Part2B = "tur", + Part2T = "tur", + Part1 = "tr", + Scope = "I", + LanguageType = "L", + RefName = "Turkish", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tus", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tuscarora", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tuu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tututni", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tuv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Turkana", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tux", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Tuxináwa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tuy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tugen", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tuz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Turka", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tva", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Vaghua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tvd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tsuvadi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tve", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Te'un", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tvi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tulai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tvk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southeast Ambrym", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tvl", + Part2B = "tvl", + Part2T = "tvl", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tuvalu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tvm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tela-Masbuar", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tvn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tavoyan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tvo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tidore", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tvs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Taveta", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tvt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tutsa Naga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tvu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tunen", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tvw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sedoa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tvx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Taivoan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tvy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Timor Pidgin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "twa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Twana", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "twb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Western Tawbuid", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "twc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Teshenawa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "twd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Twents", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "twe", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tewa (Indonesia)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "twf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Northern Tiwa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "twg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tereweng", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "twh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tai Dón", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "twi", + Part2B = "twi", + Part2T = "twi", + Part1 = "tw", + Scope = "I", + LanguageType = "L", + RefName = "Twi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "twl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tawara", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "twm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tawang Monpa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "twn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Twendi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "two", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tswapong", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "twp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ere", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "twq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tasawaq", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "twr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southwestern Tarahumara", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "twt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Turiwára", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "twu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Termanu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tww", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tuwari", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "twx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tewe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "twy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tawoyan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "txa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tombonuo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "txb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Tokharian B", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "txc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Tsetsaut", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "txe", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Totoli", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "txg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Tangut", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "txh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Thracian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "txi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ikpeng", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "txj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tarjumo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "txm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tomini", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "txn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "West Tarangan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "txo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Toto", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "txq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tii", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "txr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Tartessian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "txs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tonsea", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "txt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Citak", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "txu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kayapó", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "txx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tatana", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "txy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tanosy Malagasy", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tya", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tauya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tye", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kyanga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tyh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "O'du", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tyi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Teke-Tsaayi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tyj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tai Do", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tyl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Thu Lao", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tyn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kombai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "typ", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Thaypan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tyr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tai Daeng", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tys", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tày Sa Pa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tyt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tày Tac", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tyu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tyv", + Part2B = "tyv", + Part2T = "tyv", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tuvinian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tyx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Teke-Tyee", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tyy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tiyaa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tyz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tày", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tza", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tanzanian Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tzh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tzeltal", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tzj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tz'utujil", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tzl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "C", + RefName = "Talossan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tzm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Central Atlas Tamazight", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tzn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tugun", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tzo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tzotzil", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "tzx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tabriak", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "uam", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Uamué", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "uan", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kuan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "uar", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tairuma", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "uba", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ubang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ubi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ubi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ubl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Buhi'non Bikol", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ubr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ubir", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ubu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Umbu-Ungu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "uby", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Ubykh", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "uda", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Uda", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ude", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Udihe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "udg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Muduga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "udi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Udi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "udj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ujir", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "udl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wuzlam", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "udm", + Part2B = "udm", + Part2T = "udm", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Udmurt", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "udu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Uduk", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ues", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kioko", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ufi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ufim", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "uga", + Part2B = "uga", + Part2T = "uga", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Ugaritic", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ugb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Kuku-Ugbanh", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "uge", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ughele", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ugh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kubachi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ugn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ugandan Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ugo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ugong", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ugy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Uruguayan Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "uha", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Uhami", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "uhn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Damal", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "uig", + Part2B = "uig", + Part2T = "uig", + Part1 = "ug", + Scope = "I", + LanguageType = "L", + RefName = "Uighur", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "uis", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Uisai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "uiv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Iyive", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "uji", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tanjijili", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "uka", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kaburi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ukg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ukuriguma", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ukh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ukhwejo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "uki", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kui (India)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ukk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Muak Sa-aak", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ukl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ukrainian Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ukp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ukpe-Bayobiri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ukq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ukwa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ukr", + Part2B = "ukr", + Part2T = "ukr", + Part1 = "uk", + Scope = "I", + LanguageType = "L", + RefName = "Ukrainian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "uks", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Urubú-Kaapor Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "uku", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ukue", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ukv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kuku", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ukw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ukwuani-Aboh-Ndoni", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "uky", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Kuuk-Yak", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ula", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Fungwa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ulb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ulukwumi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ulc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ulch", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ule", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Lule", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ulf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Usku", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "uli", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ulithian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ulk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Meriam Mir", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ull", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ullatan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ulm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ulumanda'", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "uln", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Unserdeutsch", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ulu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Uma' Lung", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ulw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ulwa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "uly", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Buli", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "uma", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Umatilla", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "umb", + Part2B = "umb", + Part2T = "umb", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Umbundu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "umc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Marrucinian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "umd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Umbindhamu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "umg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Morrobalama", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "umi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ukit", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "umm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Umon", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "umn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Makyan Naga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "umo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Umotína", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ump", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Umpila", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "umr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Umbugarla", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ums", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pendau", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "umu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Munsee", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "una", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "North Watut", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "und", + Part2B = "und", + Part2T = "und", + Part1 = "", + Scope = "S", + LanguageType = "S", + RefName = "Undetermined", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "une", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Uneme", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ung", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ngarinyin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "uni", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Uni", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "unk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Enawené-Nawé", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "unm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Unami", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "unn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kurnai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "unr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mundari", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "unu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Unubahe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "unx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Munda", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "unz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Unde Kaili", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "uon", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Kulon", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "upi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Umeda", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "upv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Uripiv-Wala-Rano-Atchin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ura", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Urarina", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "urb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Urubú-Kaapor", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "urc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Urningangg", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "urd", + Part2B = "urd", + Part2T = "urd", + Part1 = "ur", + Scope = "I", + LanguageType = "L", + RefName = "Urdu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ure", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Uru", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "urf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Uradhi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "urg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Urigina", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "urh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Urhobo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "uri", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Urim", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "urk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Urak Lawoi'", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "url", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Urali", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "urm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Urapmin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "urn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Uruangnirin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "uro", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ura (Papua New Guinea)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "urp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Uru-Pa-In", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "urr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lehalurup", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "urt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Urat", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "uru", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Urumi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "urv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Uruava", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "urw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sop", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "urx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Urimo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ury", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Orya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "urz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Uru-Eu-Wau-Wau", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "usa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Usarufa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ush", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ushojo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "usi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Usui", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "usk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Usaghade", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "usp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Uspanteco", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "uss", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "us-Saare", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "usu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Uya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "uta", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Otank", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ute", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ute-Southern Paiute", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "uth", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "ut-Hun", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "utp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Amba (Solomon Islands)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "utr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Etulo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "utu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Utu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "uum", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Urum", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "uur", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ura (Vanuatu)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "uuu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "U", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "uve", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "West Uvean", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "uvh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Uri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "uvl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lote", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "uwa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kuku-Uwanh", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "uya", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Doko-Uyanga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "uzb", + Part2B = "uzb", + Part2T = "uzb", + Part1 = "uz", + Scope = "M", + LanguageType = "L", + RefName = "Uzbek", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "uzn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Northern Uzbek", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "uzs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southern Uzbek", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "vaa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Vaagri Booli", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "vae", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Vale", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "vaf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Vafsi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "vag", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Vagla", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "vah", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Varhadi-Nagpuri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "vai", + Part2B = "vai", + Part2T = "vai", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Vai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "vaj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sekele", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "val", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Vehes", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "vam", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Vanimo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "van", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Valman", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "vao", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Vao", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "vap", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Vaiphei", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "var", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Huarijio", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "vas", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Vasavi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "vau", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Vanuma", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "vav", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Varli", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "vay", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wayu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "vbb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southeast Babar", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "vbk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southwestern Bontok", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "vec", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Venetian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ved", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Veddah", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "vel", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Veluws", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "vem", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Vemgo-Mabas", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ven", + Part2B = "ven", + Part2T = "ven", + Part1 = "ve", + Scope = "I", + LanguageType = "L", + RefName = "Venda", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "veo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Ventureño", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "vep", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Veps", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ver", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mom Jango", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "vgr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Vaghri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "vgt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Vlaamse Gebarentaal", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "vic", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Virgin Islands Creole English", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "vid", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Vidunda", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "vie", + Part2B = "vie", + Part2T = "vie", + Part1 = "vi", + Scope = "I", + LanguageType = "L", + RefName = "Vietnamese", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "vif", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Vili", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "vig", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Viemo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "vil", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Vilela", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "vin", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Vinza", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "vis", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Vishavan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "vit", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Viti", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "viv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Iduna", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "vjk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bajjika", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "vka", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Kariyarra", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "vkj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kujarge", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "vkk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kaur", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "vkl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kulisusu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "vkm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Kamakan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "vkn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Koro Nulu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "vko", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kodeoha", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "vkp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Korlai Creole Portuguese", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "vkt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tenggarong Kutai Malay", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "vku", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kurrama", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "vkz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Koro Zuba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "vlp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Valpei", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "vls", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Vlaams", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "vma", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Martuyhunira", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "vmb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Barbaram", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "vmc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Juxtlahuaca Mixtec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "vmd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mudu Koraga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "vme", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "East Masela", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "vmf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mainfränkisch", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "vmg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lungalunga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "vmh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Maraghei", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "vmi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Miwa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "vmj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ixtayutla Mixtec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "vmk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Makhuwa-Shirima", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "vml", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Malgana", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "vmm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mitlatongo Mixtec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "vmp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Soyaltepec Mazatec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "vmq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Soyaltepec Mixtec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "vmr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Marenje", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "vms", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Moksela", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "vmu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Muluridyi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "vmv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Valley Maidu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "vmw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Makhuwa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "vmx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tamazola Mixtec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "vmy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ayautla Mazatec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "vmz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mazatlán Mazatec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "vnk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Vano", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "vnm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Vinmavis", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "vnp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Vunapu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "vol", + Part2B = "vol", + Part2T = "vol", + Part1 = "vo", + Scope = "I", + LanguageType = "C", + RefName = "Volapük", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "vor", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Voro", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "vot", + Part2B = "vot", + Part2T = "vot", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Votic", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "vra", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Vera'a", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "vro", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Võro", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "vrs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Varisi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "vrt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Burmbar", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "vsi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Moldova Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "vsl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Venezuelan Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "vsn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Vedic Sanskrit", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "vsv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Valencian Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "vto", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Vitou", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "vum", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Vumbu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "vun", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Vunjo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "vut", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Vute", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "vwa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Awa (China)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "waa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Walla Walla", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wab", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wab", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wac", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Wasco-Wishram", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wad", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wamesa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wae", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Walser", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "waf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Wakoná", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wag", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wa'ema", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wah", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Watubela", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wai", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wares", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "waj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Waffa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wal", + Part2B = "wal", + Part2T = "wal", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wolaytta", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wam", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Wampanoag", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wan", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wao", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Wappo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wap", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wapishana", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "waq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wagiman", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "war", + Part2B = "war", + Part2T = "war", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Waray (Philippines)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "was", + Part2B = "was", + Part2T = "was", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Washo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wat", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kaninuwa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wau", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Waurá", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wav", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Waka", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "waw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Waiwai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wax", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Watam", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "way", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wayana", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "waz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wampur", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wba", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Warao", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wbb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wabo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wbe", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Waritai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wbf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wara", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wbh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wanda", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wbi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Vwanji", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wbj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Alagwa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wbk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Waigali", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wbl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wakhi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wbm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wbp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Warlpiri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wbq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Waddar", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wbr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wagdi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wbs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "West Bengal Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wbt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Warnman", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wbv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wajarri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wbw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Woi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wca", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yanomámi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wci", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Waci Gbe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wdd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wandji", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wdg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wadaginam", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wdj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wadjiginy", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wdk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Wadikali", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wdt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wendat", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wdu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Wadjigu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wdy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Wadjabangayi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wea", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Wewaw", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wec", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wè Western", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wed", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wedau", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "weg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wergaia", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "weh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Weh", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wei", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kiunum", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wem", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Weme Gbe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "weo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wemale", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wep", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Westphalien", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wer", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Weri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wes", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Cameroon Pidgin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wet", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Perai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "weu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Rawngtu Chin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wew", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wejewa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wfg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yafi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wga", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Wagaya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wgb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wagawaga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wgg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Wangkangurru", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wgi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wahgi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wgo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Waigeo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wgu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Wirangu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wgy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Warrgamay", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wha", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sou Upaa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "whg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "North Wahgi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "whk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wahau Kenyah", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "whu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wahau Kayan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wib", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southern Toussian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wic", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Wichita", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wie", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Wik-Epa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wif", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Wik-Keyangan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wig", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wik Ngathan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wih", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wik-Me'anha", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wii", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Minidien", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wij", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wik-Iiyanh", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wik", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wikalkan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wil", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Wilawila", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wim", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wik-Mungkan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "win", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ho-Chunk", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wir", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Wiraféd", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wiu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wiru", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wiv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Vitu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wiy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Wiyot", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wja", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Waja", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wji", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Warji", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wka", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Kw'adza", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wkb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kumbaran", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wkd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wakde", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wkl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kalanadi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wkr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Keerray-Woorroong", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wku", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kunduvadi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wkw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Wakawaka", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wky", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Wangkayutyuru", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wla", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Walio", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wlc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mwali Comorian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wle", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wolane", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wlg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kunbarlang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wlh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Welaun", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wli", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Waioli", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wlk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Wailaki", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wll", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wali (Sudan)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wlm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Middle Welsh", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wln", + Part2B = "wln", + Part2T = "wln", + Part1 = "wa", + Scope = "I", + LanguageType = "L", + RefName = "Walloon", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wlo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wolio", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wlr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wailapa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wls", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wallisian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wlu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Wuliwuli", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wlv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wichí Lhamtés Vejoz", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wlw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Walak", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wlx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wali (Ghana)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wly", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Waling", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wma", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Mawa (Nigeria)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wmb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wambaya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wmc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wamas", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wmd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mamaindé", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wme", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wambule", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wmg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Western Minyag", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wmh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Waima'a", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wmi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Wamin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wmm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Maiwa (Indonesia)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wmn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Waamwang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wmo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wom (Papua New Guinea)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wms", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wambon", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wmt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Walmajarri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wmw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mwani", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wmx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Womo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wnb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mokati", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wnc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wantoat", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wnd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Wandarang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wne", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Waneci", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wng", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wanggom", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wni", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ndzwani Comorian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wnk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wanukaka", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wnm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Wanggamala", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wnn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Wunumara", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wno", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wano", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wnp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wanap", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wnu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Usan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wnw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wintu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wny", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wanyi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "woa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kuwema", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wob", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wè Northern", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "woc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wogeo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wod", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wolani", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "woe", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Woleaian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wof", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gambian Wolof", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wog", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wogamusin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "woi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kamang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wok", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Longto", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wol", + Part2B = "wol", + Part2T = "wol", + Part1 = "wo", + Scope = "I", + LanguageType = "L", + RefName = "Wolof", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wom", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wom (Nigeria)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "won", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wongo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "woo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Manombai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wor", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Woria", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wos", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Hanga Hundi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wow", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wawonii", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "woy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Weyto", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wpc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Maco", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wrb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Waluwarra", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wrg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Warungu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wrh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Wiradjuri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wri", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Wariyangga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wrk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Garrwa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wrl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Warlmanpa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wrm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Warumungu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wrn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Warnang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wro", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Worrorra", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wrp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Waropen", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wrr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wardaman", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wrs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Waris", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wru", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Waru", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wrv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Waruna", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wrw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Gugu Warra", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wrx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wae Rana", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wry", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Merwari", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wrz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Waray (Australia)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wsa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Warembori", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wsg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Adilabad Gondi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wsi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wusi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wsk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Waskia", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wsr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Owenia", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wss", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wasa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wsu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Wasu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wsv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Wotapuri-Katarqalai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wtb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Matambwe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wtf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Watiwa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wth", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Wathawurrung", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wti", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Berta", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wtk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Watakataui", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wtm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mewati", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wtw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wotu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wua", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wikngenchera", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wub", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wunambal", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wud", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wudu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wuh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wutunhua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wul", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Silimo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wum", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wumbvu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wun", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bungu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wur", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Wurrugu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wut", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wutung", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wuu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wu Chinese", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wuv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wuvulu-Aua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wux", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wulna", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wuy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wauyai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wwa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Waama", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wwb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Wakabunga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wwo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wetamut", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wwr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Warrwa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "www", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wawa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wxa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Waxianghua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wxw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Wardandi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wyb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wangaaybuwan-Ngiyambaa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wyi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Woiwurrung", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wym", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wymysorys", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wyn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wyandot", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wyr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wayoró", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "wyy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Western Fijian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xaa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Andalusian Arabic", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xab", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sambe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xac", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kachari", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xad", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Adai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xae", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Aequian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xag", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Aghwan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xai", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Kaimbé", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xaj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Ararandewára", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xak", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Máku", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xal", + Part2B = "xal", + Part2T = "xal", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kalmyk", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xam", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "ǀXam", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xan", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Xamtanga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xao", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Khao", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xap", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Apalachee", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xaq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Aquitanian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xar", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Karami", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xas", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Kamas", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xat", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Katawixi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xau", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kauwera", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xav", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Xavánte", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xaw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kawaiisu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xay", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kayan Mahakam", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xbb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Lower Burdekin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xbc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Bactrian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xbd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Bindal", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xbe", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Bigambal", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xbg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Bunganditj", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xbi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kombio", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xbj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Birrpayi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xbm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Middle Breton", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xbn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Kenaboi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xbo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Bolgarian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xbp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Bibbulman", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xbr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kambera", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xbw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Kambiwá", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xby", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Batjala", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xcb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Cumbric", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xcc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Camunic", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xce", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Celtiberian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xcg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Cisalpine Gaulish", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xch", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Chemakum", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xcl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Classical Armenian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xcm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Comecrudo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xcn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Cotoname", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xco", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Chorasmian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xcr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Carian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xct", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Classical Tibetan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xcu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Curonian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xcv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Chuvantsy", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xcw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Coahuilteco", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xcy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Cayuse", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xda", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Darkinyung", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xdc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Dacian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xdk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Dharuk", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xdm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Edomite", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xdo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kwandu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xdq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kaitag", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xdy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Malayic Dayak", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xeb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Eblan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xed", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Hdi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xeg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "ǁXegwi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xel", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kelo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xem", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kembayan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xep", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Epi-Olmec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xer", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Xerénte", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xes", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kesawai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xet", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Xetá", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xeu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Keoru-Ahia", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xfa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Faliscan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xga", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Galatian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xgb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Gbin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xgd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Gudang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xgf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Gabrielino-Fernandeño", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xgg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Goreng", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xgi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Garingbal", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xgl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Galindan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xgm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Dharumbal", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xgr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Garza", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xgu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Unggumi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xgw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Guwa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xha", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Harami", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xhc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Hunnic", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xhd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Hadrami", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xhe", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Khetrani", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xhm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Middle Khmer (1400 to 1850 CE)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xho", + Part2B = "xho", + Part2T = "xho", + Part1 = "xh", + Scope = "I", + LanguageType = "L", + RefName = "Xhosa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xhr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Hernican", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xht", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Hattic", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xhu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Hurrian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xhv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Khua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xib", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Iberian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xii", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Xiri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xil", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Illyrian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xin", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Xinca", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xir", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Xiriâna", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xis", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kisan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xiv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Indus Valley Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xiy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Xipaya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xjb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Minjungbal", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xjt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Jaitmatang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xka", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kalkoti", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xkb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Northern Nago", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xkc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kho'ini", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xkd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mendalam Kayan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xke", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kereho", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xkf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Khengkha", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xkg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kagoro", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xki", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kenyan Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xkj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kajali", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xkk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kachok", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xkl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mainstream Kenyah", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xkn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kayan River Kayan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xko", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kiorr", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xkp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kabatei", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xkq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Koroni", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xkr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Xakriabá", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xks", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kumbewaha", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xkt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kantosi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xku", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kaamba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xkv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kgalagadi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xkw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kembra", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xkx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Karore", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xky", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Uma' Lasan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xkz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kurtokha", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xla", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kamula", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xlb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Loup B", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xlc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Lycian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xld", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Lydian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xle", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Lemnian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xlg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Ligurian (Ancient)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xli", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Liburnian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xln", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Alanic", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xlo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Loup A", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xlp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Lepontic", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xls", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Lusitanian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xlu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Cuneiform Luwian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xly", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Elymian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xma", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mushungulu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xmb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mbonga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xmc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Makhuwa-Marrevone", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xmd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mbudum", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xme", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Median", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xmf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mingrelian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xmg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mengaka", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xmh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kugu-Muminh", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xmj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Majera", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xmk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Ancient Macedonian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xml", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Malaysian Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xmm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Manado Malay", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xmn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Manichaean Middle Persian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xmo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Morerebi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xmp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Kuku-Mu'inh", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xmq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Kuku-Mangk", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xmr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Meroitic", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xms", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Moroccan Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xmt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Matbat", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xmu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Kamu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xmv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Antankarana Malagasy", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xmw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tsimihety Malagasy", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xmx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Salawati", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xmy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mayaguduna", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xmz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mori Bawah", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xna", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Ancient North Arabian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xnb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kanakanabu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xng", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Middle Mongolian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xnh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kuanhua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xni", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Ngarigu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xnj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ngoni (Tanzania)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xnk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Nganakarti", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xnm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Ngumbarl", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xnn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Northern Kankanay", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xno", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Anglo-Norman", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xnq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ngoni (Mozambique)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xnr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kangri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xns", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kanashi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xnt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Narragansett", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xnu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Nukunul", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xny", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nyiyaparli", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xnz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kenzi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xoc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "O'chi'chi'", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xod", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kokoda", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xog", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Soga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xoi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kominimung", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xok", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Xokleng", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xom", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Komo (Sudan)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xon", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Konkomba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xoo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Xukurú", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xop", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kopar", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xor", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Korubo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xow", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kowaki", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xpa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Pirriya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xpb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Northeastern Tasmanian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xpc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Pecheneg", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xpd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Oyster Bay Tasmanian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xpe", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Liberia Kpelle", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xpf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Southeast Tasmanian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xpg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Phrygian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xph", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "North Midlands Tasmanian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xpi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Pictish", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xpj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Mpalitjanh", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xpk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kulina Pano", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xpl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Port Sorell Tasmanian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xpm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Pumpokol", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xpn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Kapinawá", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xpo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Pochutec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xpp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Puyo-Paekche", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xpq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Mohegan-Pequot", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xpr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Parthian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xps", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Pisidian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xpt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Punthamara", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xpu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Punic", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xpv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Northern Tasmanian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xpw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Northwestern Tasmanian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xpx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Southwestern Tasmanian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xpy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Puyo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xpz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Bruny Island Tasmanian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xqa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Karakhanid", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xqt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Qatabanian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xra", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Krahô", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xrb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Eastern Karaboro", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xrd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Gundungurra", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xre", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kreye", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xrg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Minang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xri", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Krikati-Timbira", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xrm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Armazic", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xrn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Arin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xrr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Raetic", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xrt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Aranama-Tamique", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xru", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Marriammu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xrw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Karawa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xsa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Sabaean", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xsb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sambal", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xsc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Scythian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xsd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Sidetic", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xse", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sempan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xsh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Shamang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xsi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sio", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xsj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Subi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xsl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "South Slavey", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xsm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kasem", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xsn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sanga (Nigeria)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xso", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Solano", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xsp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Silopi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xsq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Makhuwa-Saka", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xsr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sherpa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xsu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sanumá", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xsv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Sudovian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xsy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Saisiyat", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xta", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Alcozauca Mixtec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xtb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chazumba Mixtec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xtc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Katcha-Kadugli-Miri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xtd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Diuxi-Tilantongo Mixtec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xte", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ketengban", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xtg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Transalpine Gaulish", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xth", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Yitha Yitha", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xti", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sinicahua Mixtec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xtj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "San Juan Teita Mixtec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xtl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tijaltepec Mixtec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xtm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Magdalena Peñasco Mixtec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xtn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Northern Tlaxiaco Mixtec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xto", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Tokharian A", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xtp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "San Miguel Piedras Mixtec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xtq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Tumshuqese", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xtr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Early Tripuri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xts", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sindihui Mixtec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xtt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tacahua Mixtec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xtu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Cuyamecalco Mixtec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xtv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Thawa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xtw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tawandê", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xty", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yoloxochitl Mixtec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xua", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Alu Kurumba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xub", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Betta Kurumba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xud", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Umiida", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xug", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kunigami", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xuj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Jennu Kurumba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xul", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Ngunawal", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xum", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Umbrian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xun", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Unggaranggu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xuo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kuo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xup", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Upper Umpqua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xur", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Urartian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xut", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Kuthant", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xuu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kxoe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xve", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Venetic", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xvi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kamviri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xvn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Vandalic", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xvo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Volscian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xvs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Vestinian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xwa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kwaza", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xwc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Woccon", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xwd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Wadi Wadi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xwe", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Xwela Gbe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xwg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kwegu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xwj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Wajuk", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xwk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Wangkumara", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xwl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Western Xwla Gbe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xwo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Written Oirat", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xwr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kwerba Mamberamo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xwt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Wotjobaluk", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xww", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Wemba Wemba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xxb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Boro (Ghana)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xxk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ke'o", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xxm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Minkin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xxr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Koropó", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xxt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Tambora", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xya", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Yaygir", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xyb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Yandjibara", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xyj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Mayi-Yapi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xyk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Mayi-Kulan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xyl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Yalakalore", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xyt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Mayi-Thakurti", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xyy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yorta Yorta", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xzh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Zhang-Zhung", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xzm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Zemgalian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "xzp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Ancient Zapotec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yaa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yaminahua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yab", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yuhup", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yac", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pass Valley Yali", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yad", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yagua", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yae", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pumé", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yaf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yaka (Democratic Republic of Congo)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yag", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yámana", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yah", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yazgulyam", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yai", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yagnobi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yaj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Banda-Yangere", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yak", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yakama", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yal", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yalunka", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yam", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yamba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yan", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mayangna", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yao", + Part2B = "yao", + Part2T = "yao", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yao", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yap", + Part2B = "yap", + Part2T = "yap", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yapese", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yaq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yaqui", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yar", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yabarana", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yas", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nugunu (Cameroon)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yat", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yambeta", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yau", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yuwana", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yav", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yangben", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yaw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yawalapití", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yax", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yauma", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yay", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Agwagwune", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yaz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lokaa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yba", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yala", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ybb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yemba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ybe", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "West Yugur", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ybh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yakha", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ybi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yamphu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ybj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Hasha", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ybk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bokha", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ybl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yukuben", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ybm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yaben", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ybn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Yabaâna", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ybo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yabong", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ybx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yawiyo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yby", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yaweyuha", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ych", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chesu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ycl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lolopo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ycn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yucuna", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ycp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chepya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ycr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yilan Creole", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yda", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Yanda", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ydd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Eastern Yiddish", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yde", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yangum Dey", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ydg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yidgha", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ydk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yoidik", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yea", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ravula", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yec", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yeniche", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yee", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yimas", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yei", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Yeni", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yej", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yevanic", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yel", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yela", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yer", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tarok", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yes", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nyankpa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yet", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yetfa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yeu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yerukula", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yev", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yapunda", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yey", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yeyi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yga", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Malyangapa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ygi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Yiningayi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ygl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yangum Gel", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ygm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yagomi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ygp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Gepo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ygr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yagaria", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ygs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yolŋu Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ygu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yugul", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ygw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yagwoia", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yha", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Baha Buyang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yhd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Judeo-Iraqi Arabic", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yhl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Hlepho Phowa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yhs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yan-nhaŋu Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yia", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yinggarda", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yid", + Part2B = "yid", + Part2T = "yid", + Part1 = "yi", + Scope = "M", + LanguageType = "L", + RefName = "Yiddish", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yif", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ache", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yig", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wusa Nasu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yih", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Western Yiddish", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yii", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yidiny", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yij", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yindjibarndi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yik", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dongshanba Lalo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yil", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Yindjilandji", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yim", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yimchungru Naga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yin", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Riang Lai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yip", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Pholo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yiq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Miqie", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yir", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "North Awyu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yis", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yis", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yit", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Eastern Lalu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yiu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Awu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yiv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Northern Nisu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yix", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Axi Yi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yiz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Azhe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yka", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yakan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ykg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Northern Yukaghir", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ykh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Khamnigan Mongol", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yki", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yoke", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ykk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yakaikeke", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ykl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Khlula", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ykm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kap", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ykn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kua-nsi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yko", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yasa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ykr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yekora", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ykt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kathu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yku", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kuamasi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yky", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yakoma", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yla", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yaul", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ylb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yaleba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yle", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yele", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ylg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yelogu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yli", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Angguruk Yali", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yll", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yil", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ylm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Limi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yln", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Langnian Buyang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ylo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Naluo Yi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ylr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Yalarnnga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ylu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Aribwaung", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yly", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nyâlayu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ymb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yambes", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ymc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southern Muji", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ymd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Muda", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yme", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Yameo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ymg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yamongeri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ymh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mili", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ymi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Moji", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ymk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Makwe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yml", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Iamalele", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ymm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Maay", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ymn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yamna", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ymo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yangum Mon", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ymp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yamap", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ymq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Qila Muji", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ymr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Malasar", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yms", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Mysian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ymx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Northern Muji", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ymz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Muzi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yna", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Aluo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ynb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yamben", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ynd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Yandruwandha", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yne", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lang'e", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yng", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yango", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ynk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Naukan Yupik", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ynl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yangulam", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ynn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Yana", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yno", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yong", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ynq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yendang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yns", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yansi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ynu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Yahuna", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yob", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Yoba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yog", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yogad", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yoi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yonaguni", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yok", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yokuts", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yol", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Yola", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yom", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yombe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yon", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yongkom", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yor", + Part2B = "yor", + Part2T = "yor", + Part1 = "yo", + Scope = "I", + LanguageType = "L", + RefName = "Yoruba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yot", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yotti", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yox", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yoron", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yoy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yoy", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ypa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Phala", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ypb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Labo Phowa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ypg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Phola", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yph", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Phupha", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ypm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Phuma", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ypn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ani Phowa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ypo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Alo Phola", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ypp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Phupa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ypz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Phuza", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yra", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yerakai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yrb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yareba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yre", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yaouré", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yrk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nenets", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yrl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nhengatu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yrm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yirrk-Mel", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yrn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yerong", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yro", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yaroamë", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yrs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yarsun", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yrw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yarawata", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yry", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yarluyandi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ysc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Yassic", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ysd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Samatao", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ysg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sonaga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ysl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yugoslavian Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ysm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Myanmar Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ysn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sani", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yso", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nisi (China)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ysp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southern Lolopo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ysr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Sirenik Yupik", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yss", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yessan-Mayo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ysy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sanie", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yta", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Talu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ytl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tanglang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ytp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Thopho", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ytw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yout Wam", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yty", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Yatay", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yua", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yucateco", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yub", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Yugambal", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yuc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yuchi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yud", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Judeo-Tripolitanian Arabic", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yue", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yue Chinese", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yuf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Havasupai-Walapai-Yavapai", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yug", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Yug", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yui", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yurutí", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yuj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Karkar-Yuri", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yuk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Yuki", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yul", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yulu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yum", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Quechan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yun", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bena (Nigeria)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yup", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yukpa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yuq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yuqui", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yur", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Yurok", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yut", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yopno", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yuw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yau (Morobe Province)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yux", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southern Yukaghir", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yuy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "East Yugur", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yuz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yuracare", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yva", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yawa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yvt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Yavitero", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ywa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kalou", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ywg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yinhawangka", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ywl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Western Lalu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ywn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yawanawa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ywq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wuding-Luquan Yi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ywr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yawuru", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ywt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Xishanba Lalo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ywu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Wumeng Nasu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yww", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Yawarawarga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yxa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Mayawali", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yxg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Yagara", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yxl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Yardliyawarra", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yxm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Yinwum", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yxu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Yuyu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yxy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Yabula Yabula", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yyr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Yir Yoront", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yyu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yau (Sandaun Province)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yyz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ayizi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yzg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "E'ma Buyang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "yzk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Zokhuo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zaa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sierra de Juárez Zapotec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zab", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Western Tlacolula Valley Zapotec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zac", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ocotlán Zapotec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zad", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Cajonos Zapotec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zae", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yareni Zapotec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zaf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ayoquesco Zapotec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zag", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Zaghawa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zah", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Zangwal", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zai", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Isthmus Zapotec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zaj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Zaramo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zak", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Zanaki", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zal", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Zauzou", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zam", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Miahuatlán Zapotec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zao", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ozolotepec Zapotec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zap", + Part2B = "zap", + Part2T = "zap", + Part1 = "", + Scope = "M", + LanguageType = "L", + RefName = "Zapotec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zaq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Aloápam Zapotec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zar", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Rincón Zapotec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zas", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Santo Domingo Albarradas Zapotec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zat", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tabaa Zapotec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zau", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Zangskari", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zav", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yatzachi Zapotec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zaw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mitla Zapotec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zax", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Xadani Zapotec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zay", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Zayse-Zergulla", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zaz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Zari", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zba", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "C", + RefName = "Balaibalan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zbc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Central Berawan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zbe", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "East Berawan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zbl", + Part2B = "zbl", + Part2T = "zbl", + Part1 = "", + Scope = "I", + LanguageType = "C", + RefName = "Blissymbols", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zbt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Batui", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zbu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bu (Bauchi State)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zbw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "West Berawan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zca", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Coatecas Altas Zapotec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zcd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Las Delicias Zapotec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zch", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Central Hongshuihe Zhuang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zdj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Ngazidja Comorian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zea", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Zeeuws", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zeg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Zenag", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zeh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Eastern Hongshuihe Zhuang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zem", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Zeem", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zen", + Part2B = "zen", + Part2T = "zen", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Zenaga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zga", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kinga", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zgb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Guibei Zhuang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zgh", + Part2B = "zgh", + Part2T = "zgh", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Standard Moroccan Tamazight", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zgm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Minz Zhuang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zgn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Guibian Zhuang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zgr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Magori", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zha", + Part2B = "zha", + Part2T = "zha", + Part1 = "za", + Scope = "M", + LanguageType = "L", + RefName = "Zhuang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zhb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Zhaba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zhd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Dai Zhuang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zhi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Zhire", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zhn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Nong Zhuang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zho", + Part2B = "chi", + Part2T = "zho", + Part1 = "zh", + Scope = "M", + LanguageType = "L", + RefName = "Chinese", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zhw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Zhoa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zia", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Zia", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zib", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Zimbabwe Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zik", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Zimakani", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zil", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Zialo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zim", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mesme", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zin", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Zinza", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ziw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Zigula", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ziz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Zizilivakan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zka", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kaimbulawa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zkd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kadu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zkg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Koguryo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zkh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Khorezmian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zkk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Karankawa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zkn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kanan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zko", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Kott", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zkp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "São Paulo Kaingáng", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zkr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Zakhring", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zkt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Kitan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zku", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kaurna", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zkv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Krevinian", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zkz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Khazar", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zla", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Zula", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zlj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Liujiang Zhuang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zlm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Malay (individual language)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zln", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lianshan Zhuang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zlq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Liuqian Zhuang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zlu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Zul", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zma", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Manda (Australia)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zmb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Zimba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zmc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Margany", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zmd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Maridan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zme", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Mangerr", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zmf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mfinu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zmg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Marti Ke", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zmh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Makolkol", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zmi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Negeri Sembilan Malay", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zmj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Maridjabin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zmk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Mandandanyi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zml", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Matngala", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zmm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Marimanindji", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zmn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mbangwe", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zmo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Molo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zmp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mpuono", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zmq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mituku", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zmr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Maranunggu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zms", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mbesa", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zmt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Maringarr", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zmu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Muruwari", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zmv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Mbariman-Gudhinma", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zmw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mbo (Democratic Republic of Congo)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zmx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Bomitaba", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zmy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mariyedi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zmz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mbandja", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zna", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Zan Gula", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zne", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Zande (individual language)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zng", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "znk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Manangkari", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zns", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mangas", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zoc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Copainalá Zoque", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zoh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chimalapa Zoque", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zom", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Zou", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zoo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Asunción Mixtepec Zapotec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zoq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tabasco Zoque", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zor", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Rayón Zoque", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zos", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Francisco León Zoque", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zpa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lachiguiri Zapotec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zpb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yautepec Zapotec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zpc", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Choapan Zapotec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zpd", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southeastern Ixtlán Zapotec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zpe", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Petapa Zapotec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zpf", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "San Pedro Quiatoni Zapotec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zpg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Guevea De Humboldt Zapotec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zph", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Totomachapan Zapotec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zpi", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Santa María Quiegolani Zapotec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zpj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Quiavicuzas Zapotec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zpk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tlacolulita Zapotec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zpl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lachixío Zapotec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zpm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mixtepec Zapotec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zpn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Santa Inés Yatzechi Zapotec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zpo", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Amatlán Zapotec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zpp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "El Alto Zapotec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zpq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Zoogocho Zapotec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zpr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Santiago Xanica Zapotec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zps", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Coatlán Zapotec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zpt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "San Vicente Coatlán Zapotec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zpu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yalálag Zapotec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zpv", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Chichicapan Zapotec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zpw", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Zaniza Zapotec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zpx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "San Baltazar Loxicha Zapotec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zpy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mazaltepec Zapotec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zpz", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Texmelucan Zapotec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zqe", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Qiubei Zhuang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zra", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Kara (Korea)", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zrg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mirgan", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zrn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Zerenkel", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zro", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Záparo", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zrp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "E", + RefName = "Zarphatic", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zrs", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Mairasi", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zsa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sarasira", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zsk", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "H", + RefName = "Kaskean", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zsl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Zambian Sign Language", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zsm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Standard Malay", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zsr", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Southern Rincon Zapotec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zsu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Sukurum", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zte", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Elotepec Zapotec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ztg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Xanaguía Zapotec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ztl", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Lapaguía-Guivini Zapotec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ztm", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "San Agustín Mixtepec Zapotec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ztn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Santa Catarina Albarradas Zapotec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ztp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Loxicha Zapotec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ztq", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Quioquitani-Quierí Zapotec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zts", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tilquiapan Zapotec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ztt", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tejalapan Zapotec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ztu", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Güilá Zapotec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "ztx", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Zaachila Zapotec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zty", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yatee Zapotec", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zuh", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Tokano", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zul", + Part2B = "zul", + Part2T = "zul", + Part1 = "zu", + Scope = "I", + LanguageType = "L", + RefName = "Zulu", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zum", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Kumzari", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zun", + Part2B = "zun", + Part2T = "zun", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Zuni", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zuy", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Zumaya", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zwa", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Zay", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zxx", + Part2B = "zxx", + Part2T = "zxx", + Part1 = "", + Scope = "S", + LanguageType = "S", + RefName = "No linguistic content", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zyb", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yongbei Zhuang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zyg", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yang Zhuang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zyj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Youjiang Zhuang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zyn", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Yongnan Zhuang", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zyp", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Zyphe Chin", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zza", + Part2B = "zza", + Part2T = "zza", + Part1 = "", + Scope = "M", + LanguageType = "L", + RefName = "Zaza", + Comment = "", + } + ); + + iso6393.RecordList.Add( + new() + { + Id = "zzj", + Part2B = "", + Part2T = "", + Part1 = "", + Scope = "I", + LanguageType = "L", + RefName = "Zuojiang Zhuang", + Comment = "", + } + ); + + return iso6393; + } +} diff --git a/LanguageTags/JsonOptions.cs b/LanguageTags/JsonOptions.cs new file mode 100644 index 0000000..1d468e5 --- /dev/null +++ b/LanguageTags/JsonOptions.cs @@ -0,0 +1,23 @@ +using System.Text.Json; +using System.Text.Json.Serialization; + +namespace ptr727.LanguageTags; + +internal sealed class JsonOptions +{ + public static readonly JsonSerializerOptions JsonReadOptions = new() + { + AllowTrailingCommas = true, + IncludeFields = true, + NumberHandling = JsonNumberHandling.AllowReadingFromString, + PreferredObjectCreationHandling = JsonObjectCreationHandling.Populate, + ReadCommentHandling = JsonCommentHandling.Skip, + }; + + public static readonly JsonSerializerOptions JsonWriteOptions = new() + { + DefaultIgnoreCondition = JsonIgnoreCondition.WhenWritingNull, + IncludeFields = true, + WriteIndented = true, + }; +} diff --git a/LanguageTags/LanguageLookup.cs b/LanguageTags/LanguageLookup.cs new file mode 100644 index 0000000..724c934 --- /dev/null +++ b/LanguageTags/LanguageLookup.cs @@ -0,0 +1,251 @@ +using System; +using System.Collections.Generic; +using System.Globalization; +using System.Linq; + +namespace ptr727.LanguageTags; + +public class LanguageLookup +{ + // Undetermined + public const string Undetermined = "und"; + + private readonly Iso6392 _iso6392 = Iso6392.Create(); + private readonly Iso6393 _iso6393 = Iso6393.Create(); + private readonly Rfc5646 _rfc5646 = Rfc5646.Create(); + + 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); + if (cultureInfo == null) + { + return null; + } + + // 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; + } + + // Language lookup substitutions + public List<(string ietf, string iso)> Substitutions { get; private set; } = []; + + /// + /// Converts an ISO-639 language tag to its corresponding IETF / RFC-5646 language tag. + /// + /// + /// The ISO language tag to convert. This can be an ISO-639-1, ISO-639-2, or ISO-639-3 code, or a language tag recognized by the system CultureInfo. + /// + /// + /// The corresponding RFC-5646 language tag if a match is found; otherwise undetermined language. + /// + public string GetIetfFromIso(string languageTag) + { + // Undetermined + if (string.IsNullOrEmpty(languageTag)) + { + return Undetermined; + } + + // Substitutions + (string ietf, string iso) match = Substitutions.FirstOrDefault(item => + item.iso.Equals(languageTag, StringComparison.OrdinalIgnoreCase) + ); + if (match != default) + { + return match.ietf; + } + + // Find a matching RFC 5646 record + Rfc5646.Record rfc5646 = _rfc5646.Find(languageTag, false); + if (rfc5646 != null) + { + return rfc5646.TagAny; + } + + // Find a matching ISO-639-3 record + Iso6393.Record iso6393 = _iso6393.Find(languageTag, false); + if (iso6393 != null) + { + // Find a matching RFC 5646 record from the ISO-639-3 or ISO-639-1 tag + rfc5646 = _rfc5646.Find(iso6393.Id, false); + rfc5646 ??= _rfc5646.Find(iso6393.Part1, false); + if (rfc5646 != null) + { + return rfc5646.TagAny; + } + } + + // Find a matching ISO-639-2 record + Iso6392.Record iso6392 = _iso6392.Find(languageTag, false); + if (iso6392 != null) + { + // Find a matching RFC 5646 record from the ISO-639-2 or ISO-639-1 tag + rfc5646 = _rfc5646.Find(iso6392.Id, false); + rfc5646 ??= _rfc5646.Find(iso6392.Part1, false); + if (rfc5646 != null) + { + return rfc5646.TagAny; + } + } + + // Try CultureInfo + CultureInfo cultureInfo = CreateCultureInfo(languageTag); + return cultureInfo != null ? cultureInfo.IetfLanguageTag : Undetermined; + } + + /// + /// Converts an IETF / RFC-5646 language tag to its corresponding ISO-639 language tag. + /// + /// + /// The RFC-5646 language tag to convert. This can be an IETF / RFC-5646 code, or a language tag recognized by the system CultureInfo. + /// + /// + /// The corresponding ISO-639-3 language tag if a match is found; otherwise undetermined language. + /// + public string GetIsoFromIetf(string languageTag) + { + // Undetermined + if (string.IsNullOrEmpty(languageTag)) + { + return Undetermined; + } + + // Substitutions + (string ietf, string iso) match = Substitutions.FirstOrDefault(item => + item.ietf.Equals(languageTag, StringComparison.OrdinalIgnoreCase) + ); + if (match != default) + { + return match.iso; + } + + // Find a matching RFC-5646 record + Rfc5646.Record rfc5646 = _rfc5646.Find(languageTag, false); + if (rfc5646 != null) + { + // Use expanded form if Redundant, or just use TagAny + // E.g. cmn-Hant -> zh-cmn-Hant + languageTag = rfc5646.TagAny; + } + + // TODO: Split complex tags and resolve in parts + // language-extlang-script-region-variant-extension-privateuse-... + // zh-cmn-Hant-Foo-Bar -> zh-cmn-Hant-Foo -> zh-cmn-Hant -> zh-cmn -> zh + // Private tags -x- is not expected to resolve + // E.g. zh-cmn-Hans-CN, sr-Latn, zh-yue-HK, sl-IT-nedis, hy-Latn-IT-arevela, az-Arab-x-AZE-derbend + + // Split the parts and use the first part + // zh-cmn-Hant -> zh + string[] parts = languageTag.Split('-'); + languageTag = parts[0]; + + // Get ISO-639-3 record + Iso6393.Record iso6393 = _iso6393.Find(languageTag, false); + if (iso6393 != null) + { + // Return the Part 2B code + return iso6393.Part2B; + } + + // Get ISO-639-2 record + Iso6392.Record 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) + { + 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; + } + return Undetermined; + } + + /// + /// Determines whether the specified matches the given according to language tag matching rules. + /// + /// + /// The language tag prefix to match against (e.g., "zh", "zh-Hant"). + /// + /// + /// The language tag to test for a match (e.g., "zh-Hant-foo"). + /// + /// + /// true if matches the ; otherwise, false. + /// + public bool IsMatch(string prefix, string languageTag) + { + // 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 language matches the prefix exactly + if (languageTag.Equals(prefix, StringComparison.OrdinalIgnoreCase)) + { + return true; + } + + // The language start with the prefix, and the the next character is a - + if ( + languageTag.StartsWith(prefix, StringComparison.OrdinalIgnoreCase) + && languageTag[prefix.Length..].StartsWith('-') + ) + { + 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 RFC 5646 record + Rfc5646.Record rfc5646 = _rfc5646.Find(languageTag, false); + if (rfc5646 != null) + { + // If the lookup is different then rematch + if (!string.Equals(languageTag, rfc5646.TagAny, StringComparison.OrdinalIgnoreCase)) + { + // Reiterate + languageTag = rfc5646.TagAny; + continue; + } + } + + // No match + return false; + } + } +} diff --git a/LanguageTags/LanguageTags.csproj b/LanguageTags/LanguageTags.csproj new file mode 100644 index 0000000..4688272 --- /dev/null +++ b/LanguageTags/LanguageTags.csproj @@ -0,0 +1,33 @@ + + + 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 + 1.0.0-pre + en + ptr727.LanguageTags + MIT + https://github.com/ptr727/LanguageTags + README.md + ISO639 RFC5646 BCP47 LanguageTags + 1.0.0-pre + true + ptr727.LanguageTags + snupkg + net9.0 + 1.0.0.0 + + + + + + + + diff --git a/LanguageTags/Rfc5646.cs b/LanguageTags/Rfc5646.cs new file mode 100644 index 0000000..74082bb --- /dev/null +++ b/LanguageTags/Rfc5646.cs @@ -0,0 +1,380 @@ +using System; +using System.Collections.Generic; +using System.Diagnostics; +using System.Globalization; +using System.IO; +using System.Linq; +using System.Text; +using System.Text.Json; + +namespace ptr727.LanguageTags; + +public partial class Rfc5646 +{ + public const string DataUri = + @"https://www.iana.org/assignments/language-subtag-registry/language-subtag-registry"; + public const string DataFileName = "rfc5646"; + + public static Rfc5646 LoadData(string fileName) + { + // https://www.rfc-editor.org/rfc/rfc5646.html#section-3.1.1 + // record-jar format: https://datatracker.ietf.org/doc/html/draft-phillips-record-jar-02 + Rfc5646 rfc5646 = new(); + Parser parser = new(); + using StreamReader lineReader = new(File.OpenRead(fileName)); + + // First record is file date + _ = parser.ReadAttributes(lineReader); + rfc5646.FileDate = parser.GetFileDate(); + + // Read all record attributes separated by %% until EOF + while (parser.ReadAttributes(lineReader)) + { + rfc5646.RecordList.Add(parser.GetRecord()); + } + rfc5646.RecordList.Add(parser.GetRecord()); + + return rfc5646; + } + + public static Rfc5646 LoadJson(string fileName) => + JsonSerializer.Deserialize( + File.ReadAllText(fileName), + JsonOptions.JsonReadOptions + ); + + public static void SaveJson(string fileName, Rfc5646 rfc5646) => + File.WriteAllText( + fileName, + JsonSerializer.Serialize(rfc5646, JsonOptions.JsonWriteOptions) + ); + + public static void GenCode(string fileName, Rfc5646 rfc5646) + { + StringBuilder stringBuilder = new(); + _ = stringBuilder.AppendLine( + CultureInfo.InvariantCulture, + $$""" + // This file is generated by LanguageTags.Rfc5646.GenCode + + using System; + + namespace ptr727.LanguageTags; + + public partial class Rfc5646 + { + public static Rfc5646 Create() + { + Rfc5646 rfc5646 = new() { FileDate = new DateOnly({{rfc5646.FileDate.Year}}, {{rfc5646.FileDate.Month}}, {{rfc5646.FileDate.Day}}) }; + Record record; + """ + ); + + rfc5646.RecordList.ForEach(record => + { + _ = stringBuilder.AppendLine( + CultureInfo.InvariantCulture, + $$""" + + record = new() + { + Type = RecordType.{{record.Type.ToString()}}, + SubTag = "{{record.SubTag}}", + Added = new DateOnly({{record.Added.Year}}, {{record.Added.Month}}, {{record.Added.Day}}), + SuppressScript = "{{record.SuppressScript}}", + Scope = "{{record.Scope}}", + MacroLanguage = "{{record.MacroLanguage}}", + Deprecated = new DateOnly({{record.Deprecated.Year}}, {{record.Deprecated.Month}}, {{record.Deprecated.Day}}), + PreferredValue = "{{record.PreferredValue}}", + Tag = "{{record.Tag}}", + }; + """ + ); + record.Description.ForEach(description => + _ = stringBuilder.AppendLine( + CultureInfo.InvariantCulture, + $$""" + record.Description.Add(@"{{description.Replace("\"", "\"\"")}}"); + """ + ) + ); + record.Comments.ForEach(comments => + _ = stringBuilder.AppendLine( + CultureInfo.InvariantCulture, + $$""" + record.Comments.Add(@"{{comments.Replace("\"", "\"\"")}}"); + """ + ) + ); + record.Prefix.ForEach(prefix => + _ = stringBuilder.AppendLine( + CultureInfo.InvariantCulture, + $$""" + record.Prefix.Add("{{prefix}}"); + """ + ) + ); + _ = stringBuilder.AppendLine( + CultureInfo.InvariantCulture, + $$""" + rfc5646.RecordList.Add(record); + """ + ); + }); + _ = stringBuilder.AppendLine( + """ + + return rfc5646; + } + } + """ + ); + + // Write to file + File.WriteAllText(fileName, stringBuilder.ToString()); + } + + private sealed class Parser + { + private readonly List> _attributeList = []; + + public bool ReadAttributes(StreamReader lineReader) + { + // Read until %% or EOF + _attributeList.Clear(); + bool eof = false; + while (true) + { + // Read next line + string line = lineReader.ReadLine(); + 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 + Debug.Assert(!line.StartsWith(" ", StringComparison.Ordinal)); + + // Multiline record starts with two spaces + // Peek at the next line an look for a space + while (true) + { + // There is no PeekLine(), so we only get 1 char look ahead + // -1 is EOF or error, else cast to Char + int peek = lineReader.Peek(); + if (peek == -1 || (char)peek != ' ') + { + // Done + break; + } + + // Append the next line to the current line + string multiLine = lineReader.ReadLine(); + Debug.Assert(multiLine.StartsWith(" ", StringComparison.Ordinal)); + line = $"{line.Trim()} {multiLine.Trim()}"; + } + + // Create attribute pair + int divider = line.IndexOf(':'); + string key = line[..divider]; + string value = line[(divider + 1)..].Trim(); + + // Add to attribute list + _attributeList.Add(new KeyValuePair(key, value)); + } + + return !eof; + } + + public Record GetRecord() + { + Debug.Assert(_attributeList.Count > 0); + Record record = new(); + foreach (KeyValuePair pair in _attributeList) + { + switch (pair.Key.ToLowerInvariant()) + { + 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 = 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 NotImplementedException(); + } + } + Debug.Assert(record.Type != RecordType.None); + Debug.Assert(!string.IsNullOrEmpty(record.Tag) || !string.IsNullOrEmpty(record.SubTag)); + return record; + } + + public DateOnly GetFileDate() + { + KeyValuePair pair = _attributeList.First(); + Debug.Assert(pair.Key.Equals("File-Date", StringComparison.Ordinal)); + return DateFromString(pair.Value); + } + + public static DateOnly DateFromString(string value) => + DateOnly.ParseExact(value, "yyyy-MM-dd", CultureInfo.InvariantCulture); + } + + public enum RecordType + { + None, + Language, + ExtLanguage, + Script, + Variant, + Grandfathered, + Region, + Redundant, + } + + public class Record + { + public RecordType Type { get; set; } = RecordType.None; + public string SubTag { get; set; } = ""; + public List Description { get; set; } = []; + public DateOnly Added { get; set; } = DateOnly.MinValue; + public string SuppressScript { get; set; } = ""; + public string Scope { get; set; } = ""; + public string MacroLanguage { get; set; } = ""; + public DateOnly Deprecated { get; set; } = DateOnly.MinValue; + public List Comments { get; set; } = []; + public List Prefix { get; set; } = []; + public string PreferredValue { get; set; } = ""; + public string Tag { get; set; } = ""; + + public string TagAny => string.IsNullOrEmpty(SubTag) ? Tag : SubTag; + } + + public DateOnly FileDate { get; private set; } = DateOnly.MinValue; + public List RecordList { get; private set; } = []; + + private static RecordType TypeFromString(string value) => + value.ToLower(CultureInfo.InvariantCulture) switch + { + "language" => RecordType.Language, + "extlang" => RecordType.ExtLanguage, + "script" => RecordType.Script, + "variant" => RecordType.Variant, + "grandfathered" => RecordType.Grandfathered, + "region" => RecordType.Region, + "redundant" => RecordType.Redundant, + _ => throw new NotImplementedException(), + }; + + /// + /// Finds a in the RecordList that matches the specified language tag or description. + /// The search is performed in the following order: Tag, SubTag, PreferredValue, and optionally Description (exact and partial match). + /// + /// + /// The language tag or description to search for. The search is case-insensitive and will match against the Tag, SubTag, PreferredValue, and optionally Description fields. + /// + /// + /// If set to true, the method will also search for matches in the Description field (both exact and partial matches). + /// + /// + /// The first matching if found; otherwise, null. + /// + public Record Find(string languageTag, bool includeDescription) + { + // Find the matching language entry + Record record = null; + + // Tag + record = RecordList.FirstOrDefault(item => + item.Tag.Equals(languageTag, StringComparison.OrdinalIgnoreCase) + ); + if (record != null) + { + return record; + } + + // SubTag + record = RecordList.FirstOrDefault(item => + item.SubTag.Equals(languageTag, StringComparison.OrdinalIgnoreCase) + ); + if (record != null) + { + return record; + } + + // PreferredValue + record = RecordList.FirstOrDefault(item => + item.PreferredValue.Equals(languageTag, StringComparison.OrdinalIgnoreCase) + ); + if (record != null) + { + return record; + } + + // Description + if (includeDescription) + { + // Exact match + record = RecordList.FirstOrDefault(item => + item.Description.Any(description => + description.Equals(languageTag, StringComparison.OrdinalIgnoreCase) + ) + ); + if (record != null) + { + return record; + } + + // Partial match + record = RecordList.FirstOrDefault(item => + item.Description.Any(description => + description.Contains(languageTag, StringComparison.OrdinalIgnoreCase) + ) + ); + if (record != null) + { + return record; + } + } + + // Not found + return null; + } +} diff --git a/LanguageTags/Rfc5646Gen.cs b/LanguageTags/Rfc5646Gen.cs new file mode 100644 index 0000000..b64df9f --- /dev/null +++ b/LanguageTags/Rfc5646Gen.cs @@ -0,0 +1,140343 @@ +// This file is generated by LanguageTags.Rfc5646.GenCode + +using System; + +namespace ptr727.LanguageTags; + +public partial class Rfc5646 +{ + public static Rfc5646 Create() + { + Rfc5646 rfc5646 = new() { FileDate = new DateOnly(2025, 5, 15) }; + Record record; + + record = new() + { + Type = RecordType.Language, + SubTag = "aa", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Afar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ab", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Cyrl", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Abkhazian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ae", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Avestan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "af", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Latn", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Afrikaans"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ak", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "macrolanguage", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Akan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "am", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Ethi", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Amharic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "an", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Aragonese"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ar", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Arab", + Scope = "macrolanguage", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Arabic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "as", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Beng", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Assamese"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "av", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Avaric"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ay", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Latn", + Scope = "macrolanguage", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Aymara"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "az", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "macrolanguage", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Azerbaijani"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ba", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bashkir"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "be", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Cyrl", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Belarusian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bg", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Cyrl", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bulgarian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bh", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bihari languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bi", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bislama"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bm", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bambara"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bn", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Beng", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bengali"); + record.Description.Add(@"Bangla"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bo", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tibetan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "br", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Breton"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bs", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Latn", + Scope = "", + MacroLanguage = "sh", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bosnian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ca", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Latn", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Catalan"); + record.Description.Add(@"Valencian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ce", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chechen"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ch", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Latn", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chamorro"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "co", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Corsican"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cr", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "macrolanguage", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cree"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cs", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Latn", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Czech"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cu", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Church Slavic"); + record.Description.Add(@"Church Slavonic"); + record.Description.Add(@"Old Bulgarian"); + record.Description.Add(@"Old Church Slavonic"); + record.Description.Add(@"Old Slavonic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cv", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chuvash"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cy", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Latn", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Welsh"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "da", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Latn", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Danish"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "de", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Latn", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"German"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dv", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Thaa", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dhivehi"); + record.Description.Add(@"Divehi"); + record.Description.Add(@"Maldivian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dz", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Tibt", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dzongkha"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ee", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ewe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "el", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Grek", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Modern Greek (1453-)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "en", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Latn", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"English"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "eo", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Latn", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Esperanto"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "es", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Latn", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Spanish"); + record.Description.Add(@"Castilian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "et", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Latn", + Scope = "macrolanguage", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Estonian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "eu", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Latn", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Basque"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "fa", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Arab", + Scope = "macrolanguage", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Persian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ff", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "macrolanguage", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Fulah"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "fi", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Latn", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Finnish"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "fj", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Latn", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Fijian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "fo", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Latn", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Faroese"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "fr", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Latn", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"French"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "fy", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Latn", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Western Frisian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ga", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Latn", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Irish"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gd", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Scottish Gaelic"); + record.Description.Add(@"Gaelic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gl", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Latn", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Galician"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gn", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Latn", + Scope = "macrolanguage", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Guarani"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gu", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Gujr", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gujarati"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gv", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Latn", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Manx"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ha", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hausa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "he", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Hebr", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hebrew"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hi", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Deva", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hindi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ho", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hiri Motu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hr", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Latn", + Scope = "", + MacroLanguage = "sh", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Croatian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ht", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Latn", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Haitian"); + record.Description.Add(@"Haitian Creole"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hu", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Latn", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hungarian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hy", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Armn", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Armenian"); + record.Comments.Add(@"see also hyw"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hz", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Herero"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ia", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Interlingua (International Auxiliary Language Association)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "id", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Latn", + Scope = "", + MacroLanguage = "ms", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Indonesian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ie", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Interlingue"); + record.Description.Add(@"Occidental"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ig", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Igbo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ii", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sichuan Yi"); + record.Description.Add(@"Nuosu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ik", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "macrolanguage", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Inupiaq"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "in", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Latn", + Scope = "", + MacroLanguage = "ms", + Deprecated = new DateOnly(1989, 1, 1), + PreferredValue = "id", + Tag = "", + }; + record.Description.Add(@"Indonesian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "io", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ido"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "is", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Latn", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Icelandic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "it", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Latn", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Italian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "iu", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "macrolanguage", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Inuktitut"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "iw", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Hebr", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1989, 1, 1), + PreferredValue = "he", + Tag = "", + }; + record.Description.Add(@"Hebrew"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ja", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Jpan", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Japanese"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ji", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1989, 1, 1), + PreferredValue = "yi", + Tag = "", + }; + record.Description.Add(@"Yiddish"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jv", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Javanese"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jw", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2001, 8, 13), + PreferredValue = "jv", + Tag = "", + }; + record.Description.Add(@"Javanese"); + record.Comments.Add(@"published by error in Table 1 of ISO 639:1988"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ka", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Geor", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Georgian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kg", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "macrolanguage", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kongo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ki", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kikuyu"); + record.Description.Add(@"Gikuyu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kj", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kuanyama"); + record.Description.Add(@"Kwanyama"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kk", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Cyrl", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kazakh"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kl", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Latn", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kalaallisut"); + record.Description.Add(@"Greenlandic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "km", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Khmr", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Khmer"); + record.Description.Add(@"Central Khmer"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kn", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Knda", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kannada"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ko", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Kore", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Korean"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kr", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "macrolanguage", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kanuri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ks", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kashmiri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ku", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "macrolanguage", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kurdish"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kv", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "macrolanguage", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Komi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kw", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cornish"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ky", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kirghiz"); + record.Description.Add(@"Kyrgyz"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "la", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Latn", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Latin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lb", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Latn", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Luxembourgish"); + record.Description.Add(@"Letzeburgesch"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lg", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ganda"); + record.Description.Add(@"Luganda"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "li", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Limburgan"); + record.Description.Add(@"Limburger"); + record.Description.Add(@"Limburgish"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ln", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Latn", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lingala"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lo", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Laoo", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lao"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lt", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Latn", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lithuanian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lu", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Luba-Katanga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lv", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Latn", + Scope = "macrolanguage", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Latvian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mg", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Latn", + Scope = "macrolanguage", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Malagasy"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mh", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Latn", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Marshallese"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mi", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Maori"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mk", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Cyrl", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Macedonian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ml", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Mlym", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Malayalam"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mn", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "macrolanguage", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mongolian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mo", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Latn", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2008, 11, 22), + PreferredValue = "ro", + Tag = "", + }; + record.Description.Add(@"Moldavian"); + record.Description.Add(@"Moldovan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mr", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Deva", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Marathi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ms", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Latn", + Scope = "macrolanguage", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Malay (macrolanguage)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mt", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Latn", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Maltese"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "my", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Mymr", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Burmese"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "na", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Latn", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nauru"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nb", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Latn", + Scope = "", + MacroLanguage = "no", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Norwegian Bokmål"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nd", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Latn", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"North Ndebele"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ne", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Deva", + Scope = "macrolanguage", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nepali (macrolanguage)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ng", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ndonga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nl", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Latn", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dutch"); + record.Description.Add(@"Flemish"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nn", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Latn", + Scope = "", + MacroLanguage = "no", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Norwegian Nynorsk"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "no", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Latn", + Scope = "macrolanguage", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Norwegian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nr", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Latn", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"South Ndebele"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nv", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Navajo"); + record.Description.Add(@"Navaho"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ny", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Latn", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nyanja"); + record.Description.Add(@"Chewa"); + record.Description.Add(@"Chichewa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "oc", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Occitan (post 1500)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "oj", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "macrolanguage", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ojibwa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "om", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Latn", + Scope = "macrolanguage", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Oromo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "or", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Orya", + Scope = "macrolanguage", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Oriya (macrolanguage)"); + record.Description.Add(@"Odia (macrolanguage)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "os", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ossetian"); + record.Description.Add(@"Ossetic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pa", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Guru", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Panjabi"); + record.Description.Add(@"Punjabi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pi", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pali"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pl", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Latn", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Polish"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ps", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Arab", + Scope = "macrolanguage", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pushto"); + record.Description.Add(@"Pashto"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pt", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Latn", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Portuguese"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "qu", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Latn", + Scope = "macrolanguage", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Quechua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rm", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Latn", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Romansh"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rn", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Latn", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Rundi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ro", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Latn", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Romanian"); + record.Description.Add(@"Moldavian"); + record.Description.Add(@"Moldovan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ru", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Cyrl", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Russian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rw", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Latn", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kinyarwanda"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sa", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "macrolanguage", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sanskrit"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sc", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "macrolanguage", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sardinian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sd", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sindhi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "se", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Northern Sami"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sg", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Latn", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sango"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sh", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "macrolanguage", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Serbo-Croatian"); + record.Comments.Add(@"sr, hr, bs are preferred for most modern uses"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "si", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Sinh", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sinhala"); + record.Description.Add(@"Sinhalese"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sk", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Latn", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Slovak"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sl", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Latn", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Slovenian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sm", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Latn", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Samoan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sn", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Shona"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "so", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Latn", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Somali"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sq", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Latn", + Scope = "macrolanguage", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Albanian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sr", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "sh", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Serbian"); + record.Comments.Add(@"see cnr for Montenegrin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ss", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Latn", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Swati"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "st", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Latn", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southern Sotho"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "su", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sundanese"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sv", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Latn", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Swedish"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sw", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Latn", + Scope = "macrolanguage", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Swahili (macrolanguage)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ta", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Taml", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tamil"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "te", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Telu", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Telugu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tg", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tajik"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "th", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Thai", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Thai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ti", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Ethi", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tigrinya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tk", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Turkmen"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tl", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Latn", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tagalog"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tn", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Latn", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tswana"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "to", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Latn", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tonga (Tonga Islands)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tr", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Latn", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Turkish"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ts", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Latn", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tsonga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tt", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tatar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tw", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "ak", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Twi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ty", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tahitian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ug", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Uighur"); + record.Description.Add(@"Uyghur"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "uk", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Cyrl", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ukrainian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ur", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Arab", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Urdu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "uz", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "macrolanguage", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Uzbek"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ve", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Latn", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Venda"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "vi", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Latn", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Vietnamese"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "vo", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Volapük"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wa", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Walloon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wo", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wolof"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xh", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Latn", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Xhosa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yi", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Hebr", + Scope = "macrolanguage", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yiddish"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yo", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yoruba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "za", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "macrolanguage", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Zhuang"); + record.Description.Add(@"Chuang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zh", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "macrolanguage", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chinese"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zu", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Latn", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Zulu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aaa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ghotuo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aab", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Alumu-Tesu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aac", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ari"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aad", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Amal"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aae", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "sq", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Arbëreshë Albanian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aaf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Aranadan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aag", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ambrak"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aah", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Abu' Arapesh"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aai", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Arifama-Miniafia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aak", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ankave"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aal", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Afade"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aam", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2015, 2, 12), + PreferredValue = "aas", + Tag = "", + }; + record.Description.Add(@"Aramanik"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aan", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Anambé"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aao", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ar", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Algerian Saharan Arabic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aap", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pará Arára"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aaq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Eastern Abnaki"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aas", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Aasáx"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aat", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "sq", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Arvanitika Albanian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aau", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Abau"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aav", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Austro-Asiatic languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aaw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Solong"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aax", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mandobo Atas"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aaz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Amarasi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aba", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Abé"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "abb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bankon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "abc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ambala Ayta"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "abd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Manide"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "abe", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Western Abnaki"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "abf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Abai Sungai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "abg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Abaga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "abh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ar", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tajiki Arabic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "abi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Abidji"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "abj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Aka-Bea"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "abl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lampung Nyo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "abm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Abanyom"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "abn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Abua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "abo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Abon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "abp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Abellen Ayta"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "abq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Abaza"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "abr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Abron"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "abs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ambonese Malay"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "abt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ambulas"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "abu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Abure"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "abv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ar", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Baharna Arabic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "abw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pal"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "abx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Inabaknon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aby", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Aneme Wake"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "abz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Abui"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aca", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Achagua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "acb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Áncá"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "acd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gikyode"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ace", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Achinese"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "acf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Saint Lucian Creole French"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ach", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Acoli"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aci", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Aka-Cari"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ack", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Aka-Kora"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "acl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Akar-Bale"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "acm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ar", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mesopotamian Arabic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "acn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Achang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "acp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Eastern Acipa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "acq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ar", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ta'izzi-Adeni Arabic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "acr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Achi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "acs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Acroá"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "act", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Achterhoeks"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "acu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Achuar-Shiwiar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "acv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Achumawi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "acw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ar", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hijazi Arabic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "acx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ar", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Omani Arabic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "acy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ar", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cypriot Arabic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "acz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Acheron"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ada", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Adangme"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "adb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Atauran"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "add", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lidzonka"); + record.Description.Add(@"Dzodinka"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ade", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Adele"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "adf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ar", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dhofari Arabic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "adg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Andegerebinha"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "adh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Adhola"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "adi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Adi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "adj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Adioukrou"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "adl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Galo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "adn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Adang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ado", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Abu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "adp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2015, 2, 12), + PreferredValue = "dz", + Tag = "", + }; + record.Description.Add(@"Adap"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "adq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Adangbe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "adr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Adonara"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ads", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Adamorobe Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "adt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Adnyamathanha"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "adu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Aduge"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "adw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Amundava"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "adx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Amdo Tibetan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ady", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Adyghe"); + record.Description.Add(@"Adygei"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "adz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Adzera"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aea", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Areba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aeb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ar", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tunisian Arabic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aec", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ar", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Saidi Arabic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aed", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Argentine Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aee", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Northeast Pashai"); + record.Description.Add(@"Northeast Pashayi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aek", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Haeke"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ael", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ambele"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aem", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Arem"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aen", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Armenian Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aeq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Aer"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aer", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Eastern Arrernte"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aes", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Alsea"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aeu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Akeu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aew", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ambakich"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aey", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Amele"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aez", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Aeka"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "afa", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Afro-Asiatic languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "afb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ar", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gulf Arabic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "afd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Andai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "afe", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Putukwam"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "afg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Afghan Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "afh", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Afrihili"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "afi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Akrukay"); + record.Description.Add(@"Chini"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "afk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nanubae"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "afn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Defaka"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "afo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Eloyi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "afp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tapei"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "afs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Afro-Seminole Creole"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aft", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Afitti"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "afu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Awutu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "afz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Obokuitai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aga", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Aguano"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "agb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Legbo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "agc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Agatu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "agd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Agarabi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "age", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Angal"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "agf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Arguni"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "agg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Angor"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "agh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ngelima"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "agi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Agariya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "agj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Argobba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "agk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Isarog Agta"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "agl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Fembe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "agm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Angaataha"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "agn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Agutaynen"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ago", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tainae"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "agp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2010, 3, 11), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Paranan"); + record.Comments.Add(@"see apf, prf"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "agq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Aghem"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "agr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Aguaruna"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ags", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Esimbi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "agt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Central Cagayan Agta"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "agu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Aguacateco"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "agv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Remontado Dumagat"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "agw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kahua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "agx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Aghul"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "agy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southern Alta"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "agz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mt. Iriga Agta"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aha", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ahanta"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ahb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Axamb"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ahg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Qimant"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ahh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Aghu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ahi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tiagbamrin Aizi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ahk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Akha"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ahl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Igo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ahm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mobumrin Aizi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ahn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Àhàn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aho", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ahom"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ahp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Aproumu Aizi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ahr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ahirani"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ahs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ashe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aht", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ahtena"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aia", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Arosi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aib", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ainu (China)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aic", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ainbai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aid", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Alngith"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aie", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Amara"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aif", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Agi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aig", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Antigua and Barbuda Creole English"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aih", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ai-Cham"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aii", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "syr", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Assyrian Neo-Aramaic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aij", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lishanid Noshan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aik", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ake"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ail", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Aimele"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aim", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Aimol"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ain", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ainu (Japan)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aio", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Aiton"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aip", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Burumakok"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aiq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Aimaq"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "air", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Airoran"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ais", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2019, 4, 16), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nataoran Amis"); + record.Comments.Add(@"see ami, szy"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ait", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Arikem"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aiw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Aari"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aix", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Aighon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aiy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ali"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aja", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Aja (South Sudan)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ajg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Aja (Benin)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aji", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ajië"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ajn", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Andajin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ajp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ar", + Deprecated = new DateOnly(2023, 3, 17), + PreferredValue = "apc", + Tag = "", + }; + record.Description.Add(@"South Levantine Arabic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ajs", + Added = new DateOnly(2022, 2, 25), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Algerian Jewish Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ajt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "jrb", + Deprecated = new DateOnly(2022, 2, 25), + PreferredValue = "aeb", + Tag = "", + }; + record.Description.Add(@"Judeo-Tunisian Arabic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aju", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "jrb", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Judeo-Moroccan Arabic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ajw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ajawa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ajz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Amri Karbi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "akb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Batak Angkola"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "akc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mpur"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "akd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ukpet-Ehom"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ake", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Akawaio"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "akf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Akpa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "akg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Anakalangu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "akh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Angal Heneng"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aki", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Aiome"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "akj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Aka-Jeru"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "akk", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Akkadian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "akl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Aklanon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "akm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Aka-Bo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ako", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Akurio"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "akp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Siwu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "akq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ak"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "akr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Araki"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aks", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Akaselem"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "akt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Akolet"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aku", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Akum"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "akv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Akhvakh"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "akw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Akwa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "akx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Aka-Kede"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aky", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Aka-Kol"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "akz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Alabama"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ala", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Alago"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "alc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Qawasqar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ald", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Alladian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ale", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Aleut"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "alf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Alege"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "alg", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Algonquian languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "alh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Alawa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ali", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Amaimon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "alj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Alangan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "alk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Alak"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "all", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Allar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "alm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Amblong"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aln", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "sq", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gheg Albanian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "alo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Larike-Wakasihu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "alp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Alune"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "alq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Algonquin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "alr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Alutor"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "als", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "sq", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tosk Albanian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "alt", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southern Altai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "alu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"'Are'are"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "alv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Atlantic-Congo languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "alw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Alaba-K’abeena"); + record.Description.Add(@"Wanbasana"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "alx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Amol"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aly", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Alyawarr"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "alz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Alur"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ama", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Amanayé"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "amb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ambo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "amc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Amahuaca"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ame", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yanesha'"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "amf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hamer-Banna"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "amg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Amurdak"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ami", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Amis"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "amj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Amdang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "amk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ambai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aml", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"War-Jaintia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "amm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ama (Papua New Guinea)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "amn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Amanab"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "amo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Amo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "amp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Alamblak"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "amq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Amahai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "amr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Amarakaeri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ams", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southern Amami-Oshima"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "amt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Amto"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "amu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Guerrero Amuzgo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "amv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ambelau"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "amw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Western Neo-Aramaic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "amx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Anmatyerre"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "amy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ami"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "amz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Atampaya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ana", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Andaqui"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "anb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Andoa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "anc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ngas"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "and", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ansus"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ane", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Xârâcùù"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "anf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Animere"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ang", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Old English (ca. 450-1100)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "anh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nend"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ani", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Andi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "anj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Anor"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ank", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Goemai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "anl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Anu-Hkongso Chin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "anm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Anal"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ann", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Obolo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ano", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Andoque"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "anp", + Added = new DateOnly(2006, 3, 8), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Angika"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "anq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jarawa (India)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "anr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Andh"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ans", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Anserma"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ant", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Antakarinya"); + record.Description.Add(@"Antikarinya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "anu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Anuak"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "anv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Denya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "anw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Anaang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "anx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Andra-Hus"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "any", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Anyin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "anz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Anem"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aoa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Angolar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aob", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Abom"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aoc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pemon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aod", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Andarum"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aoe", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Angal Enen"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aof", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bragat"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aog", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Angoram"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aoh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2020, 3, 28), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Arma"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aoi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Anindilyakwa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aoj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mufian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aok", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Arhö"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aol", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Alor"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aom", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ömie"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aon", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bumbita Arapesh"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aor", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Aore"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aos", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Taikat"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aot", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Atong (India)"); + record.Description.Add(@"A'tong"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aou", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"A'ou"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aox", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Atorada"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aoz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Uab Meto"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "apa", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Apache languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "apb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sa'a"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "apc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ar", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Levantine Arabic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "apd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ar", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sudanese Arabic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ape", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bukiyip"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "apf", + Added = new DateOnly(2010, 3, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pahanan Agta"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "apg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ampanang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aph", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Athpariya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "api", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Apiaká"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "apj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jicarilla Apache"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "apk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kiowa Apache"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "apl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lipan Apache"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "apm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mescalero-Chiricahua Apache"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "apn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Apinayé"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "apo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ambul"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "app", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Apma"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "apq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"A-Pucikwar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "apr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Arop-Lokep"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aps", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Arop-Sissano"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "apt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Apatani"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "apu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Apurinã"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "apv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Alapmunte"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "apw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Western Apache"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "apx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Aputai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "apy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Apalaí"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "apz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Safeyoka"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aqa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Alacalufan languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aqc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Archi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aqd", + Added = new DateOnly(2011, 8, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ampari Dogon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aqg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Arigidi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aqk", + Added = new DateOnly(2021, 2, 20), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Aninka"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aql", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Algic languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aqm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Atohwaim"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aqn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Northern Alta"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aqp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Atakapa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aqr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Arhâ"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aqt", + Added = new DateOnly(2014, 2, 28), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Angaité"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aqz", + Added = new DateOnly(2010, 3, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Akuntsu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "arb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ar", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Standard Arabic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "arc", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Official Aramaic (700-300 BCE)"); + record.Description.Add(@"Imperial Aramaic (700-300 BCE)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ard", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Arabana"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "are", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Western Arrarnta"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "arh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Arhuaco"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ari", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Arikara"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "arj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Arapaso"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ark", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Arikapú"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "arl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Arabela"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "arn", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mapudungun"); + record.Description.Add(@"Mapuche"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aro", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Araona"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "arp", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Arapaho"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "arq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ar", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Algerian Arabic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "arr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Karo (Brazil)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ars", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ar", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Najdi Arabic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "art", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Artificial languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aru", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Aruá (Amazonas State)"); + record.Description.Add(@"Arawá"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "arv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Arbore"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "arw", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Arawak"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "arx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Aruá (Rodonia State)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ary", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ar", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Moroccan Arabic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "arz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ar", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Egyptian Arabic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "asa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Asu (Tanzania)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "asb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Assiniboine"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "asc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Casuarina Coast Asmat"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "asd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2019, 4, 16), + PreferredValue = "snz", + Tag = "", + }; + record.Description.Add(@"Asas"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ase", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"American Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "asf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Auslan"); + record.Description.Add(@"Australian Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "asg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cishingini"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ash", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Abishira"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "asi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Buruwai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "asj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sari"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ask", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ashkun"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "asl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Asilulu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "asn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Xingú Asuriní"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aso", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dano"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "asp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Algerian Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "asq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Austrian Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "asr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Asuri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ass", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ipulo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ast", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Asturian"); + record.Description.Add(@"Asturleonese"); + record.Description.Add(@"Bable"); + record.Description.Add(@"Leonese"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "asu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tocantins Asurini"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "asv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Asoa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "asw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Australian Aborigines Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "asx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Muratayak"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "asy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yaosakor Asmat"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "asz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"As"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ata", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pele-Ata"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "atb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Zaiwa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "atc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Atsahuaca"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "atd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ata Manobo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ate", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Atemble"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "atg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ivbie North-Okpela-Arhe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ath", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Athapascan languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ati", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Attié"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "atj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Atikamekw"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "atk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ati"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "atl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mt. Iraya Agta"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "atm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ata"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "atn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ashtiani"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ato", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Atong (Cameroon)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "atp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pudtol Atta"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "atq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Aralle-Tabulahan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "atr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Waimiri-Atroari"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ats", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gros Ventre"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "att", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pamplona Atta"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "atu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Reel"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "atv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Northern Altai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "atw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Atsugewi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "atx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Arutani"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aty", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Aneityum"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "atz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Arta"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aua", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Asumboa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aub", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Alugu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "auc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Waorani"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aud", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Anuta"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aue", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2015, 2, 12), + PreferredValue = "ktz", + Tag = "", + }; + record.Description.Add(@"ǂKxʼauǁʼein"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "auf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Arauan languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aug", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Aguna"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "auh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Aushi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aui", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Anuki"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "auj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Awjilah"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "auk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Heyo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aul", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Aulua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aum", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Asu (Nigeria)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aun", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Molmo One"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "auo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Auyokawa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aup", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Makayam"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "auq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Anus"); + record.Description.Add(@"Korur"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aur", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Aruek"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aus", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Australian languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aut", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Austral"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "auu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Auye"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "auw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Awyi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aux", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Aurá"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "auy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Awiyaana"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "auz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ar", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Uzbeki Arabic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "avb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Avau"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "avd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Alviri-Vidari"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "avi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Avikam"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "avk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kotava"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "avl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ar", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Eastern Egyptian Bedawi Arabic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "avm", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Angkamuthi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "avn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Avatime"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "avo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Agavotaguerra"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "avs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Aushiri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "avt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Au"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "avu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Avokaya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "avv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Avá-Canoeiro"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "awa", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Awadhi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "awb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Awa (Papua New Guinea)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "awc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cicipu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "awd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Arawakan languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "awe", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Awetí"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "awg", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Anguthimri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "awh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Awbono"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "awi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Aekyom"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "awk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Awabakal"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "awm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Arawum"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "awn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Awngi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "awo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Awak"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "awr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Awera"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aws", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"South Awyu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "awt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Araweté"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "awu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Central Awyu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "awv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jair Awyu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aww", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Awun"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "awx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Awara"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "awy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Edera Awyu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "axb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Abipon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "axe", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ayerrerenge"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "axg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mato Grosso Arára"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "axk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yaka (Central African Republic)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "axl", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lower Southern Aranda"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "axm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Middle Armenian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "axx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Xârâgurè"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aya", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Awar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ayb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ayizo Gbe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ayc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ay", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southern Aymara"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ayd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ayabadhu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aye", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ayere"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ayg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ginyanga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ayh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ar", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hadrami Arabic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ayi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Leyigha"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ayk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Akuku"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ayl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ar", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Libyan Arabic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ayn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ar", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sanaani Arabic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ayo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ayoreo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ayp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ar", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"North Mesopotamian Arabic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ayq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ayi (Papua New Guinea)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ayr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ay", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Central Aymara"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ays", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sorsogon Ayta"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ayt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Magbukun Ayta"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ayu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ayu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ayx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2011, 8, 16), + PreferredValue = "nun", + Tag = "", + }; + record.Description.Add(@"Ayi (China)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ayy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2020, 3, 28), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tayabas Ayta"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ayz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mai Brat"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "aza", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Azha"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "azb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "az", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"South Azerbaijani"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "azc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Uto-Aztecan languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "azd", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Eastern Durango Nahuatl"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "azg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"San Pedro Amuzgos Amuzgo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "azj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "az", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"North Azerbaijani"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "azm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ipalapa Amuzgo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "azn", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Western Durango Nahuatl"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "azo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Awing"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "azt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Faire Atta"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "azz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Highland Puebla Nahuatl"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "baa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Babatana"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bab", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bainouk-Gunyuño"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bac", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Badui"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bad", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Banda languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bae", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Baré"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "baf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nubaca"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bag", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tuki"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bah", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bahamas Creole English"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bai", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bamileke languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "baj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Barakai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bal", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "macrolanguage", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Baluchi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ban", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Balinese"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bao", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Waimaha"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bap", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bantawa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bar", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bavarian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bas", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Basa (Cameroon)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bat", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Baltic languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bau", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bada (Nigeria)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bav", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Vengo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "baw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bambili-Bambui"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bax", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bamun"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bay", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Batuley"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "baz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2012, 8, 12), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tunen"); + record.Comments.Add(@"see nvo, tvu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bba", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Baatonum"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bbb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Barai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bbc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Batak Toba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bbd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bau"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bbe", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bangba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bbf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Baibai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bbg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Barama"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bbh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bugan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bbi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Barombi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bbj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ghomálá'"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bbk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Babanki"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bbl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bats"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bbm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Babango"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bbn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Uneapa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bbo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Northern Bobo Madaré"); + record.Description.Add(@"Konabéré"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bbp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"West Central Banda"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bbq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bamali"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bbr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Girawa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bbs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bakpinka"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bbt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mburku"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bbu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kulung (Nigeria)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bbv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Karnai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bbw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Baba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bbx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bubia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bby", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Befang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bbz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ar", + Deprecated = new DateOnly(2020, 3, 28), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Babalia Creole Arabic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bca", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Central Bai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bcb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bainouk-Samik"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bcc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "bal", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southern Balochi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bcd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"North Babar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bce", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bamenyam"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bcf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bamu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bcg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Baga Pokur"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bch", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bariai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bci", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Baoulé"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bcj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bardi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bck", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bunuba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bcl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "bik", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Central Bikol"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bcm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bannoni"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bcn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bali (Nigeria)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bco", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kaluli"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bcp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bali (Democratic Republic of Congo)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bcq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bench"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bcr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Babine"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bcs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kohumono"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bct", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bendi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bcu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Awad Bing"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bcv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Shoo-Minda-Nye"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bcw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bana"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bcy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bacama"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bcz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bainouk-Gunyaamolo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bda", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bayot"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bdb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Basap"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bdc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Emberá-Baudó"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bdd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bunama"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bde", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bade"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bdf", + Added = new DateOnly(2010, 3, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Biage"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bdg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bonggi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bdh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Baka (South Sudan)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bdi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Burun"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bdj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bai (South Sudan)"); + record.Description.Add(@"Bai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bdk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Budukh"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bdl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Indonesian Bajau"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bdm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Buduma"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bdn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Baldemu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bdo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Morom"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bdp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bende"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bdq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bahnar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bdr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"West Coast Bajau"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bds", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Burunge"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bdt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "gba", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bokoto"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bdu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Oroko"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bdv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bodo Parja"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bdw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Baham"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bdx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Budong-Budong"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bdy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bandjalang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bdz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Badeshi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bea", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Beaver"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "beb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bebele"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bec", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Iceve-Maci"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bed", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bedoanas"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bee", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Byangsi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bef", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Benabena"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "beg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Belait"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "beh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Biali"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bei", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bekati'"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bej", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Beja"); + record.Description.Add(@"Bedawiyet"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bek", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bebeli"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bem", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bemba (Zambia)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "beo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Beami"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bep", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Besoa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "beq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Beembe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ber", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Berber languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bes", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Besme"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bet", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Guiberoua Béte"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "beu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Blagar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bev", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Daloa Bété"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bew", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Betawi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bex", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jur Modo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bey", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Beli (Papua New Guinea)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bez", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bena (Tanzania)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bfa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bari"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bfb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pauri Bareli"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bfc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Panyi Bai"); + record.Description.Add(@"Northern Bai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bfd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bafut"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bfe", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Betaf"); + record.Description.Add(@"Tena"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bff", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bofi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bfg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Busang Kayan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bfh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Blafe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bfi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"British Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bfj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bafanji"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bfk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ban Khor Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bfl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Banda-Ndélé"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bfm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mmen"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bfn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bunak"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bfo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Malba Birifor"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bfp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Beba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bfq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Badaga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bfr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bazigar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bfs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southern Bai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bft", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Balti"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bfu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gahri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bfw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bondo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bfx", + Added = new DateOnly(2010, 3, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bantayanon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bfy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bagheli"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bfz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mahasu Pahari"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bga", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gwamhi-Wuri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bgb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bobongko"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bgc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Haryanvi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bgd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Rathwi Bareli"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bge", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bauria"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bgf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bangandu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bgg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bugun"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bgi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Giangan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bgj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bangolan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bgk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bit"); + record.Description.Add(@"Buxinhua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bgl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bo (Laos)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bgm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2016, 5, 30), + PreferredValue = "bcg", + Tag = "", + }; + record.Description.Add(@"Baga Mboteni"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bgn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "bal", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Western Balochi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bgo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Baga Koga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bgp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "bal", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Eastern Balochi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bgq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "raj", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bagri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bgr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bawm Chin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bgs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tagabawa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bgt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bughotu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bgu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mbongno"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bgv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Warkay-Bipim"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bgw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bhatri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bgx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Balkan Gagauz Turkish"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bgy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Benggoi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bgz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Banggai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bha", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bharia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bhb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bhili"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bhc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Biga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bhd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bhadrawahi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bhe", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bhaya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bhf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Odiai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bhg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Binandere"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bhh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bukharic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bhi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bhilali"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bhj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bahing"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bhk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "bik", + Deprecated = new DateOnly(2010, 3, 11), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Albay Bicolano"); + record.Comments.Add(@"see fbl, lbl, rbl, ubl"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bhl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bimin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bhm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bathari"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bhn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bohtan Neo-Aramaic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bho", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bhojpuri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bhp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bima"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bhq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tukang Besi South"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bhr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "mg", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bara Malagasy"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bhs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Buwal"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bht", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bhattiyali"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bhu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bhunjia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bhv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bahau"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bhw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Biak"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bhx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bhalay"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bhy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bhele"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bhz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bada (Indonesia)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bia", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Badimaya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bib", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bissa"); + record.Description.Add(@"Bisa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bic", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2021, 2, 20), + PreferredValue = "bir", + Tag = "", + }; + record.Description.Add(@"Bikaru"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bid", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bidiyo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bie", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bepour"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bif", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Biafada"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "big", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Biangai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bij", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2021, 2, 20), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Vaghat-Ya-Bijim-Legeri"); + record.Comments.Add(@"see dkg, jbm, tyy"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bik", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "macrolanguage", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bikol"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bil", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bile"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bim", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bimoba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bin", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bini"); + record.Description.Add(@"Edo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bio", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bip", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bila"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "biq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bipi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bir", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bisorio"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bit", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Berinomo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "biu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Biete"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "biv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southern Birifor"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "biw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kol (Cameroon)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bix", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bijori"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "biy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Birhor"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "biz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Baloi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bja", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Budza"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bjb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Banggarla"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bjc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bariji"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bjd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2012, 8, 12), + PreferredValue = "drl", + Tag = "", + }; + record.Description.Add(@"Bandjigali"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bje", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Biao-Jiao Mien"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bjf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Barzani Jewish Neo-Aramaic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bjg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bidyogo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bjh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bahinemo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bji", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Burji"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bjj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kanauji"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bjk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Barok"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bjl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bulu (Papua New Guinea)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bjm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bajelani"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bjn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ms", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Banjar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bjo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mid-Southern Banda"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bjp", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Fanamaket"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bjq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "mg", + Deprecated = new DateOnly(2011, 8, 16), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southern Betsimisaraka Malagasy"); + record.Comments.Add(@"see bzc, tkg"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bjr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Binumarien"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bjs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bajan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bjt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Balanta-Ganja"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bju", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Busuu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bjv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bedjond"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bjw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bakwé"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bjx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Banao Itneg"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bjy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bayali"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bjz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Baruga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bka", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kyak"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bkb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2010, 3, 11), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Finallig"); + record.Comments.Add(@"see ebk, obk"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bkc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Baka (Cameroon)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bkd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Binukid"); + record.Description.Add(@"Talaandig"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bkf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Beeke"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bkg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Buraka"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bkh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bakoko"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bki", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Baki"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bkj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pande"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bkk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Brokskat"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bkl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Berik"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bkm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kom (Cameroon)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bkn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bukitan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bko", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kwa'"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bkp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Boko (Democratic Republic of Congo)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bkq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bakairí"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bkr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bakumpai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bks", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Northern Sorsoganon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bkt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Boloki"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bku", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Buhid"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bkv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bekwarra"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bkw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bekwel"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bkx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Baikeno"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bky", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bokyi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bkz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bungku"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bla", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Siksika"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "blb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bilua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "blc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bella Coola"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bld", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bolango"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ble", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Balanta-Kentohe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "blf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Buol"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "blg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2021, 2, 20), + PreferredValue = "iba", + Tag = "", + }; + record.Description.Add(@"Balau"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "blh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kuwaa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bli", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bolia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "blj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bolongan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "blk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pa'o Karen"); + record.Description.Add(@"Pa'O"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bll", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Biloxi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "blm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Beli (South Sudan)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bln", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "bik", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southern Catanduanes Bikol"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "blo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Anii"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "blp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Blablanga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "blq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Baluan-Pam"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "blr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Blang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bls", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Balaesang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "blt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tai Dam"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "blv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kibala"); + record.Description.Add(@"Bolo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "blw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Balangao"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "blx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mag-Indi Ayta"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bly", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Notre"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "blz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Balantak"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bma", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lame"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bmb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bembe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bmc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Biem"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bmd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Baga Manduri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bme", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Limassa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bmf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bom-Kim"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bmg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bamwe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bmh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kein"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bmi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bagirmi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bmj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bote-Majhi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bmk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ghayavi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bml", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bomboli"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bmm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "mg", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Northern Betsimisaraka Malagasy"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bmn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bina (Papua New Guinea)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bmo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bambalang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bmp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bulgebi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bmq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bomu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bmr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Muinane"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bms", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bilma Kanuri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bmt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Biao Mon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bmu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Somba-Siawari"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bmv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bum"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bmw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bomwali"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bmx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Baimak"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bmy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2015, 2, 12), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bemba (Democratic Republic of Congo)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bmz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Baramu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bna", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bonerate"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bnb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bookan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bnc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "macrolanguage", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bontok"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bnd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Banda (Indonesia)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bne", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bintauna"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bnf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Masiwang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bng", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Benga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bni", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bangi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bnj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Eastern Tawbuid"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bnk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bierebo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bnl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Boon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bnm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Batanga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bnn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bunun"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bno", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bantoanon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bnp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bola"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bnq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bantik"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bnr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Butmas-Tur"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bns", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bundeli"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bnt", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bantu languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bnu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bentong"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bnv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bonerif"); + record.Description.Add(@"Beneraf"); + record.Description.Add(@"Edwas"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bnw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bisis"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bnx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bangubangu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bny", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bintulu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bnz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Beezen"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "boa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bora"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bob", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Aweer"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "boe", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mundabli"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bof", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bolon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bog", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bamako Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "boh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Boma"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "boi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Barbareño"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "boj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Anjam"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bok", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bonjo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bol", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bole"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bom", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Berom"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bon", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bine"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "boo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tiemacèwè Bozo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bop", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bonkiman"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "boq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bogaya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bor", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Borôro"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bot", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bongo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bou", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bondei"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bov", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tuwuli"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bow", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Rema"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "box", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Buamu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "boy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bodo (Central African Republic)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "boz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tiéyaxo Bozo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bpa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Daakaka"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bpb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2020, 3, 28), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Barbacoas"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bpc", + Added = new DateOnly(2022, 2, 25), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mbuk"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bpd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Banda-Banda"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bpe", + Added = new DateOnly(2021, 2, 20), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bauni"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bpg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bonggo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bph", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Botlikh"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bpi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bagupi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bpj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Binji"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bpk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Orowe"); + record.Description.Add(@"'Ôrôê"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bpl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Broome Pearling Lugger Pidgin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bpm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Biyom"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bpn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dzao Min"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bpo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Anasi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bpp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kaure"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bpq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Banda Malay"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bpr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Koronadal Blaan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bps", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sarangani Blaan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bpt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Barrow Point"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bpu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bongu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bpv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bian Marind"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bpw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bo (Papua New Guinea)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bpx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Palya Bareli"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bpy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bishnupriya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bpz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bilba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bqa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tchumbuli"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bqb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bagusa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bqc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Boko (Benin)"); + record.Description.Add(@"Boo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bqd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bung"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bqf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Baga Kaloum"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bqg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bago-Kusuntu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bqh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Baima"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bqi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bakhtiari"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bqj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bandial"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bqk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Banda-Mbrès"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bql", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Karian"); + record.Description.Add(@"Bilakura"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bqm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wumboko"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bqn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bulgarian Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bqo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Balo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bqp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Busa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bqq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Biritai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bqr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Burusu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bqs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bosngun"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bqt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bamukumbit"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bqu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Boguru"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bqv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Koro Wachi"); + record.Description.Add(@"Begbere-Ejar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bqw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Buru (Nigeria)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bqx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Baangi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bqy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bengkala Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bqz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bakaka"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bra", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Braj"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "brb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Brao"); + record.Description.Add(@"Lave"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "brc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Berbice Creole Dutch"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "brd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Baraamu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "brf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bira"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "brg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Baure"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "brh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Brahui"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bri", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mokpwe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "brj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bieria"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "brk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Birked"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "brl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Birwa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "brm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Barambu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "brn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Boruca"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bro", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Brokkat"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "brp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Barapasi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "brq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Breri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "brr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Birao"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "brs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Baras"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "brt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bitare"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bru", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Eastern Bru"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "brv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Western Bru"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "brw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bellari"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "brx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bodo (India)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bry", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Burui"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "brz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bilbil"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bsa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Abinomn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bsb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Brunei Bisaya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bsc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bassari"); + record.Description.Add(@"Oniyan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bse", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wushi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bsf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bauchi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bsg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bashkardi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bsh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kati"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bsi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bassossi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bsj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bangwinji"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bsk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Burushaski"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bsl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Basa-Gumna"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bsm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Busami"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bsn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Barasana-Eduria"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bso", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Buso"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bsp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Baga Sitemu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bsq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bassa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bsr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bassa-Kontagora"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bss", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Akoose"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bst", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Basketo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bsu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bahonsuai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bsv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Baga Sobané"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bsw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Baiso"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bsx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yangkam"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bsy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sabah Bisaya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bta", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bata"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "btb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2010, 3, 11), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Beti (Cameroon)"); + record.Comments.Add(@"see beb, bum, bxp, eto, ewo, fan, mct"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "btc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bati (Cameroon)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "btd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Batak Dairi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bte", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gamo-Ningi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "btf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Birgit"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "btg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gagnoa Bété"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bth", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Biatah Bidayuh"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bti", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Burate"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "btj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ms", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bacanese Malay"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "btk", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Batak languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "btl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2016, 5, 30), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bhatola"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "btm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Batak Mandailing"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "btn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ratagnon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bto", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "bik", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Rinconada Bikol"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "btp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Budibud"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "btq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Batek"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "btr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Baetora"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bts", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Batak Simalungun"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "btt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bete-Bendi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "btu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Batu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "btv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bateri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "btw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Butuanon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "btx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Batak Karo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bty", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bobot"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "btz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Batak Alas-Kluet"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bua", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "macrolanguage", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Buriat"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bub", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "buc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bushi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bud", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ntcham"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bue", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Beothuk"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "buf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bushoong"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bug", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Buginese"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "buh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Younuo Bunu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bui", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bongili"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "buj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Basa-Gurmana"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "buk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bugawac"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bum", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bulu (Cameroon)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bun", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sherbro"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "buo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Terei"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bup", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Busoa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "buq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Brem"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bus", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bokobaru"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "but", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bungain"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "buu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Budu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "buv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bun"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "buw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bubi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bux", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Boghom"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "buy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bullom So"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "buz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bukwen"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bva", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Barein"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bvb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bube"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bvc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Baelelea"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bvd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Baeggu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bve", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ms", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Berau Malay"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bvf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Boor"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bvg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bonkeng"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bvh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bure"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bvi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Belanda Viri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bvj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Baan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bvk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bukat"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bvl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bolivian Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bvm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bamunka"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bvn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Buna"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bvo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bolgo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bvp", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bumang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bvq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Birri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bvr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Burarra"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bvt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bati (Indonesia)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bvu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ms", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bukit Malay"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bvv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Baniva"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bvw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Boga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bvx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dibole"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bvy", + Added = new DateOnly(2010, 3, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Baybayanon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bvz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bauzi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bwa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bwatoo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bwb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Namosi-Naitasiri-Serua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bwc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bwile"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bwd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bwaidoka"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bwe", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bwe Karen"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bwf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Boselewa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bwg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Barwe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bwh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bishuo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bwi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Baniwa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bwj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Láá Láá Bwamu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bwk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bauwaki"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bwl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bwela"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bwm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Biwat"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bwn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wunai Bunu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bwo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Boro (Ethiopia)"); + record.Description.Add(@"Borna (Ethiopia)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bwp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mandobo Bawah"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bwq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southern Bobo Madaré"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bwr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bura-Pabir"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bws", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bomboma"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bwt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bafaw-Balong"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bwu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Buli (Ghana)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bww", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bwa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bwx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bu-Nao Bunu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bwy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cwi Bwamu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bwz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bwisi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bxa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tairaha"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bxb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Belanda Bor"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bxc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Molengue"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bxd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pela"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bxe", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Birale"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bxf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bilur"); + record.Description.Add(@"Minigir"); + record.Comments.Add(@"see also vmg"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bxg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bangala"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bxh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Buhutu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bxi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pirlatapa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bxj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bayungu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bxk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "luy", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bukusu"); + record.Description.Add(@"Lubukusu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bxl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jalkunan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bxm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "bua", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mongolia Buriat"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bxn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Burduna"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bxo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Barikanchi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bxp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bebil"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bxq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Beele"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bxr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "bua", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Russia Buriat"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bxs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Busam"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bxu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "bua", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"China Buriat"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bxv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Berakou"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bxw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bankagooma"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bxx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2015, 2, 12), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Borna (Democratic Republic of Congo)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bxz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Binahari"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bya", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Batak"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "byb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bikya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "byc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ubaghara"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "byd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Benyadu'"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bye", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pouye"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "byf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bete"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "byg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Baygo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "byh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bhujel"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "byi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Buyu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "byj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bina (Nigeria)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "byk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Biao"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "byl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bayono"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bym", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bidjara"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "byn", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bilin"); + record.Description.Add(@"Blin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "byo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Biyo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "byp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bumaji"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "byq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Basay"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "byr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Baruya"); + record.Description.Add(@"Yipma"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bys", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Burak"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "byt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Berti"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "byv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Medumba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "byw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Belhariya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "byx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Qaqet"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "byy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2015, 2, 12), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Buya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "byz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Banaro"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bza", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bandi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bzb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Andio"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bzc", + Added = new DateOnly(2011, 8, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "mg", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southern Betsimisaraka Malagasy"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bzd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bribri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bze", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jenaama Bozo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bzf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Boikin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bzg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Babuza"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bzh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mapos Buang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bzi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bisu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bzj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Belize Kriol English"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bzk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nicaragua Creole English"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bzl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Boano (Sulawesi)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bzm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bolondo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bzn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Boano (Maluku)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bzo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bozaba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bzp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kemberano"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bzq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Buli (Indonesia)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bzr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Biri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bzs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Brazilian Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bzt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Brithenig"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bzu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Burmeso"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bzv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Naami"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bzw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Basa (Nigeria)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bzx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kɛlɛngaxo Bozo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bzy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Obanliku"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "bzz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Evant"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "caa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chortí"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cab", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Garifuna"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cac", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chuj"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cad", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Caddo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cae", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lehar"); + record.Description.Add(@"Laalaa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "caf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southern Carrier"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cag", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nivaclé"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cah", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cahuarano"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cai", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Central American Indian languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "caj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chané"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cak", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kaqchikel"); + record.Description.Add(@"Cakchiquel"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cal", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Carolinian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cam", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cemuhî"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "can", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chambri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cao", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chácobo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cap", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chipaya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "caq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Car Nicobarese"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "car", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Galibi Carib"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cas", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tsimané"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cau", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Caucasian languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cav", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cavineña"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "caw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Callawalla"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cax", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chiquitano"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cay", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cayuga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "caz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Canichana"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cba", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chibchan languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cbb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cabiyarí"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cbc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Carapana"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cbd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Carijona"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cbe", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2016, 5, 30), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chipiajes"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cbg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chimila"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cbh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2016, 5, 30), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cagua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cbi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chachi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cbj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ede Cabe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cbk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chavacano"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cbl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bualkhaw Chin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cbn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nyahkur"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cbo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Izora"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cbq", + Added = new DateOnly(2015, 2, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tsucuba"); + record.Description.Add(@"Cuba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cbr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cashibo-Cacataibo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cbs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cashinahua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cbt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chayahuita"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cbu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Candoshi-Shapra"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cbv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cacua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cbw", + Added = new DateOnly(2010, 3, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kinabalian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cby", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Carabayo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cca", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2020, 3, 28), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cauca"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ccc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chamicuro"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ccd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cafundo Creole"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cce", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chopi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ccg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Samba Daka"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cch", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Atsam"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ccj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kasanga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ccl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cutchi-Swahili"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ccm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Malaccan Creole Malay"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ccn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"North Caucasian languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cco", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Comaltepec Chinantec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ccp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chakma"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ccq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2012, 8, 12), + PreferredValue = "rki", + Tag = "", + }; + record.Description.Add(@"Chaungtha"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ccr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cacaopera"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ccs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"South Caucasian languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cda", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Choni"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cdc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chadic languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cdd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Caddoan languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cde", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chenchu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cdf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chiru"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cdg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2020, 3, 28), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chamari"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cdh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chambeali"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cdi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chodri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cdj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Churahi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cdm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chepang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cdn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chaudangsi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cdo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "zh", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Min Dong Chinese"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cdr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cinda-Regi-Tiyal"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cds", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chadian Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cdy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chadong"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cdz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Koda"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cea", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lower Chehalis"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ceb", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cebuano"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ceg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chamacoco"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cek", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Eastern Khumi Chin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cel", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Celtic languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cen", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cen"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cet", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Centúúm"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cey", + Added = new DateOnly(2019, 4, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ekai Chin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cfa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dijim-Bwilim"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cfd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cara"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cfg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Como Karim"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cfm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Falam Chin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cga", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Changriwa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cgc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kagayanen"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cgg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chiga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cgk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chocangacakha"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "chb", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chibcha"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "chc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Catawba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "chd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Highland Oaxaca Chontal"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "chf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tabasco Chontal"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "chg", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chagatai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "chh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chinook"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "chj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ojitlán Chinantec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "chk", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chuukese"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "chl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cahuilla"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "chm", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "macrolanguage", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mari (Russia)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "chn", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chinook jargon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cho", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Choctaw"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "chp", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chipewyan"); + record.Description.Add(@"Dene Suline"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "chq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Quiotepec Chinantec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "chr", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cherokee"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cht", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cholón"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "chw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chuwabu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "chx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chantyal"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "chy", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cheyenne"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "chz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ozumacín Chinantec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cia", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cia-Cia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cib", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ci Gbe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cic", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chickasaw"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cid", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chimariko"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cie", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cineni"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cih", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chinali"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cik", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chitkuli Kinnauri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cim", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cimbrian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cin", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cinta Larga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cip", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chiapanec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cir", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tiri"); + record.Description.Add(@"Haméa"); + record.Description.Add(@"Méa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ciw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "oj", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chippewa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ciy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chaima"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cja", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Western Cham"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cje", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chru"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cjh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Upper Chehalis"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cji", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chamalal"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cjk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chokwe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cjm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Eastern Cham"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cjn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chenapian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cjo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ashéninka Pajonal"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cjp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cabécar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cjr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2010, 3, 11), + PreferredValue = "mom", + Tag = "", + }; + record.Description.Add(@"Chorotega"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cjs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Shor"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cjv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chuave"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cjy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "zh", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jinyu Chinese"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cka", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2012, 8, 12), + PreferredValue = "cmr", + Tag = "", + }; + record.Description.Add(@"Khumi Awa Chin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ckb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ku", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Central Kurdish"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ckh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chak"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ckl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cibak"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ckm", + Added = new DateOnly(2020, 3, 28), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chakavian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ckn", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kaang Chin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cko", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Anufo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ckq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kajakse"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ckr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kairak"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cks", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tayo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ckt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chukot"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cku", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Koasati"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ckv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kavalan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ckx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Caka"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cky", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cakfem-Mushere"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ckz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cakchiquel-Quiché Mixed Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cla", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ron"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "clc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chilcotin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cld", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "syr", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chaldean Neo-Aramaic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cle", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lealao Chinantec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "clh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chilisso"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cli", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chakali"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "clj", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Laitu Chin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "clk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Idu-Mishmi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cll", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chala"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "clm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Clallam"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "clo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lowland Oaxaca Chontal"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cls", + Added = new DateOnly(2024, 3, 4), + SuppressScript = "", + Scope = "", + MacroLanguage = "sa", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Classical Sanskrit"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "clt", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lautu Chin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "clu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Caluyanun"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "clw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chulym"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cly", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Eastern Highland Chatino"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cma", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Maa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cmc", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chamic languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cme", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cerma"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cmg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Classical Mongolian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cmi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Emberá-Chamí"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cmk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2010, 3, 11), + PreferredValue = "xch", + Tag = "", + }; + record.Description.Add(@"Chimakum"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cml", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Campalagian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cmm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Michigamea"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cmn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "zh", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mandarin Chinese"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cmo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Central Mnong"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cmr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mro-Khimi Chin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cms", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Messapic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cmt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Camtho"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cna", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Changthang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cnb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chinbon Chin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cnc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Côông"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cng", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Northern Qiang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cnh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hakha Chin"); + record.Description.Add(@"Haka Chin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cni", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Asháninka"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cnk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Khumi Chin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cnl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lalana Chinantec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cno", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Con"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cnp", + Added = new DateOnly(2020, 3, 28), + SuppressScript = "", + Scope = "", + MacroLanguage = "zh", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Northern Ping Chinese"); + record.Description.Add(@"Northern Pinghua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cnq", + Added = new DateOnly(2022, 2, 25), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chung"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cnr", + Added = new DateOnly(2018, 1, 23), + SuppressScript = "", + Scope = "", + MacroLanguage = "sh", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Montenegrin"); + record.Comments.Add(@"see sr for Serbian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cns", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Central Asmat"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cnt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tepetotutla Chinantec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cnu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chenoua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cnw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ngawn Chin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cnx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Middle Cornish"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "coa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ms", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cocos Islands Malay"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cob", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chicomuceltec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "coc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cocopa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cod", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cocama-Cocamilla"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "coe", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Koreguaje"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cof", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Colorado"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cog", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chong"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "coh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chonyi-Dzihana-Kauma"); + record.Description.Add(@"Chichonyi-Chidzihana-Chikauma"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "coj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cochimi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cok", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Santa Teresa Cora"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "col", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Columbia-Wenatchi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "com", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Comanche"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "con", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cofán"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "coo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Comox"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cop", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Coptic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "coq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Coquille"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cot", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Caquinte"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cou", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wamey"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cov", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cao Miao"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cow", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cowlitz"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cox", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nanti"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "coy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2016, 5, 30), + PreferredValue = "pij", + Tag = "", + }; + record.Description.Add(@"Coyaima"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "coz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chochotec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cpa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Palantla Chinantec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cpb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ucayali-Yurúa Ashéninka"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cpc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ajyíninka Apurucayali"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cpe", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"English-based creoles and pidgins"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cpf", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"French-based creoles and pidgins"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cpg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cappadocian Greek"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cpi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chinese Pidgin English"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cpn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cherepon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cpo", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kpeego"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cpp", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Portuguese-based creoles and pidgins"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cps", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Capiznon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cpu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pichis Ashéninka"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cpx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "zh", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pu-Xian Chinese"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cpy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"South Ucayali Ashéninka"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cqd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "hmn", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chuanqiandian Cluster Miao"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cqu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "qu", + Deprecated = new DateOnly(2016, 5, 30), + PreferredValue = "quh", + Tag = "", + }; + record.Description.Add(@"Chilean Quechua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cra", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chara"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "crb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Island Carib"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "crc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lonwolwol"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "crd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Coeur d'Alene"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "crf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Caramanta"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "crg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Michif"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "crh", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Crimean Tatar"); + record.Description.Add(@"Crimean Turkish"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cri", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sãotomense"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "crj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "cr", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southern East Cree"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "crk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "cr", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Plains Cree"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "crl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "cr", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Northern East Cree"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "crm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "cr", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Moose Cree"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "crn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"El Nayar Cora"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cro", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Crow"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "crp", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Creoles and pidgins"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "crq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Iyo'wujwa Chorote"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "crr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Carolina Algonquian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "crs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Seselwa Creole French"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "crt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Iyojwa'ja Chorote"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "crv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chaura"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "crw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chrau"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "crx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Carrier"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cry", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cori"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "crz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cruzeño"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "csa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chiltepec Chinantec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "csb", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kashubian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "csc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Catalan Sign Language"); + record.Description.Add(@"Lengua de señas catalana"); + record.Description.Add(@"Llengua de Signes Catalana"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "csd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chiangmai Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cse", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Czech Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "csf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cuba Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "csg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chilean Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "csh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Asho Chin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "csi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Coast Miwok"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "csj", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Songlai Chin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "csk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jola-Kasa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "csl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chinese Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "csm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Central Sierra Miwok"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "csn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Colombian Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cso", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sochiapam Chinantec"); + record.Description.Add(@"Sochiapan Chinantec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "csp", + Added = new DateOnly(2020, 3, 28), + SuppressScript = "", + Scope = "", + MacroLanguage = "zh", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southern Ping Chinese"); + record.Description.Add(@"Southern Pinghua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "csq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Croatia Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "csr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Costa Rican Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "css", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southern Ohlone"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cst", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Northern Ohlone"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "csu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Central Sudanic languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "csv", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sumtu Chin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "csw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "cr", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Swampy Cree"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "csx", + Added = new DateOnly(2021, 2, 20), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cambodian Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "csy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Siyin Chin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "csz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Coos"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cta", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tataltepec Chatino"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ctc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chetco"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ctd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tedim Chin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cte", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tepinapa Chinantec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ctg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chittagonian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cth", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Thaiphum Chin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ctl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tlacoatzintepec Chinantec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ctm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chitimacha"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ctn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chhintange"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cto", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Emberá-Catío"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ctp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Western Highland Chatino"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cts", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "bik", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Northern Catanduanes Bikol"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ctt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wayanad Chetti"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ctu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chol"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cty", + Added = new DateOnly(2021, 2, 20), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Moundadan Chetty"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ctz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Zacatepec Chatino"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cua", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cub", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cubeo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cuc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Usila Chinantec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cug", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2022, 2, 25), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chungmboko"); + record.Description.Add(@"Cung"); + record.Comments.Add(@"see bpc, cnq"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cuh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chuka"); + record.Description.Add(@"Gichuka"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cui", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cuiba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cuj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mashco Piro"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cuk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"San Blas Kuna"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cul", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Culina"); + record.Description.Add(@"Kulina"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cum", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2016, 5, 30), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cumeral"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cuo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cumanagoto"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cup", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cupeño"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cuq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cun"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cur", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chhulung"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cus", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cushitic languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cut", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Teutila Cuicatec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cuu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tai Ya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cuv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cuvok"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cuw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chukwa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cux", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tepeuxila Cuicatec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cuy", + Added = new DateOnly(2018, 3, 8), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cuitlatec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cvg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chug"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cvn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Valle Nacional Chinantec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cwa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kabwa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cwb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Maindo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cwd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "cr", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Woods Cree"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cwe", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kwere"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cwg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chewong"); + record.Description.Add(@"Cheq Wong"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cwt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kuwaataay"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cxh", + Added = new DateOnly(2023, 3, 17), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cha'ari"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cya", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nopala Chatino"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cyb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cayubaba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "cyo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cuyonon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "czh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "zh", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Huizhou Chinese"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "czk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Knaanic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "czn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Zenzontepec Chatino"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "czo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "zh", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Min Zhong Chinese"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "czt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Zotung Chin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "daa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dangaléat"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dac", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dambi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dad", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Marik"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dae", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Duupa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "daf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2013, 9, 10), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dan"); + record.Comments.Add(@"see dnj, lda"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dag", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dagbani"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dah", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gwahatike"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dai", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Day"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "daj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dar Fur Daju"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dak", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dakota"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dal", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dahalo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dam", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Damakawa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dao", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Daai Chin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dap", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2012, 8, 12), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nisi (India)"); + record.Comments.Add(@"see njz, tgj"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "daq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dandami Maria"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dar", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dargwa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "das", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Daho-Doo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dau", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dar Sila Daju"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dav", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Taita"); + record.Description.Add(@"Dawida"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "daw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Davawenyo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dax", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dayi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "day", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Land Dayak languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "daz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Moi-Wadea"); + record.Description.Add(@"Dao"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dba", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bangime"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dbb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Deno"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dbd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dadiya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dbe", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dabe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dbf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Edopi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dbg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dogul Dom Dogon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dbi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Doka"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dbj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ida'an"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dbl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dyirbal"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dbm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Duguri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dbn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Duriankere"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dbo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dulbu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dbp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Duwai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dbq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Daba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dbr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dabarre"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dbt", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ben Tey Dogon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dbu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bondum Dom Dogon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dbv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dungu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dbw", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bankan Tey Dogon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dby", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dibiyaso"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dcc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Deccan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dcr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Negerhollands"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dda", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dadi Dadi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ddd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dongotono"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dde", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Doondo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ddg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Fataluku"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ddi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"West Goodenough"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ddj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jaru"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ddn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dendi (Benin)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ddo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dido"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ddr", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dhudhuroa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dds", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Donno So Dogon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ddw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dawera-Daweloor"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dec", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dagik"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ded", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dedua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dee", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dewoin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "def", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dezfuli"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "deg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Degema"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "deh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dehwari"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dei", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Demisa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dek", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2024, 12, 12), + PreferredValue = "sqm", + Tag = "", + }; + record.Description.Add(@"Dek"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "del", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "macrolanguage", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Delaware"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dem", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dem"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "den", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "macrolanguage", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Slave (Athapascan)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dep", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pidgin Delaware"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "deq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dendi (Central African Republic)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "der", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Deori"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "des", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Desano"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dev", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Domung"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dez", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dengese"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dga", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southern Dagaare"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dgb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bunoge Dogon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dgc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Casiguran Dumagat Agta"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dgd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dagaari Dioula"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dge", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Degenan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dgg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Doga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dgh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dghwede"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dgi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Northern Dagara"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dgk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dagba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dgl", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Andaandi"); + record.Description.Add(@"Dongolawi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dgn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dagoman"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dgo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "doi", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dogri (individual language)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dgr", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tlicho"); + record.Description.Add(@"Dogrib"); + record.Description.Add(@"Tłı̨chǫ"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dgs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dogoso"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dgt", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ndra'ngith"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dgu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2020, 3, 28), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Degaru"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dgw", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Daungwurrung"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dgx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Doghoro"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dgz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Daga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dha", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2011, 8, 16), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dhanwar (India)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dhd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "mwr", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dhundari"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dhg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dhangu-Djangu"); + record.Description.Add(@"Dhangu"); + record.Description.Add(@"Djangu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dhi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dhimal"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dhl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dhalandji"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dhm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Zemba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dhn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dhanki"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dho", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dhodia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dhr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dhargari"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dhs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dhaiso"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dhu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dhurga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dhv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dehu"); + record.Description.Add(@"Drehu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dhw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dhanwar (Nepal)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dhx", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dhungaloo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dia", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dib", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "din", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"South Central Dinka"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dic", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lakota Dida"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "did", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Didinga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dif", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dieri"); + record.Description.Add(@"Diyari"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dig", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Digo"); + record.Description.Add(@"Chidigo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dih", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kumiai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dii", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dimbong"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dij", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dik", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "din", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southwestern Dinka"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dil", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dilling"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dim", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dime"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "din", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "macrolanguage", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dinka"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dio", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dibo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dip", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "din", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Northeastern Dinka"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "diq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "zza", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dimli (individual language)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dir", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dirim"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dis", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dimasa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dit", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2019, 4, 29), + PreferredValue = "dif", + Tag = "", + }; + record.Description.Add(@"Dirari"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "diu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Diriku"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "diw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "din", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Northwestern Dinka"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dix", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dixon Reef"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "diy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Diuwe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "diz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ding"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dja", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Djadjawurrung"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "djb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Djinba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "djc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dar Daju Daju"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "djd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Djamindjung"); + record.Description.Add(@"Ngaliwurru"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dje", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Zarma"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "djf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Djangun"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dji", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Djinang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "djj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Djeebbana"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "djk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Eastern Maroon Creole"); + record.Description.Add(@"Businenge Tongo"); + record.Description.Add(@"Nenge"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "djl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2013, 9, 10), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Djiwarli"); + record.Comments.Add(@"see dze, iin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "djm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jamsay Dogon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "djn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jawoyn"); + record.Description.Add(@"Djauan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "djo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jangkang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "djr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Djambarrpuyngu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dju", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kapriman"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "djw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Djawi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dka", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dakpakha"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dkg", + Added = new DateOnly(2021, 2, 20), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kadung"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dkk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dakka"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dkl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2011, 8, 16), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kolum So Dogon"); + record.Comments.Add(@"see aqd, dmb"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dkr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kuijau"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dks", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "din", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southeastern Dinka"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dkx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mazagway"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dlg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dolgan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dlk", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dahalik"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dlm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dalmatian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dln", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Darlong"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dma", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Duma"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dmb", + Added = new DateOnly(2011, 8, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mombo Dogon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dmc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gavak"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dmd", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Madhi Madhi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dme", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dugwor"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dmf", + Added = new DateOnly(2020, 3, 28), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Medefaidrin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dmg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Upper Kinabatangan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dmk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Domaaki"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dml", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dameli"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dmm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dama"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dmn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mande languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dmo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kemedzung"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dmr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"East Damar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dms", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dampelas"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dmu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dubu"); + record.Description.Add(@"Tebi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dmv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dumpas"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dmw", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mudburra"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dmx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dema"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dmy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Demta"); + record.Description.Add(@"Sowari"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dna", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Upper Grand Valley Dani"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dnd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Daonda"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dne", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ndendeule"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dng", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dungan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dni", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lower Grand Valley Dani"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dnj", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dnk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dengka"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dnn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dzùùngoo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dno", + Added = new DateOnly(2018, 10, 28), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ndrulo"); + record.Description.Add(@"Northern Lendu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dnr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Danaru"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dnt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mid Grand Valley Dani"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dnu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Danau"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dnv", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Danu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dnw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Western Dani"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dny", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dení"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "doa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dom"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dob", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dobu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "doc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Northern Dong"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "doe", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Doe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dof", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Domu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "doh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dong"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "doi", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "macrolanguage", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dogri (macrolanguage)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dok", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dondo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dol", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Doso"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "don", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Toura (Papua New Guinea)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "doo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dongo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dop", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lukpa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "doq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dominican Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dor", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dori'o"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dos", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dogosé"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dot", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dass"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dov", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dombe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dow", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Doyayo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dox", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bussa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "doy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dompo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "doz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dorze"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dpp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Papar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dra", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dravidian languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "drb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dair"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "drc", + Added = new DateOnly(2011, 8, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Minderico"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "drd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Darmiya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dre", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dolpo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "drg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Rungus"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "drh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2010, 3, 11), + PreferredValue = "khk", + Tag = "", + }; + record.Description.Add(@"Darkhat"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dri", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"C'Lela"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "drl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Paakantyi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "drn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"West Damar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dro", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Daro-Matu Melanau"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "drq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dura"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "drr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2020, 3, 28), + PreferredValue = "kzk", + Tag = "", + }; + record.Description.Add(@"Dororo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "drs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gedeo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "drt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Drents"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dru", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Rukai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "drw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2010, 3, 11), + PreferredValue = "prs", + Tag = "", + }; + record.Description.Add(@"Darwazi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dry", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Darai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dsb", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Latn", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lower Sorbian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dse", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dutch Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dsh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Daasanach"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dsi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Disa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dsk", + Added = new DateOnly(2023, 3, 17), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dokshi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dsl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Danish Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dsn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dusner"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dso", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Desiya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dsq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tadaksahak"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dsz", + Added = new DateOnly(2022, 2, 25), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mardin Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dta", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Daur"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dtb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Labuk-Kinabatangan Kadazan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dtd", + Added = new DateOnly(2011, 8, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ditidaht"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dth", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Adithinngithigh"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dti", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ana Tinga Dogon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dtk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tene Kan Dogon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dtm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tomo Kan Dogon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dtn", + Added = new DateOnly(2016, 5, 30), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Daatsʼíin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dto", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tommo So Dogon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dtp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kadazan Dusun"); + record.Description.Add(@"Central Dusun"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dtr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lotud"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dts", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Toro So Dogon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dtt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Toro Tegu Dogon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dtu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tebul Ure Dogon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dty", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "ne", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dotyali"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dua", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Duala"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dub", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dubli"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "duc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Duna"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dud", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2019, 4, 16), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hun-Saare"); + record.Comments.Add(@"see uth, uss"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "due", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Umiray Dumaget Agta"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "duf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dumbea"); + record.Description.Add(@"Drubea"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dug", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Duruma"); + record.Description.Add(@"Chiduruma"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "duh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dungra Bhil"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dui", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dumun"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "duj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2016, 5, 30), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dhuwal"); + record.Comments.Add(@"see dwu, dwy"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "duk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Uyajitaya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dul", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Alabat Island Agta"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dum", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Middle Dutch (ca. 1050-1350)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dun", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dusun Deyah"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "duo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dupaninan Agta"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dup", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ms", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Duano"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "duq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dusun Malang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dur", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dii"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dus", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dumi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "duu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Drung"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "duv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Duvle"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "duw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dusun Witu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dux", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Duungooma"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "duy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dicamay Agta"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "duz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Duli-Gey"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dva", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Duau"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dwa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Diri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dwk", + Added = new DateOnly(2020, 3, 28), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dawik Kui"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dwl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2012, 8, 12), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Walo Kumbe Dogon"); + record.Comments.Add(@"see dbt, dbw"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dwr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dawro"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dws", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dutton World Speedwords"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dwu", + Added = new DateOnly(2016, 5, 30), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dhuwal"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dww", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dawawa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dwy", + Added = new DateOnly(2016, 5, 30), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dhuwaya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dwz", + Added = new DateOnly(2018, 10, 28), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dewas Rai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dya", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dyan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dyb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dyaberdyaber"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dyd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dyugun"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dyg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Villa Viciosa Agta"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dyi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Djimini Senoufo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dym", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yanda Dom Dogon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dyn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dyangadi"); + record.Description.Add(@"Dhanggatti"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dyo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jola-Fonyi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dyr", + Added = new DateOnly(2023, 3, 17), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dyarim"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dyu", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dyula"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dyy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Djabugay"); + record.Description.Add(@"Dyaabugay"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dza", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tunzu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dzd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Daza"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dze", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Djiwarli"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dzg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dazaga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dzl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dzalakha"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "dzn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dzando"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "eaa", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Karenggapa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ebc", + Added = new DateOnly(2020, 3, 28), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Beginci"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ebg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ebughu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ebk", + Added = new DateOnly(2010, 3, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "bnc", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Eastern Bontok"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ebo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Teke-Ebo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ebr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ebrié"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ebu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Embu"); + record.Description.Add(@"Kiembu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ecr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Eteocretan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ecs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ecuadorian Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ecy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Eteocypriot"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "eee", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"E"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "efa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Efai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "efe", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Efe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "efi", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Efik"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ega", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ega"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "egl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Emilian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "egm", + Added = new DateOnly(2022, 2, 25), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Benamanga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ego", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Eggon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "egx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Egyptian languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "egy", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Egyptian (Ancient)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ehs", + Added = new DateOnly(2021, 2, 20), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Miyakubo Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ehu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ehueun"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "eip", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Eipomek"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "eit", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Eitiep"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "eiv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Askopan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "eja", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ejamat"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "eka", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ekajuk"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ekc", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2020, 3, 28), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Eastern Karnic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "eke", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ekit"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ekg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ekari"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "eki", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Eki"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ekk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "et", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Standard Estonian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ekl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kol (Bangladesh)"); + record.Description.Add(@"Kol"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ekm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Elip"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "eko", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Koti"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ekp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ekpeye"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ekr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yace"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "eky", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Eastern Kayah"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ele", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Elepi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "elh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"El Hugeirat"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "eli", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nding"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "elk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Elkei"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "elm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Eleme"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "elo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"El Molo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "elp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2012, 8, 12), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Elpaputih"); + record.Comments.Add(@"see amq, plh"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "elu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Elu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "elx", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Elamite"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ema", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Emai-Iuleha-Ora"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "emb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Embaloh"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "eme", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Emerillon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "emg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Eastern Meohang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "emi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mussau-Emira"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "emk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "man", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Eastern Maninkakan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "emm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mamulique"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "emn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Eman"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "emo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2014, 2, 28), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Emok"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "emp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Northern Emberá"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "emq", + Added = new DateOnly(2021, 2, 20), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Eastern Minyag"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ems", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pacific Gulf Yupik"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "emu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Eastern Muria"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "emw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Emplawas"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "emx", + Added = new DateOnly(2010, 3, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Erromintxela"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "emy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Epigraphic Mayan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "emz", + Added = new DateOnly(2021, 2, 20), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mbessa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ena", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Apali"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "enb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "kln", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Markweeta"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "enc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"En"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "end", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ende"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "enf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Forest Enets"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "enh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tundra Enets"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "enl", + Added = new DateOnly(2014, 2, 28), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Enlhet"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "enm", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Middle English (1100-1500)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "enn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Engenni"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "eno", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Enggano"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "enq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Enga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "enr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Emumu"); + record.Description.Add(@"Emem"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "enu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Enu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "env", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Enwan (Edo State)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "enw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Enwan (Akwa Ibom State)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "enx", + Added = new DateOnly(2014, 2, 28), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Enxet"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "eot", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Beti (Côte d'Ivoire)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "epi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Epie"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "era", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Eravallan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "erg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sie"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "erh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Eruwa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "eri", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ogea"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "erk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"South Efate"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ero", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Horpa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "err", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Erre"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ers", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ersu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ert", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Eritai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "erw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Erokwanas"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ese", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ese Ejja"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "esg", + Added = new DateOnly(2016, 5, 30), + SuppressScript = "", + Scope = "", + MacroLanguage = "gon", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Aheri Gondi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "esh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Eshtehardi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "esi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ik", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"North Alaskan Inupiatun"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "esk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ik", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Northwest Alaska Inupiatun"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "esl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Egypt Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "esm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Esuma"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "esn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Salvadoran Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "eso", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Estonian Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "esq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Esselen"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ess", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Central Siberian Yupik"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "esu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Central Yupik"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "esx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Eskimo-Aleut languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "esy", + Added = new DateOnly(2014, 4, 6), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Eskayan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "etb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Etebi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "etc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Etchemin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "eth", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ethiopian Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "etn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Eton (Vanuatu)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "eto", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Eton (Cameroon)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "etr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Edolo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ets", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yekhee"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ett", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Etruscan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "etu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ejagham"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "etx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Eten"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "etz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Semimi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "eud", + Added = new DateOnly(2023, 3, 17), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Eudeve"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "euq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Basque (family)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "eve", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Even"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "evh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Uvbie"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "evn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Evenki"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ewo", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ewondo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ext", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Extremaduran"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "eya", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Eyak"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "eyo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "kln", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Keiyo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "eza", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ezaa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "eze", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Uzekwe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "faa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Fasu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "fab", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Fa d'Ambu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "fad", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wagi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "faf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Fagani"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "fag", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Finongan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "fah", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Baissa Fali"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "fai", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Faiwol"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "faj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Faita"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "fak", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Fang (Cameroon)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "fal", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"South Fali"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "fam", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Fam"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "fan", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Fang (Equatorial Guinea)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "fap", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Paloor"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "far", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Fataleka"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "fat", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "ak", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Fanti"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "fau", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Fayu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "fax", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Fala"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "fay", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southwestern Fars"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "faz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Northwestern Fars"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "fbl", + Added = new DateOnly(2010, 3, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "bik", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"West Albay Bikol"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "fcs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Quebec Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "fer", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Feroge"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ffi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Foia Foia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ffm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ff", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Maasina Fulfulde"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "fgr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Fongoro"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "fia", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nobiin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "fie", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Fyer"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "fif", + Added = new DateOnly(2020, 6, 8), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Faifi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "fil", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Filipino"); + record.Description.Add(@"Pilipino"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "fip", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Fipa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "fir", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Firan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "fit", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tornedalen Finnish"); + record.Description.Add(@"Meänkieli"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "fiu", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Finno-Ugrian languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "fiw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Fiwaga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "fkk", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kirya-Konzəl"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "fkv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kven Finnish"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "fla", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kalispel-Pend d'Oreille"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "flh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Foau"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "fli", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Fali"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "fll", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"North Fali"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "fln", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Flinders Island"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "flr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Fuliiru"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "fly", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Flaaitaal"); + record.Description.Add(@"Tsotsitaal"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "fmp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Fe'fe'"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "fmu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Far Western Muria"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "fnb", + Added = new DateOnly(2016, 5, 30), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Fanbak"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "fng", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Fanagalo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "fni", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Fania"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "fod", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Foodo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "foi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Foi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "fom", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Foma"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "fon", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Fon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "for", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Fore"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "fos", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Siraya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "fox", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Formosan languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "fpe", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Fernando Po Creole English"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "fqs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Fas"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "frc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cajun French"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "frd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Fordata"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "frk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Frankish"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "frm", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Middle French (ca. 1400-1600)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "fro", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Old French (842-ca. 1400)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "frp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Arpitan"); + record.Description.Add(@"Francoprovençal"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "frq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Forak"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "frr", + Added = new DateOnly(2006, 3, 8), + SuppressScript = "Latn", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Northern Frisian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "frs", + Added = new DateOnly(2006, 3, 8), + SuppressScript = "Latn", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Eastern Frisian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "frt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Fortsenal"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "fse", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Finnish Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "fsl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"French Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "fss", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Finland-Swedish Sign Language"); + record.Description.Add(@"finlandssvenskt teckenspråk"); + record.Description.Add(@"suomenruotsalainen viittomakieli"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "fub", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ff", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Adamawa Fulfulde"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "fuc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ff", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pulaar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "fud", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"East Futuna"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "fue", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ff", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Borgu Fulfulde"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "fuf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ff", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pular"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "fuh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ff", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Western Niger Fulfulde"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "fui", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ff", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bagirmi Fulfulde"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "fuj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ko"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "fum", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Fum"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "fun", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Fulniô"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "fuq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ff", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Central-Eastern Niger Fulfulde"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "fur", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Friulian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "fut", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Futuna-Aniwa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "fuu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Furu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "fuv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ff", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nigerian Fulfulde"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "fuy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Fuyug"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "fvr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Fur"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "fwa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Fwâi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "fwe", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Fwe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gaa", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gab", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gabri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gac", + Added = new DateOnly(2010, 3, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mixed Great Andamanese"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gad", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gaddang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gae", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Guarequena"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gaf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gende"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gag", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gagauz"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gah", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Alekano"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gai", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Borei"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gaj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gadsup"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gak", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gamkonora"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gal", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Galolen"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gam", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kandawo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gan", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "zh", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gan Chinese"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gao", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gants"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gap", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gal"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gaq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gata'"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gar", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Galeya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gas", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Adiwasi Garasia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gat", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kenati"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gau", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mudhili Gadaba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gav", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2010, 3, 11), + PreferredValue = "dev", + Tag = "", + }; + record.Description.Add(@"Gabutamon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gaw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nobonob"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gax", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "om", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Borana-Arsi-Guji Oromo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gay", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gayo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gaz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "om", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"West Central Oromo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gba", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "macrolanguage", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gbaya (Central African Republic)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gbb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kaytetye"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gbc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2012, 8, 12), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Garawa"); + record.Comments.Add(@"see wny, wrk"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gbd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Karajarri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gbe", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Niksek"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gbf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gaikundi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gbg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gbanziri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gbh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Defi Gbe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gbi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Galela"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gbj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bodo Gadaba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gbk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gaddi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gbl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gamit"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gbm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Garhwali"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gbn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mo'da"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gbo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "grb", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Northern Grebo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gbp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "gba", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gbaya-Bossangoa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gbq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "gba", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gbaya-Bozoum"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gbr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gbagyi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gbs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gbesi Gbe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gbu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gagadu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gbv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gbanu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gbw", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gabi-Gabi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gbx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Eastern Xwla Gbe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gby", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gbari"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gbz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Zoroastrian Dari"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gcc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mali"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gcd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ganggalida"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gce", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Galice"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gcf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Guadeloupean Creole French"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gcl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Grenadian Creole English"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gcn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gaina"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gcr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Guianese Creole French"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gct", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Colonia Tovar German"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gda", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "raj", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gade Lohar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gdb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pottangi Ollar Gadaba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gdc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gugu Badhun"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gdd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gedaged"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gde", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gude"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gdf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Guduf-Gava"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gdg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ga'dang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gdh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gadjerawang"); + record.Description.Add(@"Gajirrabeng"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gdi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gundi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gdj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gurdjar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gdk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gadang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gdl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dirasha"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gdm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Laal"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gdn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Umanakaina"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gdo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ghodoberi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gdq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mehri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gdr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wipi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gds", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ghandruk Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gdt", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kungardutyi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gdu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gudu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gdx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Godwari"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gea", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Geruma"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "geb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kire"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gec", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "grb", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gboloo Grebo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ged", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gade"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gef", + Added = new DateOnly(2020, 3, 28), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gerai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "geg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gengle"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "geh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hutterite German"); + record.Description.Add(@"Hutterisch"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gei", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gebe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gej", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gen"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gek", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ywom"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gel", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"ut-Ma'in"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gem", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Germanic languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "geq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Geme"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ges", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Geser-Gorom"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gev", + Added = new DateOnly(2014, 2, 28), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Eviya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gew", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gera"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gex", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Garre"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gey", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Enya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gez", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Geez"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gfk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Patpatar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gft", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gafat"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gfx", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2015, 2, 12), + PreferredValue = "vaj", + Tag = "", + }; + record.Description.Add(@"Mangetti Dune ǃXung"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gga", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gao"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ggb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gbii"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ggd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gugadj"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gge", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gurr-goni"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ggg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gurgula"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ggk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kungarakany"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ggl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ganglau"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ggn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2016, 5, 30), + PreferredValue = "gvr", + Tag = "", + }; + record.Description.Add(@"Eastern Gurung"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ggo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2016, 5, 30), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southern Gondi"); + record.Comments.Add(@"see esg, wsg"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ggr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2013, 9, 10), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Aghu Tharnggalu"); + record.Comments.Add(@"see gtu, ikr"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ggt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gitua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ggu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gagu"); + record.Description.Add(@"Gban"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ggw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gogodala"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gha", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ghadamès"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ghc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hiberno-Scottish Gaelic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ghe", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southern Ghale"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ghh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Northern Ghale"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ghk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Geko Karen"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ghl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ghulfan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ghn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ghanongga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gho", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ghomara"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ghr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ghera"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ghs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Guhu-Samane"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ght", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kuke"); + record.Description.Add(@"Kutang Ghale"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gia", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kija"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gib", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gibanawa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gic", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gail"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gid", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gidar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gie", + Added = new DateOnly(2017, 2, 23), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gaɓogbo"); + record.Description.Add(@"Guébie"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gig", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Goaria"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gih", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Githabul"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gii", + Added = new DateOnly(2021, 2, 20), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Girirra"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gil", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gilbertese"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gim", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gimi (Eastern Highlands)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gin", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hinukh"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gio", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2012, 8, 12), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gelao"); + record.Comments.Add(@"see aou, gqu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gip", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gimi (West New Britain)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "giq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Green Gelao"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gir", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Red Gelao"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gis", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"North Giziga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "git", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gitxsan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "giu", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mulao"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "giw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"White Gelao"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gix", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gilima"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "giy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Giyug"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "giz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"South Giziga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gji", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2021, 2, 20), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Geji"); + record.Comments.Add(@"see gyz, zbu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gjk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kachi Koli"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gjm", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gunditjmara"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gjn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gonja"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gjr", + Added = new DateOnly(2016, 5, 30), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gurindji Kriol"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gju", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "raj", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gujari"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gka", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Guya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gkd", + Added = new DateOnly(2018, 3, 8), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Magɨ (Madang Province)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gke", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ndai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gkn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gokana"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gko", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kok-Nar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gkp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "kpe", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Guinea Kpelle"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gku", + Added = new DateOnly(2015, 2, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"ǂUngkue"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "glb", + Added = new DateOnly(2021, 2, 20), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Belning"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "glc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bon Gula"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gld", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nanai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "glh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Northwest Pashai"); + record.Description.Add(@"Northwest Pashayi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gli", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2020, 3, 28), + PreferredValue = "kzk", + Tag = "", + }; + record.Description.Add(@"Guliguli"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "glj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gula Iro"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "glk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gilaki"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gll", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Garlali"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "glo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Galambu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "glr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Glaro-Twabo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "glu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gula (Chad)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "glw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Glavda"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gly", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gule"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gma", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gambera"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gmb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gula'alaa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gmd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mághdì"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gme", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"East Germanic languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gmg", + Added = new DateOnly(2014, 2, 28), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Magɨyi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gmh", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Middle High German (ca. 1050-1500)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gml", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Middle Low German"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gmm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "gba", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gbaya-Mbodomo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gmn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gimnime"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gmq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"North Germanic languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gmr", + Added = new DateOnly(2020, 3, 28), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mirning"); + record.Description.Add(@"Mirniny"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gmu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gumalu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gmv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gamo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gmw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"West Germanic languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gmx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Magoma"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gmy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mycenaean Greek"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gmz", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mgbolizhia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gna", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kaansa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gnb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gangte"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gnc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Guanche"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gnd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Zulgo-Gemzek"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gne", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ganang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gng", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ngangam"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gnh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lere"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gni", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gooniyandi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gnj", + Added = new DateOnly(2018, 3, 8), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ngen"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gnk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"ǁGana"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gnl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gangulu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gnm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ginuman"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gnn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gumatj"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gno", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "gon", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Northern Gondi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gnq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gana"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gnr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gureng Gureng"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gnt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Guntai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gnu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gnau"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gnw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "gn", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Western Bolivian Guaraní"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gnz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ganzi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "goa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Guro"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gob", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Playero"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "goc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gorakor"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "god", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Godié"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "goe", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gongduk"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gof", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gofa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gog", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gogo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "goh", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Old High German (ca. 750-1050)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "goi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gobasi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "goj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gowlan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gok", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gowli"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gol", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gola"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gom", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "kok", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Goan Konkani"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gon", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "macrolanguage", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gondi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "goo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gone Dau"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gop", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yeretuar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "goq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gorap"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gor", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gorontalo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gos", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gronings"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "got", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gothic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gou", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gavar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gov", + Added = new DateOnly(2022, 2, 25), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Goo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gow", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gorowa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gox", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gobu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "goy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Goundo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "goz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gozarkhani"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gpa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gupa-Abawa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gpe", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ghanaian Pidgin English"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gpn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Taiap"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gqa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ga'anda"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gqi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Guiqiong"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gqn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Guana (Brazil)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gqr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gor"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gqu", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Qau"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gra", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Rajput Garasia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "grb", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "macrolanguage", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Grebo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "grc", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ancient Greek (to 1453)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "grd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Guruntum-Mbaaru"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "grg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Madi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "grh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gbiri-Niragu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gri", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ghari"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "grj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "grb", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southern Grebo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "grk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Greek languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "grm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kota Marudu Talantang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gro", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Groma"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "grq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gorovu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "grr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Taznatit"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "grs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gresi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "grt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Garo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gru", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kistane"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "grv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "grb", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Central Grebo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "grw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gweda"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "grx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Guriaso"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gry", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "grb", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Barclayville Grebo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "grz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Guramalum"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gse", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ghanaian Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gsg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"German Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gsl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gusilay"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gsm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Guatemalan Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gsn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nema"); + record.Description.Add(@"Gusan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gso", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "gba", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southwest Gbaya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gsp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wasembo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gss", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Greek Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gsw", + Added = new DateOnly(2006, 3, 8), + SuppressScript = "Latn", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Swiss German"); + record.Description.Add(@"Alemannic"); + record.Description.Add(@"Alsatian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gta", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Guató"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gti", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2015, 2, 12), + PreferredValue = "nyc", + Tag = "", + }; + record.Description.Add(@"Gbati-ri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gtu", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Aghu-Tharnggala"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gua", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Shiki"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gub", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Guajajára"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "guc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wayuu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gud", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yocoboué Dida"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gue", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gurindji"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "guf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gupapuyngu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gug", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "gn", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Paraguayan Guaraní"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "guh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Guahibo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gui", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "gn", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Eastern Bolivian Guaraní"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "guk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gumuz"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gul", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sea Island Creole English"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gum", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Guambiano"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gun", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "gn", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mbyá Guaraní"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "guo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Guayabero"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gup", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gunwinggu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "guq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Aché"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gur", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Farefare"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gus", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Guinean Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gut", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Maléku Jaíka"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "guu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yanomamö"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "guv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2016, 5, 30), + PreferredValue = "duz", + Tag = "", + }; + record.Description.Add(@"Gey"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "guw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gun"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gux", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gourmanchéma"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "guz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gusii"); + record.Description.Add(@"Ekegusii"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gva", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Guana (Paraguay)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gvc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Guanano"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gve", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Duwet"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gvf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Golin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gvj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Guajá"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gvl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gulay"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gvm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gurmana"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gvn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kuku-Yalanji"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gvo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gavião Do Jiparaná"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gvp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pará Gavião"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gvr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gurung"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gvs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gumawana"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gvy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Guyani"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gwa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mbato"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gwb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gwa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gwc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gawri"); + record.Description.Add(@"Kalami"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gwd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gawwada"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gwe", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gweno"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gwf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gowro"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gwg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Moo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gwi", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gwichʼin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gwj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"ǀGwi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gwm", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Awngthim"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gwn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gwandara"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gwr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gwere"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gwt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gawar-Bati"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gwu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Guwamu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gww", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kwini"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gwx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gxx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wè Southern"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gya", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "gba", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Northwest Gbaya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gyb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Garus"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gyd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kayardild"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gye", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gyem"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gyf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gungabula"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gyg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gbayi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gyi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gyele"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gyl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gayil"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gym", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ngäbere"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gyn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Guyanese Creole English"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gyo", + Added = new DateOnly(2018, 3, 8), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gyalsumdo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gyr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Guarayu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gyy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gunya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gyz", + Added = new DateOnly(2021, 2, 20), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Geji"); + record.Description.Add(@"Gyaazi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gza", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ganza"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gzi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gazi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "gzn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gane"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "haa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Han"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hab", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hanoi Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hac", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gurani"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "had", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hatam"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hae", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "om", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Eastern Oromo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "haf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Haiphong Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hag", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hanga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hah", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hahon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hai", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "macrolanguage", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Haida"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "haj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hajong"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hak", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "zh", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hakka Chinese"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hal", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Halang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ham", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hewa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "han", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hangaza"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hao", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hakö"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hap", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hupla"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "haq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ha"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "har", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Harari"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "has", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Haisla"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hav", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Havu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "haw", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hawaiian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hax", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "hai", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southern Haida"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hay", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Haya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "haz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hazaragi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hba", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hamba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hbb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Huba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hbn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Heiban"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hbo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ancient Hebrew"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hbu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Habu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hca", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Andaman Creole Hindi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hch", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Huichol"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hdn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "hai", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Northern Haida"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hds", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Honduras Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hdy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hadiyya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hea", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "hmn", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Northern Qiandong Miao"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hed", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Herdé"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "heg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Helong"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "heh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hehe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hei", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Heiltsuk"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hem", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hemba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hgm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Haiǁom"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hgw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Haigwai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hhi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hoia Hoia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hhr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kerak"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hhy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hoyahoya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hia", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lamang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hib", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hibito"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hid", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hidatsa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hif", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Fiji Hindi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hig", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kamwe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hih", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pamosu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hii", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hinduri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hij", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hijuk"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hik", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Seit-Kaitetu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hil", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hiligaynon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "him", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Himachali languages"); + record.Description.Add(@"Western Pahari languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hio", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tsoa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hir", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Himarimã"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hit", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hittite"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hiw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hiw"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hix", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hixkaryána"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hji", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ms", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Haji"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hka", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kahe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hke", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hunde"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hkh", + Added = new DateOnly(2021, 2, 20), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Khah"); + record.Description.Add(@"Poguli"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hkk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hunjara-Kaina Ke"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hkn", + Added = new DateOnly(2018, 3, 8), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mel-Khaonh"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hks", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hong Kong Sign Language"); + record.Description.Add(@"Heung Kong Sau Yue"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hla", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Halia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hlb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Halbi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hld", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Halang Doan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hle", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hlersu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hlt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Matu Chin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hlu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hieroglyphic Luwian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hma", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "hmn", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southern Mashan Hmong"); + record.Description.Add(@"Southern Mashan Miao"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hmb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Humburi Senni Songhay"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hmc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "hmn", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Central Huishui Hmong"); + record.Description.Add(@"Central Huishui Miao"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hmd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "hmn", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Large Flowery Miao"); + record.Description.Add(@"A-hmaos"); + record.Description.Add(@"Da-Hua Miao"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hme", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "hmn", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Eastern Huishui Hmong"); + record.Description.Add(@"Eastern Huishui Miao"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hmf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hmong Don"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hmg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "hmn", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southwestern Guiyang Hmong"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hmh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "hmn", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southwestern Huishui Hmong"); + record.Description.Add(@"Southwestern Huishui Miao"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hmi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "hmn", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Northern Huishui Hmong"); + record.Description.Add(@"Northern Huishui Miao"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hmj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "hmn", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ge"); + record.Description.Add(@"Gejia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hmk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Maek"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hml", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "hmn", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Luopohe Hmong"); + record.Description.Add(@"Luopohe Miao"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hmm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "hmn", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Central Mashan Hmong"); + record.Description.Add(@"Central Mashan Miao"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hmn", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "macrolanguage", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hmong"); + record.Description.Add(@"Mong"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hmp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "hmn", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Northern Mashan Hmong"); + record.Description.Add(@"Northern Mashan Miao"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hmq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "hmn", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Eastern Qiandong Miao"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hmr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hmar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hms", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "hmn", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southern Qiandong Miao"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hmt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hamtai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hmu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hamap"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hmv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hmong Dô"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hmw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "hmn", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Western Mashan Hmong"); + record.Description.Add(@"Western Mashan Miao"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hmx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hmong-Mien languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hmy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "hmn", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southern Guiyang Hmong"); + record.Description.Add(@"Southern Guiyang Miao"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hmz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "hmn", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hmong Shua"); + record.Description.Add(@"Sinicized Miao"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hna", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mina (Cameroon)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hnd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "lah", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southern Hindko"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hne", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chhattisgarhi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hng", + Added = new DateOnly(2020, 3, 28), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hungu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hnh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"ǁAni"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hni", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hani"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hnj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "hmn", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hmong Njua"); + record.Description.Add(@"Mong Leng"); + record.Description.Add(@"Mong Njua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hnm", + Added = new DateOnly(2024, 12, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "zh", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hainanese"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hnn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hanunoo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hno", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "lah", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Northern Hindko"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hns", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Caribbean Hindustani"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hnu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hung"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hoa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hoava"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hob", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mari (Madang Province)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hoc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ho"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hod", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Holma"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hoe", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Horom"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hoh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hobyót"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hoi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Holikachuk"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hoj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "raj", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hadothi"); + record.Description.Add(@"Haroti"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hok", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hokan languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hol", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Holu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hom", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Homa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hoo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Holoholo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hop", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hopi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hor", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Horo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hos", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ho Chi Minh City Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hot", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hote"); + record.Description.Add(@"Malê"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hov", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hovongan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "how", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Honi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hoy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Holiya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hoz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hozo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hpo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hpon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hps", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hawai'i Sign Language (HSL)"); + record.Description.Add(@"Hawai'i Pidgin Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hra", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hrangkhol"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hrc", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Niwer Mil"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hre", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hre"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hrk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Haruku"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hrm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "hmn", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Horned Miao"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hro", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Haroi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hrp", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nhirrpi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hrr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2012, 8, 12), + PreferredValue = "jal", + Tag = "", + }; + record.Description.Add(@"Horuru"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hrt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hértevin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hru", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hruso"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hrw", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Warwar Feni"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hrx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hunsrik"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hrz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Harzani"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hsb", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Latn", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Upper Sorbian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hsh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hungarian Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hsl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hausa Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hsn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "zh", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Xiang Chinese"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hss", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Harsusi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hti", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hoti"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hto", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Minica Huitoto"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hts", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hadza"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "htu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hitu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "htx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Middle Hittite"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hub", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Huambisa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "huc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"ǂHua"); + record.Description.Add(@"ǂʼAmkhoe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hud", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Huaulu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hue", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"San Francisco Del Mar Huave"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "huf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Humene"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hug", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Huachipaeri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "huh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Huilliche"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hui", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Huli"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "huj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "hmn", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Northern Guiyang Hmong"); + record.Description.Add(@"Northern Guiyang Miao"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "huk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hulung"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hul", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hula"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hum", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hungana"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "huo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hup", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hupa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "huq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tsat"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hur", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Halkomelem"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hus", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Huastec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hut", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Humla"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "huu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Murui Huitoto"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "huv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"San Mateo Del Mar Huave"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "huw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hukumina"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hux", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nüpode Huitoto"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "huy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hulaulá"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "huz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hunzib"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hvc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Haitian Vodoun Culture Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hve", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"San Dionisio Del Mar Huave"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hvk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Haveke"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hvn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sabu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hvv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Santa María Del Mar Huave"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hwa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wané"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hwc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hawai'i Creole English"); + record.Description.Add(@"Hawai'i Pidgin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hwo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hwana"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hya", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hyw", + Added = new DateOnly(2018, 3, 8), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Western Armenian"); + record.Comments.Add(@"see also hy"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "hyx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Armenian (family)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "iai", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Iaai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ian", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Iatmul"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "iap", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2016, 5, 30), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Iapama"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "iar", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Purari"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "iba", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Iban"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ibb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ibibio"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ibd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Iwaidja"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ibe", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Akpes"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ibg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ibanag"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ibh", + Added = new DateOnly(2017, 2, 23), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bih"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ibi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2012, 8, 12), + PreferredValue = "opa", + Tag = "", + }; + record.Description.Add(@"Ibilo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ibl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ibaloi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ibm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Agoi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ibn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ibino"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ibr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ibuoro"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ibu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ibu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "iby", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ibani"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ica", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ede Ica"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ich", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Etkywan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "icl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Icelandic Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "icr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Islander Creole English"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ida", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "luy", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Idakho-Isukha-Tiriki"); + record.Description.Add(@"Luidakho-Luisukha-Lutirichi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "idb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Indo-Portuguese"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "idc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Idon"); + record.Description.Add(@"Ajiya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "idd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ede Idaca"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ide", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Idere"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "idi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Idi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "idr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Indri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ids", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Idesa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "idt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Idaté"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "idu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Idoma"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ifa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Amganad Ifugao"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ifb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Batad Ifugao"); + record.Description.Add(@"Ayangan Ifugao"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ife", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ifè"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "iff", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ifo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ifk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tuwali Ifugao"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ifm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Teke-Fuumu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ifu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mayoyao Ifugao"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ify", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Keley-I Kallahan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "igb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ebira"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ige", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Igede"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "igg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Igana"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "igl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Igala"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "igm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kanggape"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ign", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ignaciano"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "igo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Isebe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "igs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Interglossa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "igw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Igwe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ihb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Iha Based Pidgin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ihi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ihievbe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ihp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Iha"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ihw", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bidhawal"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "iin", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Thiin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "iir", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Indo-Iranian languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ijc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Izon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ije", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Biseni"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ijj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ede Ije"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ijn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kalabari"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ijo", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ijo languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ijs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southeast Ijo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ike", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "iu", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Eastern Canadian Inuktitut"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ikh", + Added = new DateOnly(2023, 3, 17), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ikhin-Arokho"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "iki", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Iko"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ikk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ika"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ikl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ikulu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "iko", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Olulumo-Ikom"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ikp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ikpeshi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ikr", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ikaranggal"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "iks", + Added = new DateOnly(2015, 2, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Inuit Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ikt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "iu", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Inuinnaqtun"); + record.Description.Add(@"Western Canadian Inuktitut"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ikv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Iku-Gora-Ankwa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ikw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ikwere"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ikx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ik"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ikz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ikizu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ila", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ile Ape"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ilb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ila"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ilg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Garig-Ilgar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ili", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ili Turki"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ilk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ilongot"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ill", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2016, 5, 30), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Iranun"); + record.Comments.Add(@"see ilm, ilp"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ilm", + Added = new DateOnly(2016, 5, 30), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Iranun (Malaysia)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ilo", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Iloko"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ilp", + Added = new DateOnly(2016, 5, 30), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Iranun (Philippines)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ils", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"International Sign"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ilu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ili'uun"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ilv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ilue"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ilw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2013, 9, 10), + PreferredValue = "gal", + Tag = "", + }; + record.Description.Add(@"Talur"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ima", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mala Malasar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ime", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2015, 2, 12), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Imeraguen"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "imi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Anamgura"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "iml", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Miluk"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "imn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Imonda"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "imo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Imbongu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "imr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Imroing"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ims", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Marsian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "imt", + Added = new DateOnly(2022, 2, 25), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Imotong"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "imy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Milyan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "inb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Inga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "inc", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Indic languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ine", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Indo-European languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ing", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Degexit'an"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "inh", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ingush"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "inj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jungle Inga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "inl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Indonesian Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "inm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Minaean"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "inn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Isinai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ino", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Inoke-Yate"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "inp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Iñapari"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ins", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Indian Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "int", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Intha"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "inz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ineseño"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ior", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Inor"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "iou", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tuma-Irumu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "iow", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Iowa-Oto"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ipi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ipili"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ipo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ipiko"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "iqu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Iquito"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "iqw", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ikwo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ira", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Iranian languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ire", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Iresim"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "irh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Irarutu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "iri", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Rigwe"); + record.Description.Add(@"Irigwe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "irk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Iraqw"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "irn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Irántxe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "iro", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Iroquoian languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "irr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ir"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "iru", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Irula"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "irx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kamberau"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "iry", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Iraya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "isa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Isabi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "isc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Isconahua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "isd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Isnag"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ise", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Italian Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "isg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Irish Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ish", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Esan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "isi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nkem-Nkum"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "isk", + Added = new DateOnly(2010, 3, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ishkashimi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ism", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Masimasi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "isn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Isanzu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "iso", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Isoko"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "isr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Israeli Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ist", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Istriot"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "isu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Isu (Menchum Division)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "isv", + Added = new DateOnly(2024, 5, 15), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Interslavic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "itb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Binongan Itneg"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "itc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Italic languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "itd", + Added = new DateOnly(2016, 5, 30), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southern Tidung"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ite", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Itene"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "iti", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Inlaod Itneg"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "itk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Judeo-Italian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "itl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Itelmen"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "itm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Itu Mbon Uzo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ito", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Itonama"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "itr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Iteri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "its", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Isekiri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "itt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Maeng Itneg"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "itv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Itawit"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "itw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ito"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "itx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Itik"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ity", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Moyadan Itneg"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "itz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Itzá"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ium", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Iu Mien"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ivb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ibatan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ivv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ivatan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "iwk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"I-Wak"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "iwm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Iwam"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "iwo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Iwur"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "iws", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sepik Iwam"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ixc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ixcatec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ixl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ixil"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "iya", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Iyayu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "iyo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mesaka"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "iyx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yaka (Congo)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "izh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ingrian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "izi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2013, 9, 10), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Izi-Ezaa-Ikwo-Mgbo"); + record.Comments.Add(@"see eza, gmz, iqw, izz"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "izm", + Added = new DateOnly(2023, 3, 17), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kizamani"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "izr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Izere"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "izz", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Izii"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jaa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jamamadí"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jab", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hyam"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jac", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Popti'"); + record.Description.Add(@"Jakalteko"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jad", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jahanka"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jae", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yabem"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jaf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jara"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jah", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jah Hut"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jaj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Zazao"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jak", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ms", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jakun"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jal", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yalahatan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jam", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jamaican Creole English"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jan", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jandai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jao", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yanyuwa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jaq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yaqay"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jar", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2012, 8, 12), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jarawa (Nigeria)"); + record.Comments.Add(@"see jgk, jjr"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jas", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"New Caledonian Javanese"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jat", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "lah", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jakati"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jau", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yaur"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jax", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ms", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jambi Malay"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jay", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yan-nhangu"); + record.Description.Add(@"Nhangu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jaz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jawe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jbe", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Judeo-Berber"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jbi", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Badjiri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jbj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Arandai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jbk", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Barikewa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jbm", + Added = new DateOnly(2021, 2, 20), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bijim"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jbn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nafusi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jbo", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lojban"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jbr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jofotek-Bromnya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jbt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jabutí"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jbu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jukun Takum"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jbw", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yawijibaya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jcs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jamaican Country Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jct", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Krymchak"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jda", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jad"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jdg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jadgali"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jdt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Judeo-Tat"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jeb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jebero"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jee", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jerung"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jeg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2017, 2, 23), + PreferredValue = "oyb", + Tag = "", + }; + record.Description.Add(@"Jeng"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jeh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jeh"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jei", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yei"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jek", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jeri Kuo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jel", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yelmek"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jen", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dza"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jer", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jere"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jet", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Manem"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jeu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jonkor Bourmataguil"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jgb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ngbee"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jge", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Judeo-Georgian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jgk", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gwak"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jgo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ngomba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jhi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jehai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jhs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jhankot Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jia", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jina"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jib", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jibu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jic", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tol"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jid", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bu (Kaduna State)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jie", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jilbe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jig", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jingulu"); + record.Description.Add(@"Djingili"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jih", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"sTodsde"); + record.Description.Add(@"Shangzhai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jii", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jiiddu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jil", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jilim"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jim", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jimi (Cameroon)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jio", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jiamao"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jiq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Guanyinqiao"); + record.Description.Add(@"Lavrung"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jit", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jita"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jiu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Youle Jinuo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jiv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Shuar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jiy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Buyuan Jinuo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jje", + Added = new DateOnly(2015, 2, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jejueo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jjr", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bankal"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jka", + Added = new DateOnly(2016, 5, 30), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kaera"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jkm", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mobwa Karen"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jko", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kubo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jkp", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Paku Karen"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jkr", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Koro (India)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jks", + Added = new DateOnly(2021, 2, 20), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Amami Koniya Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jku", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Labir"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jle", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ngile"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jls", + Added = new DateOnly(2010, 3, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jamaican Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jma", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dima"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jmb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Zumbun"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jmc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Machame"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jmd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yamdena"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jmi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jimi (Nigeria)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jml", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jumli"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jmn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Makuri Naga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jmr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kamara"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jms", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mashi (Nigeria)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jmw", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mouwase"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jmx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Western Juxtlahuaca Mixtec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jna", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jangshung"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jnd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jandavra"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jng", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yangman"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jni", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Janji"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jnj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yemsa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jnl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Rawat"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jns", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jaunsari"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "job", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Joba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jod", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wojenaka"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jog", + Added = new DateOnly(2015, 5, 27), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jogi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jor", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jorá"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jos", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jordanian Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jow", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jowulu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jpa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jewish Palestinian Aramaic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jpr", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Judeo-Persian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jpx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Japanese (family)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jqr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jaqaru"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jra", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jarai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jrb", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "macrolanguage", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Judeo-Arabic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jrr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jiru"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jrt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jakattoe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jru", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Japrería"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jsl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Japanese Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jua", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Júma"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jub", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wannu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "juc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jurchen"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jud", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Worodougou"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "juh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hõne"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jui", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ngadjuri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "juk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wapan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jul", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jirel"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jum", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jumjum"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jun", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Juang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "juo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jiba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jup", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hupdë"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jur", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jurúna"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jus", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jumla Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jut", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jutish"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "juu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ju"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "juw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wãpha"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "juy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Juray"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jvd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Javindo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jvn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Caribbean Javanese"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jwi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jwira-Pepesa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jya", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jiarong"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jye", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "jrb", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Judeo-Yemeni Arabic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "jyy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jaya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kaa", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kara-Kalpak"); + record.Description.Add(@"Karakalpak"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kab", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kabyle"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kac", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kachin"); + record.Description.Add(@"Jingpho"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kad", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Adara"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kae", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ketangalan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kaf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Katso"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kag", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kajaman"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kah", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kara (Central African Republic)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kai", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Karekare"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kaj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jju"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kak", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kalanguya"); + record.Description.Add(@"Kayapa Kallahan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kam", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kamba (Kenya)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kao", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Xaasongaxango"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kap", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bezhta"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kaq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Capanahua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kar", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Karen languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kav", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Katukína"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kaw", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kawi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kax", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kao"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kay", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kamayurá"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kba", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kalarko"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kbb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kaxuiâna"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kbc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kadiwéu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kbd", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kabardian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kbe", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kanju"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kbf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2015, 2, 12), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kakauhua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kbg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Khamba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kbh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Camsá"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kbi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kaptiau"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kbj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kari"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kbk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Grass Koiari"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kbl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kanembu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kbm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Iwal"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kbn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kare (Central African Republic)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kbo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Keliko"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kbp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kabiyè"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kbq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kamano"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kbr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kafa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kbs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kande"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kbt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Abadi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kbu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kabutra"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kbv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dera (Indonesia)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kbw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kaiep"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kbx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ap Ma"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kby", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "kr", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Manga Kanuri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kbz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Duhwa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kca", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Khanty"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kcb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kawacha"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kcc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lubila"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kcd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ngkâlmpw Kanum"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kce", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kaivi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kcf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ukaan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kcg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tyap"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kch", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Vono"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kci", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ngyian"); + record.Description.Add(@"Kamantan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kcj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kobiana"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kck", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kalanga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kcl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kela (Papua New Guinea)"); + record.Description.Add(@"Kala"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kcm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gula (Central African Republic)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kcn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nubi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kco", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kinalakna"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kcp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kanga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kcq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kamo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kcr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Katla"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kcs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Koenoem"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kct", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kaian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kcu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kami (Tanzania)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kcv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kete"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kcw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kabwari"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kcx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kachama-Ganjule"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kcy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Korandje"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kcz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Konongo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kda", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Worimi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kdc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kutu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kdd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yankunytjatjara"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kde", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Makonde"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kdf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mamusi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kdg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Seba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kdh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tem"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kdi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kumam"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kdj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Karamojong"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kdk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Numèè"); + record.Description.Add(@"Kwényi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kdl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tsikimba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kdm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kagoma"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kdn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kunda"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kdo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kordofanian languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kdp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kaningdon-Nindem"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kdq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Koch"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kdr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Karaim"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kdt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kuy"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kdu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kadaru"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kdv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2012, 8, 12), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kado"); + record.Comments.Add(@"see zkd, zkn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kdw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Koneraw"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kdx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kam"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kdy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Keder"); + record.Description.Add(@"Keijar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kdz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kwaja"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kea", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kabuverdianu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "keb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kélé"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kec", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Keiga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ked", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kerewe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kee", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Eastern Keres"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kef", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kpessi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "keg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tese"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "keh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Keak"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kei", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kei"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kej", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kadar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kek", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kekchí"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kel", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kela (Democratic Republic of Congo)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kem", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kemak"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ken", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kenyang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "keo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kakwa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kep", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kaikadi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "keq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kamar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ker", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kera"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kes", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kugbo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ket", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ket"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "keu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Akebu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kev", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kanikkaran"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kew", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"West Kewa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kex", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kukna"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "key", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kupia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kez", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kukele"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kfa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kodava"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kfb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Northwestern Kolami"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kfc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Konda-Dora"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kfd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Korra Koraga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kfe", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kota (India)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kff", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Koya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kfg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kudiya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kfh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kurichiya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kfi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kannada Kurumba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kfj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kemiehua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kfk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kinnauri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kfl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kung"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kfm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Khunsari"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kfn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kuk"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kfo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Koro (Côte d'Ivoire)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kfp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Korwa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kfq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Korku"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kfr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kachhi"); + record.Description.Add(@"Kutchi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kfs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bilaspuri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kft", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kanjari"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kfu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Katkari"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kfv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kurmukar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kfw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kharam Naga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kfx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kullu Pahari"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kfy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kumaoni"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kfz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Koromfé"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kga", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Koyaga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kgb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kawe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kgc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2016, 5, 30), + PreferredValue = "tdf", + Tag = "", + }; + record.Description.Add(@"Kasseng"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kgd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2017, 2, 23), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kataang"); + record.Comments.Add(@"see ncq, sct"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kge", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Komering"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kgf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kube"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kgg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kusunda"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kgh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2012, 8, 12), + PreferredValue = "kml", + Tag = "", + }; + record.Description.Add(@"Upper Tanudan Kalinga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kgi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Selangor Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kgj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gamale Kham"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kgk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kaiwá"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kgl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kunggari"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kgm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2023, 3, 17), + PreferredValue = "plu", + Tag = "", + }; + record.Description.Add(@"Karipúna"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kgn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Karingani"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kgo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Krongo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kgp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kaingang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kgq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kamoro"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kgr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Abun"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kgs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kumbainggar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kgt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Somyev"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kgu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kobol"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kgv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Karas"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kgw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Karon Dori"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kgx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kamaru"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kgy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kyerung"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kha", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Khasi"); + record.Comments.Add(@"as of 2008-04-21 this subtag does not include Lyngngam; see lyg"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "khb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lü"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "khc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tukang Besi North"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "khd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bädi Kanum"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "khe", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Korowai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "khf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Khuen"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "khg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Khams Tibetan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "khh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kehu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "khi", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Khoisan languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "khj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kuturmi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "khk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "mn", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Halh Mongolian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "khl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lusi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "khn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Khandesi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kho", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Khotanese"); + record.Description.Add(@"Sakan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "khp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kapori"); + record.Description.Add(@"Kapauri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "khq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Koyra Chiini Songhay"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "khr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kharia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "khs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kasua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kht", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Khamti"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "khu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nkhumbi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "khv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Khvarshi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "khw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Khowar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "khx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kanu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "khy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kele (Democratic Republic of Congo)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "khz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Keapara"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kia", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kim"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kib", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Koalib"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kic", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kickapoo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kid", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Koshin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kie", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kibet"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kif", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Eastern Parbate Kham"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kig", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kimaama"); + record.Description.Add(@"Kimaghima"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kih", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kilmeri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kii", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kitsai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kij", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kilivila"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kil", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kariya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kim", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Karagas"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kio", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kiowa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kip", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sheshi Kham"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kiq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kosadle"); + record.Description.Add(@"Kosare"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kis", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kis"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kit", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Agob"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kiu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "zza", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kirmanjki (individual language)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kiv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kimbu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kiw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Northeast Kiwai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kix", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Khiamniungan Naga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kiy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kirikiri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kiz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kisi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kja", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mlap"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kjb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Q'anjob'al"); + record.Description.Add(@"Kanjobal"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kjc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Coastal Konjo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kjd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southern Kiwai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kje", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kisar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kjf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2020, 3, 28), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Khalaj [Indo-Iranian]"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kjg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Khmu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kjh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Khakas"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kji", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Zabana"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kjj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Khinalugh"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kjk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Highland Konjo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kjl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Western Parbate Kham"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kjm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kháng"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kjn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kunjen"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kjo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Harijan Kinnauri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kjp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pwo Eastern Karen"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kjq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Western Keres"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kjr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kurudu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kjs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"East Kewa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kjt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Phrae Pwo Karen"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kju", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kashaya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kjv", + Added = new DateOnly(2015, 2, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kaikavian Literary Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kjx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ramopa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kjy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Erave"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kjz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bumthangkha"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kka", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kakanda"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kkb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kwerisa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kkc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Odoodee"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kkd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kinuku"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kke", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kakabe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kkf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kalaktang Monpa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kkg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mabaka Valley Kalinga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kkh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Khün"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kki", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kagulu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kkj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kako"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kkk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kokota"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kkl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kosarek Yale"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kkm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kiong"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kkn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kon Keu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kko", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Karko"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kkp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gugubera"); + record.Description.Add(@"Koko-Bera"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kkq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kaeku"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kkr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kir-Balar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kks", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Giiwo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kkt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Koi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kku", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tumi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kkv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kangean"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kkw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Teke-Kukuya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kkx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kohin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kky", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Guugu Yimidhirr"); + record.Description.Add(@"Guguyimidjir"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kkz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kaska"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kla", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Klamath-Modoc"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "klb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kiliwa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "klc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kolbila"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kld", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gamilaraay"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kle", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kulung (Nepal)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "klf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kendeje"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "klg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tagakaulo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "klh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Weliki"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kli", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kalumpang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "klj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Khalaj"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "klk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kono (Nigeria)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kll", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kagan Kalagan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "klm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Migum"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kln", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "macrolanguage", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kalenjin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "klo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kapya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "klp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kamasa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "klq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Rumu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "klr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Khaling"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kls", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kalasha"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "klt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nukna"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "klu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Klao"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "klv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Maskelynes"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "klw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tado"); + record.Description.Add(@"Lindu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "klx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Koluwawa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kly", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kalao"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "klz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kabola"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kma", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Konni"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kmb", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kimbundu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kmc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southern Dong"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kmd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Majukayang Kalinga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kme", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bakole"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kmf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kare (Papua New Guinea)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kmg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kâte"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kmh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kalam"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kmi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kami (Nigeria)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kmj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kumarbhag Paharia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kmk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Limos Kalinga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kml", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tanudan Kalinga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kmm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kom (India)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kmn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Awtuw"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kmo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kwoma"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kmp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gimme"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kmq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kwama"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kmr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ku", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Northern Kurdish"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kms", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kamasau"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kmt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kemtuik"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kmu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kanite"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kmv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Karipúna Creole French"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kmw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Komo (Democratic Republic of Congo)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kmx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Waboda"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kmy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Koma"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kmz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Khorasani Turkish"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kna", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dera (Nigeria)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "knb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lubuagan Kalinga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "knc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "kr", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Central Kanuri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "knd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Konda"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kne", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kankanaey"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "knf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mankanya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kng", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "kg", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Koongo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kni", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kanufi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "knj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Western Kanjobal"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "knk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kuranko"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "knl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Keninjal"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "knm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kanamarí"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "knn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "kok", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Konkani (individual language)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kno", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kono (Sierra Leone)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "knp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kwanja"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "knq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kintaq"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "knr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kaningra"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kns", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kensiu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "knt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Panoan Katukína"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "knu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kono (Guinea)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "knv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tabo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "knw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kung-Ekoka"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "knx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kendayan"); + record.Description.Add(@"Salako"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kny", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kanyok"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "knz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kalamsé"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "koa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Konomala"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "koc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kpati"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kod", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kodi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "koe", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kacipo-Bale Suri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kof", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kubi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kog", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cogui"); + record.Description.Add(@"Kogi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "koh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Koyo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "koi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "kv", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Komi-Permyak"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "koj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2015, 2, 12), + PreferredValue = "kwv", + Tag = "", + }; + record.Description.Add(@"Sara Dunjo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kok", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Deva", + Scope = "macrolanguage", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Konkani (macrolanguage)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kol", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kol (Papua New Guinea)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "koo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Konzo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kop", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Waube"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "koq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kota (Gabon)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kos", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kosraean"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kot", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lagwan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kou", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Koke"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kov", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kudu-Camo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kow", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kugama"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kox", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2016, 5, 30), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Coxima"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "koy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Koyukon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "koz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Korak"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kpa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kutto"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kpb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mullu Kurumba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kpc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Curripaco"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kpd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Koba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kpe", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "macrolanguage", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kpelle"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kpf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Komba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kpg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kapingamarangi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kph", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kplang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kpi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kofei"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kpj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Karajá"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kpk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kpan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kpl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kpala"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kpm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Koho"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kpn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kepkiriwát"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kpo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ikposo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kpp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2012, 8, 12), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Paku Karen"); + record.Comments.Add(@"see jkm, jkp"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kpq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Korupun-Sela"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kpr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Korafe-Yegha"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kps", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tehit"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kpt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Karata"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kpu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kafoa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kpv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "kv", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Komi-Zyrian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kpw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kobon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kpx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mountain Koiali"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kpy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Koryak"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kpz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kupsabiny"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kqa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mum"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kqb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kovai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kqc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Doromu-Koki"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kqd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Koy Sanjaq Surat"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kqe", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kalagan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kqf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kakabai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kqg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Khe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kqh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kisankasa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kqi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Koitabu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kqj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Koromira"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kqk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kotafon Gbe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kql", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kyenele"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kqm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Khisa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kqn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kaonde"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kqo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Eastern Krahn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kqp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kimré"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kqq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Krenak"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kqr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kimaragang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kqs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Northern Kissi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kqt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Klias River Kadazan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kqu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Seroa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kqv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Okolod"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kqw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kandas"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kqx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mser"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kqy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Koorete"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kqz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Korana"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kra", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kumhali"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "krb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Karkin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "krc", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Karachay-Balkar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "krd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kairui-Midiki"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kre", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Panará"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "krf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Koro (Vanuatu)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "krh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kurama"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kri", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Krio"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "krj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kinaray-A"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "krk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kerek"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "krl", + Added = new DateOnly(2006, 3, 8), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Karelian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "krm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2017, 2, 23), + PreferredValue = "bmf", + Tag = "", + }; + record.Description.Add(@"Krim"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "krn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sapo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kro", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kru languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "krp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Durop"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "krr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Krung"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "krs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gbaya (Sudan)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "krt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "kr", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tumari Kanuri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kru", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kurukh"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "krv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kavet"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "krw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Western Krahn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "krx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Karon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kry", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kryts"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "krz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sota Kanum"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ksa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2023, 3, 17), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Shuwa-Zamani"); + record.Comments.Add(@"see izm, rsw"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ksb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Shambala"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ksc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southern Kalinga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ksd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kuanua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kse", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kuni"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ksf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bafia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ksg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kusaghe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ksh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kölsch"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ksi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Krisa"); + record.Description.Add(@"I'saka"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ksj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Uare"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ksk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kansa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ksl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kumalu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ksm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kumba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ksn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kasiguranin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kso", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kofa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ksp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kaba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ksq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kwaami"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ksr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Borong"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kss", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southern Kisi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kst", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Winyé"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ksu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Khamyang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ksv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kusu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ksw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"S'gaw Karen"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ksx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kedang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ksy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kharia Thar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ksz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kodaku"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kta", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Katua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ktb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kambaata"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ktc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kholok"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ktd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kokata"); + record.Description.Add(@"Kukatha"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kte", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nubri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ktf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kwami"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ktg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kalkutung"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kth", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Karanga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kti", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"North Muyu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ktj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Plapo Krumen"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ktk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kaniet"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ktl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Koroshi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ktm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kurti"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ktn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Karitiâna"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kto", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kuot"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ktp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kaduo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ktq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Katabaga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ktr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2016, 5, 30), + PreferredValue = "dtp", + Tag = "", + }; + record.Description.Add(@"Kota Marudu Tinagas"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kts", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"South Muyu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ktt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ketum"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ktu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kituba (Democratic Republic of Congo)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ktv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Eastern Katu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ktw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kato"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ktx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kaxararí"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kty", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kango (Bas-Uélé District)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ktz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Juǀʼhoan"); + record.Description.Add(@"Juǀʼhoansi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kub", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kutep"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kuc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kwinsu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kud", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"'Auhelawa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kue", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kuman (Papua New Guinea)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kuf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Western Katu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kug", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kupa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kuh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kushi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kui", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kuikúro-Kalapálo"); + record.Description.Add(@"Kalapalo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kuj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kuria"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kuk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kepo'"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kul", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kulere"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kum", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kumyk"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kun", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kunama"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kuo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kumukio"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kup", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kunimaipa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kuq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Karipuna"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kus", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kusaal"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kut", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kutenai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kuu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Upper Kuskokwim"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kuv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kur"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kuw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kpagua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kux", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kukatja"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kuy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kuuku-Ya'u"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kuz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kunza"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kva", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bagvalal"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kvb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ms", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kubu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kvc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kove"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kvd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kui (Indonesia)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kve", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kalabakan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kvf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kabalai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kvg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kuni-Boazi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kvh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Komodo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kvi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kwang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kvj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Psikye"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kvk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Korean Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kvl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kayaw"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kvm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kendem"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kvn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Border Kuna"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kvo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dobel"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kvp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kompane"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kvq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Geba Karen"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kvr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ms", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kerinci"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kvs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2016, 5, 30), + PreferredValue = "gdj", + Tag = "", + }; + record.Description.Add(@"Kunggara"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kvt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lahta Karen"); + record.Description.Add(@"Lahta"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kvu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yinbaw Karen"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kvv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kola"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kvw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wersing"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kvx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Parkari Koli"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kvy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yintale Karen"); + record.Description.Add(@"Yintale"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kvz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tsakwambo"); + record.Description.Add(@"Tsaukambo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kwa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dâw"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kwb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kwa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kwc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Likwala"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kwd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kwaio"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kwe", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kwerba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kwf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kwara'ae"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kwg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sara Kaba Deme"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kwh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kowiai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kwi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Awa-Cuaiquer"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kwj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kwanga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kwk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kwakiutl"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kwl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kofyar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kwm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kwambi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kwn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kwangali"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kwo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kwomtari"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kwp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kodia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kwq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2015, 2, 12), + PreferredValue = "yam", + Tag = "", + }; + record.Description.Add(@"Kwak"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kwr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kwer"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kws", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kwese"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kwt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kwesten"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kwu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kwakum"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kwv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sara Kaba Náà"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kww", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kwinti"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kwx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Khirwar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kwy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "kg", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"San Salvador Kongo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kwz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kwadi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kxa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kairiru"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kxb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Krobu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kxc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Konso"); + record.Description.Add(@"Khonso"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kxd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ms", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Brunei"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kxe", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2015, 2, 12), + PreferredValue = "tvd", + Tag = "", + }; + record.Description.Add(@"Kakihum"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kxf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Manumanaw Karen"); + record.Description.Add(@"Manumanaw"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kxh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Karo (Ethiopia)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kxi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Keningau Murut"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kxj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kulfa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kxk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Zayein Karen"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kxl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2020, 3, 28), + PreferredValue = "kru", + Tag = "", + }; + record.Description.Add(@"Nepali Kurux"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kxm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Northern Khmer"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kxn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kanowit-Tanjong Melanau"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kxo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kanoé"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kxp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wadiyara Koli"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kxq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Smärky Kanum"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kxr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Koro (Papua New Guinea)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kxs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kangjia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kxt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Koiwat"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kxu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2020, 3, 28), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kui (India)"); + record.Comments.Add(@"see dwk, uki"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kxv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kuvi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kxw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Konai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kxx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Likuba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kxy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kayong"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kxz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kerewo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kya", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kwaya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kyb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Butbut Kalinga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kyc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kyaka"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kyd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Karey"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kye", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Krache"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kyf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kouya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kyg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Keyagana"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kyh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Karok"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kyi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kiput"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kyj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Karao"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kyk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kamayo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kyl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kalapuya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kym", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kpatili"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kyn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Northern Binukidnon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kyo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kelon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kyp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kyq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kenga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kyr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kuruáya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kys", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Baram Kayan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kyt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kayagar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kyu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Western Kayah"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kyv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kayort"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kyw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kudmali"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kyx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Rapoisi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kyy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kambaira"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kyz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kayabí"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kza", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Western Karaboro"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kzb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kaibobo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kzc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bondoukou Kulango"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kzd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kadai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kze", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kosena"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kzf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Da'a Kaili"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kzg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kikai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kzh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2012, 8, 12), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kenuzi-Dongola"); + record.Comments.Add(@"see dgl, xnz"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kzi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kelabit"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kzj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2016, 5, 30), + PreferredValue = "dtp", + Tag = "", + }; + record.Description.Add(@"Coastal Kadazan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kzk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kazukuru"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kzl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kayeli"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kzm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kais"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kzn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kokola"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kzo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kaningi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kzp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kaidipang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kzq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kaike"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kzr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Karang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kzs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sugut Dusun"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kzt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2016, 5, 30), + PreferredValue = "dtp", + Tag = "", + }; + record.Description.Add(@"Tambunan Dusun"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kzu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kayupulau"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kzv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Komyandaret"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kzw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Karirí-Xocó"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kzx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kamarian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kzy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kango (Tshopo District)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "kzz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kalabra"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "laa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southern Subanen"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lab", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Linear A"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lac", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lacandon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lad", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ladino"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lae", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pattani"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "laf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lafofa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lag", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Rangi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lah", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "macrolanguage", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lahnda"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lai", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lambya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "laj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lango (Uganda)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lak", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2022, 2, 25), + PreferredValue = "ksp", + Tag = "", + }; + record.Description.Add(@"Laka (Nigeria)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lal", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lalia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lam", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lamba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lan", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Laru"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lap", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Laka (Chad)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "laq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Qabiao"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lar", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Larteh"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "las", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lama (Togo)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lau", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Laba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "law", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lauje"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lax", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tiwa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lay", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lama Bai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "laz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Aribwatsa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lba", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2019, 4, 16), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lui"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lbb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Label"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lbc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lakkia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lbe", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lak"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lbf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tinani"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lbg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Laopang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lbi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"La'bi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lbj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ladakhi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lbk", + Added = new DateOnly(2010, 3, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "bnc", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Central Bontok"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lbl", + Added = new DateOnly(2010, 3, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "bik", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Libon Bikol"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lbm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lodhi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lbn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Rmeet"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lbo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Laven"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lbq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wampar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lbr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lohorung"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lbs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Libyan Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lbt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lachi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lbu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Labu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lbv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lavatbura-Lamusong"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lbw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tolaki"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lbx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lawangan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lby", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lamalama"); + record.Description.Add(@"Lamu-Lamu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lbz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lardil"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lcc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Legenyem"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lcd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lola"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lce", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ms", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Loncong"); + record.Description.Add(@"Sekak"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lcf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ms", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lubu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lch", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Luchazi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lcl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lisela"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lcm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tungag"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lcp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Western Lawa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lcq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Luhu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lcs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lisabata-Nuniali"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lda", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kla-Dan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ldb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dũya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ldd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Luri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ldg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lenyima"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ldh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lamja-Dengsa-Tola"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ldi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "kg", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Laari"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ldj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lemoro"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ldk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Leelau"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ldl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kaan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ldm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Landoma"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ldn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Láadan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ldo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Loo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ldp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tso"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ldq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lufu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lea", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lega-Shabunda"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "leb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lala-Bisa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lec", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Leco"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "led", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lendu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lee", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lyélé"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lef", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lelemi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "leg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2014, 2, 28), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lengua"); + record.Comments.Add(@"see enl, enx"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "leh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lenje"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lei", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lemio"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lej", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lengola"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lek", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Leipon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lel", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lele (Democratic Republic of Congo)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lem", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nomaande"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "len", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lenca"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "leo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Leti (Cameroon)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lep", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lepcha"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "leq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lembena"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ler", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lenkau"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "les", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lese"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "let", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lesing-Gelimi"); + record.Description.Add(@"Amio-Gelimi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "leu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kara (Papua New Guinea)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lev", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lamma"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lew", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ledo Kaili"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lex", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Luang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ley", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lemolang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lez", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lezghian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lfa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lefa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lfn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lingua Franca Nova"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lga", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lungga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lgb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Laghu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lgg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lugbara"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lgh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Laghuu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lgi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lengilu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lgk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lingarak"); + record.Description.Add(@"Neverver"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lgl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wala"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lgm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lega-Mwenga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lgn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"T'apo"); + record.Description.Add(@"Opuuo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lgo", + Added = new DateOnly(2022, 2, 25), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lango (South Sudan)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lgq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Logba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lgr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lengo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lgs", + Added = new DateOnly(2023, 3, 17), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Guinea-Bissau Sign Language"); + record.Description.Add(@"Língua Gestual Guineense"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lgt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pahi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lgu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Longgu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lgz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ligenza"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lha", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Laha (Viet Nam)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lhh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Laha (Indonesia)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lhi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lahu Shi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lhl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lahul Lohar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lhm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lhomi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lhn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lahanan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lhp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lhokpu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lhs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mlahsö"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lht", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lo-Toga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lhu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lahu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lia", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"West-Central Limba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lib", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Likum"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lic", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hlai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lid", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nyindrou"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lie", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Likila"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lif", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Limbu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lig", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ligbi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lih", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lihir"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lii", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2015, 2, 12), + PreferredValue = "raq", + Tag = "", + }; + record.Description.Add(@"Lingkhim"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lij", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ligurian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lik", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lika"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lil", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lillooet"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lio", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Liki"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lip", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sekpele"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "liq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Libido"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lir", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Liberian English"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lis", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lisu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "liu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Logorik"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "liv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Liv"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "liw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ms", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Col"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lix", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Liabuku"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "liy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Banda-Bambari"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "liz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Libinza"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lja", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Golpa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lje", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Rampi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lji", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Laiyolo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ljl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Li'o"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ljp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lampung Api"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ljw", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yirandali"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ljx", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yuru"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lka", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lakalei"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lkb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "luy", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kabras"); + record.Description.Add(@"Lukabaras"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lkc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kucong"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lkd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lakondê"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lke", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kenyi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lkh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lakha"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lki", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Laki"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lkj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Remun"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lkl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Laeko-Libuat"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lkm", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kalaamaya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lkn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lakon"); + record.Description.Add(@"Vure"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lko", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "luy", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Khayo"); + record.Description.Add(@"Olukhayo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lkr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Päri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lks", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "luy", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kisa"); + record.Description.Add(@"Olushisa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lkt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lakota"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lku", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kungkari"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lky", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lokoya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lla", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lala-Roba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "llb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lolo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "llc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lele (Guinea)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lld", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ladin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lle", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lele (Papua New Guinea)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "llf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hermit"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "llg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lole"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "llh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lamu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lli", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Teke-Laali"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "llj", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ladji Ladji"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "llk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lelak"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lll", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lilau"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "llm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lasalimu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lln", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lele (Chad)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "llo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2019, 4, 16), + PreferredValue = "ngt", + Tag = "", + }; + record.Description.Add(@"Khlor"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "llp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"North Efate"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "llq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lolak"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lls", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lithuanian Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "llu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lau"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "llx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lauan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lma", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"East Limba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lmb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Merei"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lmc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Limilngan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lmd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lumun"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lme", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pévé"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lmf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"South Lembata"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lmg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lamogai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lmh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lambichhong"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lmi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lombi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lmj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"West Lembata"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lmk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lamkang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lml", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hano"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lmm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2014, 2, 28), + PreferredValue = "rmx", + Tag = "", + }; + record.Description.Add(@"Lamam"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lmn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lambadi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lmo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lombard"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lmp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Limbum"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lmq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lamatuka"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lmr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lamalera"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lmu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lamenu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lmv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lomaiviti"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lmw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lake Miwok"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lmx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Laimbue"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lmy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lamboya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lmz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2020, 3, 28), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lumbee"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lna", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Langbashe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lnb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mbalanhu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lnd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lundayeh"); + record.Description.Add(@"Lun Bawang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lng", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Langobardic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lnh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lanoh"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lni", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Daantanai'"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lnj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Leningitij"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lnl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"South Central Banda"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lnm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Langam"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lnn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lorediakarkar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lno", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2022, 2, 25), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lango (South Sudan)"); + record.Comments.Add(@"see imt, lgo, lqr, oie"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lns", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lamnso'"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lnu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Longuda"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lnw", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lanima"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lnz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lonzo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "loa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Loloda"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lob", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lobi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "loc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Inonhan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "loe", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Saluan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lof", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Logol"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "log", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Logo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "loh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Laarim"); + record.Description.Add(@"Narim"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "loi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Loma (Côte d'Ivoire)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "loj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lou"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lok", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Loko"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lol", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mongo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lom", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Loma (Liberia)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lon", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Malawi Lomwe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "loo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lombo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lop", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lopa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "loq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lobala"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lor", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Téén"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "los", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Loniu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lot", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Otuho"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lou", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Louisiana Creole"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lov", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lopi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "low", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tampias Lobu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lox", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Loun"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "loy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Loke"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "loz", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lozi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lpa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lelepa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lpe", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lepki"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lpn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Long Phuri Naga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lpo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lipo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lpx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lopit"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lqr", + Added = new DateOnly(2022, 2, 25), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Logir"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lra", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Rara Bakati'"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lrc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Northern Luri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lre", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Laurentian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lrg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Laragia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lri", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "luy", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Marachi"); + record.Description.Add(@"Olumarachi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lrk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Loarki"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lrl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lari"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lrm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "luy", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Marama"); + record.Description.Add(@"Olumarama"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lrn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lorang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lro", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Laro"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lrr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southern Yamphu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lrt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Larantuka Malay"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lrv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Larevat"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lrz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lemerig"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lsa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lasgerdi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lsb", + Added = new DateOnly(2021, 2, 20), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Burundian Sign Language"); + record.Description.Add(@"Langue des Signes Burundaise"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lsc", + Added = new DateOnly(2022, 2, 25), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Albarradas Sign Language"); + record.Description.Add(@"Lengua de señas Albarradas"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lsd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lishana Deni"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lse", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lusengo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lsg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2018, 3, 8), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lyons Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lsh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lish"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lsi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lashi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lsl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Latvian Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lsm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "luy", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Saamia"); + record.Description.Add(@"Olusamia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lsn", + Added = new DateOnly(2019, 4, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tibetan Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lso", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Laos Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lsp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Panamanian Sign Language"); + record.Description.Add(@"Lengua de Señas Panameñas"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lsr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Aruop"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lss", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lasi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lst", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Trinidad and Tobago Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lsv", + Added = new DateOnly(2019, 4, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sivia Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lsw", + Added = new DateOnly(2022, 2, 25), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Seychelles Sign Language"); + record.Description.Add(@"Lalang Siny Seselwa"); + record.Description.Add(@"Langue des Signes Seychelloise"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lsy", + Added = new DateOnly(2010, 3, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mauritian Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ltc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Late Middle Chinese"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ltg", + Added = new DateOnly(2010, 3, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "lv", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Latgalian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lth", + Added = new DateOnly(2017, 2, 23), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Thur"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lti", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Leti (Indonesia)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ltn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Latundê"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lto", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "luy", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tsotso"); + record.Description.Add(@"Olutsotso"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lts", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "luy", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tachoni"); + record.Description.Add(@"Lutachoni"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ltu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Latu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lua", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Luba-Lulua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "luc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Aringa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lud", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ludian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lue", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Luvale"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "luf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Laua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "luh", + Added = new DateOnly(2024, 12, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "zh", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Leizhou Chinese"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lui", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Luiseno"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "luj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Luna"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "luk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lunanakha"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lul", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Olu'bo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lum", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Luimbi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lun", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lunda"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "luo", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Luo (Kenya and Tanzania)"); + record.Description.Add(@"Dholuo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lup", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lumbu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "luq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lucumi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lur", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Laura"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lus", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lushai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lut", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lushootseed"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "luu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lumba-Yakkha"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "luv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Luwati"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "luw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Luo (Cameroon)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "luy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "macrolanguage", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Luyia"); + record.Description.Add(@"Oluluyia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "luz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southern Luri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lva", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Maku'a"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lvi", + Added = new DateOnly(2019, 4, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lavi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lvk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lavukaleve"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lvl", + Added = new DateOnly(2023, 3, 17), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lwel"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lvs", + Added = new DateOnly(2010, 3, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "lv", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Standard Latvian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lvu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Levuka"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lwa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lwalu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lwe", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lewo Eleng"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lwg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "luy", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wanga"); + record.Description.Add(@"Oluwanga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lwh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"White Lachi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lwl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Eastern Lawa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lwm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Laomian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lwo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Luwo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lws", + Added = new DateOnly(2018, 3, 8), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Malawian Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lwt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lewotobi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lwu", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lawu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lww", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lewo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lxm", + Added = new DateOnly(2021, 2, 20), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lakurumau"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lya", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Layakha"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lyg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lyngngam"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lyn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Luyana"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lzh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "zh", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Literary Chinese"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lzl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Litzlitz"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lzn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Leinong Naga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "lzz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Laz"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "maa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"San Jerónimo Tecóatl Mazatec"); + record.Comments.Add(@"see also pbm"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mab", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yutanduchi Mixtec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mad", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Madurese"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mae", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bo-Rukul"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "maf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mafa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mag", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Magahi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mai", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Deva", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Maithili"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "maj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jalapa De Díaz Mazatec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mak", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Makasar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mam", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mam"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "man", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "macrolanguage", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mandingo"); + record.Description.Add(@"Manding"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "map", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Austronesian languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "maq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chiquihuitlán Mazatec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mas", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Masai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mat", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"San Francisco Matlatzinca"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mau", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Huautla Mazatec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mav", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sateré-Mawé"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "maw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mampruli"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "max", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ms", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"North Moluccan Malay"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "maz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Central Mazahua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mba", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Higaonon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mbb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Western Bukidnon Manobo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mbc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Macushi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mbd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dibabawon Manobo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mbe", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Molale"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mbf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Baba Malay"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mbh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mangseng"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mbi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ilianen Manobo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mbj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nadëb"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mbk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Malol"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mbl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Maxakalí"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mbm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ombamba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mbn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Macaguán"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mbo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mbo (Cameroon)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mbp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Malayo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mbq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Maisin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mbr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nukak Makú"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mbs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sarangani Manobo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mbt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Matigsalug Manobo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mbu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mbula-Bwazza"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mbv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mbulungish"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mbw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Maring"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mbx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mari (East Sepik Province)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mby", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Memoni"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mbz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Amoltepec Mixtec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mca", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Maca"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mcb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Machiguenga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mcc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bitur"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mcd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sharanahua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mce", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Itundujia Mixtec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mcf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Matsés"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mcg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mapoyo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mch", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Maquiritari"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mci", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mese"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mcj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mvanip"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mck", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mbunda"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mcl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Macaguaje"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mcm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Malaccan Creole Portuguese"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mcn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Masana"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mco", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Coatlán Mixe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mcp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Makaa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mcq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ese"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mcr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Menya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mcs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mambai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mct", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mengisa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mcu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cameroon Mambila"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mcv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Minanibai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mcw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mawa (Chad)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mcx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mpiemo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mcy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"South Watut"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mcz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mawan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mda", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mada (Nigeria)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mdb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Morigi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mdc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Male (Papua New Guinea)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mdd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mbum"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mde", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Maba (Chad)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mdf", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Moksha"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mdg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Massalat"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mdh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Maguindanaon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mdi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mamvu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mdj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mangbetu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mdk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mangbutu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mdl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Maltese Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mdm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mayogo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mdn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mbati"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mdp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mbala"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mdq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mbole"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mdr", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mandar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mds", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Maria (Papua New Guinea)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mdt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mbere"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mdu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mboko"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mdv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Santa Lucía Monteverde Mixtec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mdw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mbosi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mdx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dizin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mdy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Male (Ethiopia)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mdz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Suruí Do Pará"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mea", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Menka"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "meb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ikobi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mec", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Marra"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "med", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Melpa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mee", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mengen"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mef", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Megam"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "meg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2013, 9, 10), + PreferredValue = "cir", + Tag = "", + }; + record.Description.Add(@"Mea"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "meh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southwestern Tlaxiaco Mixtec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mei", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Midob"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mej", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Meyah"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mek", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mekeo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mel", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Central Melanau"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mem", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mangala"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "men", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Latn", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mende (Sierra Leone)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "meo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ms", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kedah Malay"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mep", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Miriwoong"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "meq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Merey"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mer", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Meru"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mes", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Masmaje"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "met", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mato"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "meu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Motu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mev", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mano"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mew", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Maaka"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mey", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hassaniyya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mez", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Menominee"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mfa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ms", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pattani Malay"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mfb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ms", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bangka"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mfc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mfd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mendankwe-Nkwen"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mfe", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Morisyen"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mff", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Naki"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mfg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mogofin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mfh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Matal"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mfi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wandala"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mfj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mefele"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mfk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"North Mofu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mfl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Putai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mfm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Marghi South"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mfn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cross River Mbembe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mfo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mbe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mfp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Makassar Malay"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mfq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Moba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mfr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Marrithiyel"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mfs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mexican Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mft", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mokerang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mfu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mbwela"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mfv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mandjak"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mfw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mulaha"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mfx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Melo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mfy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mayo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mfz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mabaan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mga", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Middle Irish (900-1200)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mgb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mararit"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mgc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Morokodo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mgd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Moru"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mge", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mango"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mgf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Maklew"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mgg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mpumpong"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mgh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Makhuwa-Meetto"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mgi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lijili"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mgj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Abureni"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mgk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mawes"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mgl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Maleu-Kilenge"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mgm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mambae"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mgn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mbangi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mgo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Meta'"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mgp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Eastern Magar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mgq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Malila"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mgr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mambwe-Lungu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mgs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Manda (Tanzania)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mgt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mongol"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mgu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mailu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mgv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Matengo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mgw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Matumbi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mgx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2012, 8, 12), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Omati"); + record.Comments.Add(@"see jbk, jmw"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mgy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mbunga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mgz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mbugwe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mha", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Manda (India)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mhb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mahongwe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mhc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mocho"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mhd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mbugu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mhe", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Besisi"); + record.Description.Add(@"Mah Meri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mhf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mamaa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mhg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Margu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mhh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2014, 2, 28), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Maskoy Pidgin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mhi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ma'di"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mhj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mogholi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mhk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mungaka"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mhl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mauwake"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mhm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Makhuwa-Moniga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mhn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mócheno"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mho", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mashi (Zambia)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mhp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Balinese Malay"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mhq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mandan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mhr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "chm", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Eastern Mari"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mhs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Buru (Indonesia)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mht", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mandahuaca"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mhu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Digaro-Mishmi"); + record.Description.Add(@"Darang Deng"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mhw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mbukushu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mhx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Maru"); + record.Description.Add(@"Lhaovo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mhy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ma'anyan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mhz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mor (Mor Islands)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mia", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Miami"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mib", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Atatláhuca Mixtec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mic", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mi'kmaq"); + record.Description.Add(@"Micmac"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mid", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mandaic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mie", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ocotepec Mixtec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mif", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mofu-Gudur"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mig", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"San Miguel El Grande Mixtec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mih", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chayuco Mixtec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mii", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chigmecatitlán Mixtec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mij", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Abar"); + record.Description.Add(@"Mungbam"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mik", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mikasuki"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mil", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Peñoles Mixtec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mim", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Alacatlatzala Mixtec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "min", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "ms", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Minangkabau"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mio", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pinotepa Nacional Mixtec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mip", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Apasco-Apoala Mixtec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "miq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mískito"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mir", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Isthmus Mixe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mis", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "special", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Uncoded languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mit", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southern Puebla Mixtec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "miu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cacaloxtepec Mixtec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "miw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Akoye"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mix", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mixtepec Mixtec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "miy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ayutla Mixtec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "miz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Coatzospan Mixtec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mja", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2011, 8, 16), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mahei"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mjb", + Added = new DateOnly(2016, 5, 30), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Makalero"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mjc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"San Juan Colorado Mixtec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mjd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Northwest Maidu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mje", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Muskum"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mjg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mjh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mwera (Nyasa)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mji", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kim Mun"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mjj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mawak"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mjk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Matukar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mjl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mandeali"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mjm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Medebur"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mjn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ma (Papua New Guinea)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mjo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Malankuravan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mjp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Malapandaram"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mjq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Malaryan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mjr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Malavedan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mjs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Miship"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mjt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sauria Paharia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mju", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Manna-Dora"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mjv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mannan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mjw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Karbi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mjx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mahali"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mjy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mahican"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mjz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Majhi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mka", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mbre"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mkb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mal Paharia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mkc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Siliput"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mke", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mawchi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mkf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Miya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mkg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mak (China)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mkh", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mon-Khmer languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mki", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dhatki"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mkj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mokilese"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mkk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Byep"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mkl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mokole"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mkm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Moklen"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mkn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kupang Malay"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mko", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mingang Doso"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mkp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Moikodi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mkq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bay Miwok"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mkr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Malas"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mks", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Silacayoapan Mixtec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mkt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Vamale"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mku", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "man", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Konyanka Maninka"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mkv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mafea"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mkw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kituba (Congo)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mkx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kinamiging Manobo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mky", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"East Makian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mkz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Makasae"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mla", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Malo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mlb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mbule"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mlc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cao Lan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mld", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2013, 9, 10), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Malakhel"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mle", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Manambu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mlf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mal"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mlh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mape"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mli", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Malimpung"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mlj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Miltu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mlk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ilwana"); + record.Description.Add(@"Kiwilwana"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mll", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Malua Bay"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mlm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mulam"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mln", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Malango"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mlo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mlomp"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mlp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bargam"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mlq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "man", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Western Maninkakan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mlr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Vame"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mls", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Masalit"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mlu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"To'abaita"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mlv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Motlav"); + record.Description.Add(@"Mwotlap"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mlw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Moloko"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mlx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Malfaxal"); + record.Description.Add(@"Naha'ai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mlz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Malaynon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mma", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mama"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mmb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Momina"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mmc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Michoacán Mazahua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mmd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Maonan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mme", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mae"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mmf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mundat"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mmg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"North Ambrym"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mmh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mehináku"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mmi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hember Avu"); + record.Description.Add(@"Amben"); + record.Description.Add(@"Musar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mmj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Majhwar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mmk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mukha-Dora"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mml", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Man Met"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mmm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Maii"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mmn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mamanwa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mmo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mangga Buang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mmp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Siawi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mmq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Musak"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mmr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "hmn", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Western Xiangxi Miao"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mmt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Malalamai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mmu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mmaala"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mmv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Miriti"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mmw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Emae"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mmx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Madak"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mmy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Migaama"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mmz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mabaale"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mna", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mbula"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mnb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Muna"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mnc", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Manchu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mnd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mondé"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mne", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Naba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mnf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mundani"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mng", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Eastern Mnong"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mnh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mono (Democratic Republic of Congo)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mni", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Manipuri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mnj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Munji"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mnk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "man", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mandinka"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mnl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tiale"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mnm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mapena"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mnn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southern Mnong"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mno", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Manobo languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mnp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "zh", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Min Bei Chinese"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mnq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Minriq"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mnr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mono (USA)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mns", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mansi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mnt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2013, 9, 10), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Maykulan"); + record.Comments.Add(@"see wnn, xyj, xyk, xyt"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mnu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mer"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mnv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Rennell-Bellona"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mnw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mnx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Manikion"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mny", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Manyawa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mnz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Moni"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "moa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mwan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "moc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mocoví"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mod", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mobilian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "moe", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Innu"); + record.Description.Add(@"Montagnais"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mof", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2010, 3, 11), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mohegan-Montauk-Narragansett"); + record.Comments.Add(@"see xnt, xpq"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mog", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mongondow"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "moh", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mohawk"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "moi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mboi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "moj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Monzombo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mok", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Morori"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mom", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mangue"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "moo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Monom"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mop", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mopán Maya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "moq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mor (Bomberai Peninsula)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mor", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Moro"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mos", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mossi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mot", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Barí"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mou", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mogum"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mov", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mohave"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mow", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Moi (Congo)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mox", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Molima"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "moy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Shekkacho"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "moz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mukulu"); + record.Description.Add(@"Gergiko"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mpa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mpoto"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mpb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Malak Malak"); + record.Description.Add(@"Mullukmulluk"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mpc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mangarrayi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mpd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Machinere"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mpe", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Majang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mpg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Marba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mph", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Maung"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mpi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mpade"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mpj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Martu Wangka"); + record.Description.Add(@"Wangkajunga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mpk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mbara (Chad)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mpl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Middle Watut"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mpm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yosondúa Mixtec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mpn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mindiri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mpo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Miu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mpp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Migabac"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mpq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Matís"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mpr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Vangunu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mps", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dadibi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mpt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mpu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Makuráp"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mpv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mungkip"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mpw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mapidian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mpx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Misima-Panaeati"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mpy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mapia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mpz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mpi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mqa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Maba (Indonesia)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mqb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mbuko"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mqc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mangole"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mqe", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Matepi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mqf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Momuna"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mqg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ms", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kota Bangun Kutai Malay"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mqh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tlazoyaltepec Mixtec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mqi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mariri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mqj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mamasa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mqk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Rajah Kabunsuwan Manobo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mql", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mbelime"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mqm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"South Marquesan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mqn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Moronene"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mqo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Modole"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mqp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Manipa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mqq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Minokok"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mqr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mander"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mqs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"West Makian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mqt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mok"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mqu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mandari"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mqv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mosimo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mqw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Murupi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mqx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mamuju"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mqy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Manggarai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mqz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pano"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mra", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mlabri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mrb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Marino"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mrc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Maricopa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mrd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Western Magar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mre", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Martha's Vineyard Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mrf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Elseng"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mrg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mising"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mrh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mara Chin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mrj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "chm", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Western Mari"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mrk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hmwaveke"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mrl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mortlockese"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mrm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Merlav"); + record.Description.Add(@"Mwerlap"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mrn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cheke Holo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mro", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mru"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mrp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Morouas"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mrq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"North Marquesan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mrr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Maria (India)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mrs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Maragus"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mrt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Marghi Central"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mru", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mono (Cameroon)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mrv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mangareva"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mrw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Maranao"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mrx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Maremgi"); + record.Description.Add(@"Dineor"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mry", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mandaya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mrz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Marind"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "msb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Masbatenyo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "msc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "man", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sankaran Maninka"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "msd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yucatec Maya Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mse", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Musey"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "msf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mekwei"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "msg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Moraid"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "msh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "mg", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Masikoro Malagasy"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "msi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ms", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sabah Malay"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "msj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ma (Democratic Republic of Congo)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "msk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mansaka"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "msl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Molof"); + record.Description.Add(@"Poule"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "msm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Agusan Manobo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "msn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Vurës"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mso", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mombum"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "msp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Maritsauá"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "msq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Caac"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "msr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mongolian Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mss", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"West Masela"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mst", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2010, 3, 11), + PreferredValue = "mry", + Tag = "", + }; + record.Description.Add(@"Cataelano Mandaya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "msu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Musom"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "msv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Maslam"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "msw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mansoanka"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "msx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Moresada"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "msy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Aruamu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "msz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Momare"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mta", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cotabato Manobo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mtb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Anyin Morofo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mtc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Munit"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mtd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mualang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mte", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mono (Solomon Islands)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mtf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Murik (Papua New Guinea)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mtg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Una"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mth", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Munggui"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mti", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Maiwa (Papua New Guinea)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mtj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Moskona"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mtk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mbe'"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mtl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Montol"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mtm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mator"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mtn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Matagalpa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mto", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Totontepec Mixe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mtp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wichí Lhamtés Nocten"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mtq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Muong"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mtr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "mwr", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mewari"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mts", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yora"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mtt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mota"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mtu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tututepec Mixtec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mtv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Asaro'o"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mtw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southern Binukidnon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mtx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tidaá Mixtec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mty", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nabi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mua", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mundang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mub", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mubi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "muc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ajumbu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mud", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mednyj Aleut"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mue", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Media Lengua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mug", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Musgu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "muh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mündü"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mui", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ms", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Musi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "muj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mabire"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "muk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mugom"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mul", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "special", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Multiple languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mum", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Maiwala"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mun", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Munda languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "muo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nyong"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mup", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "raj", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Malvi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "muq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "hmn", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Eastern Xiangxi Miao"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mur", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Murle"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mus", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Creek"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mut", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Western Muria"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "muu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yaaku"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "muv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Muthuvan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mux", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bo-Ung"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "muy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Muyang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "muz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mursi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mva", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Manam"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mvb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mattole"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mvd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mamboru"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mve", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "mwr", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Marwari (Pakistan)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mvf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "mn", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Peripheral Mongolian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mvg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yucuañe Mixtec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mvh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mulgi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mvi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Miyako"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mvk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mekmek"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mvl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mbara (Australia)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mvm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2021, 2, 20), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Muya"); + record.Comments.Add(@"see emq, wmg"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mvn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Minaveha"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mvo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Marovo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mvp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Duri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mvq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Moere"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mvr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Marau"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mvs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Massep"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mvt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mpotovoro"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mvu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Marfa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mvv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tagal Murut"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mvw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Machinga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mvx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Meoswar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mvy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Indus Kohistani"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mvz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mesqan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mwa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mwatebu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mwb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Juwal"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mwc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Are"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mwd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2013, 9, 10), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mudbura"); + record.Comments.Add(@"see dmw, xrq"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mwe", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mwera (Chimwera)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mwf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Murrinh-Patha"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mwg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Aiklep"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mwh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mouk-Aria"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mwi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Labo"); + record.Description.Add(@"Ninde"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mwj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2015, 2, 12), + PreferredValue = "vaj", + Tag = "", + }; + record.Description.Add(@"Maligo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mwk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "man", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kita Maninkakan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mwl", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mirandese"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mwm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mwn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nyamwanga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mwo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Central Maewo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mwp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kala Lagaw Ya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mwq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mün Chin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mwr", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "macrolanguage", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Marwari"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mws", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mwimbi-Muthambi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mwt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Moken"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mwu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mittu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mwv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mentawai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mww", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "hmn", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hmong Daw"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mwx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2018, 3, 8), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mediak"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mwy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2018, 3, 8), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mosiro"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mwz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Moingi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mxa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Northwest Oaxaca Mixtec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mxb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tezoatlán Mixtec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mxc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Manyika"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mxd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Modang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mxe", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mele-Fila"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mxf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Malgbe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mxg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mbangala"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mxh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mvuba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mxi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mozarabic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mxj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Miju-Mishmi"); + record.Description.Add(@"Geman Deng"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mxk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Monumbo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mxl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Maxi Gbe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mxm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Meramera"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mxn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Moi (Indonesia)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mxo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mbowe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mxp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tlahuitoltepec Mixe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mxq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Juquila Mixe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mxr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Murik (Malaysia)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mxs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Huitepec Mixtec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mxt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jamiltepec Mixtec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mxu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mada (Cameroon)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mxv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Metlatónoc Mixtec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mxw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Namo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mxx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mahou"); + record.Description.Add(@"Mawukakan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mxy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southeastern Nochixtlán Mixtec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mxz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Central Masela"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "myb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mbay"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "myc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mayeka"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "myd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2019, 4, 16), + PreferredValue = "aog", + Tag = "", + }; + record.Description.Add(@"Maramba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mye", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Myene"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "myf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bambassi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "myg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Manta"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "myh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Makah"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "myi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2019, 4, 16), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mina (India)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "myj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mangayat"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "myk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mamara Senoufo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "myl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Moma"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mym", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Me'en"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "myn", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mayan languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "myo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Anfillo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "myp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pirahã"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "myq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "man", + Deprecated = new DateOnly(2013, 9, 10), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Forest Maninka"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "myr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Muniche"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mys", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mesmes"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "myt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2010, 3, 11), + PreferredValue = "mry", + Tag = "", + }; + record.Description.Add(@"Sangab Mandaya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "myu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mundurukú"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "myv", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Erzya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "myw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Muyuw"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "myx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Masaaba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "myy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Macuna"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "myz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Classical Mandaic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mza", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Santa María Zacatepec Mixtec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mzb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tumzabt"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mzc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Madagascar Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mzd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Malimba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mze", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Morawa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mzg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Monastic Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mzh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wichí Lhamtés Güisnay"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mzi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ixcatlán Mazatec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mzj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Manya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mzk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nigeria Mambila"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mzl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mazatlán Mixe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mzm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mumuye"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mzn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mazanderani"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mzo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Matipuhy"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mzp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Movima"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mzq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mori Atas"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mzr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Marúbo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mzs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Macanese"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mzt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mintil"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mzu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Inapang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mzv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Manza"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mzw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Deg"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mzx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mawayana"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mzy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mozambican Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "mzz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Maiadomu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "naa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Namla"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nab", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southern Nambikuára"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nac", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Narak"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nad", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2016, 5, 30), + PreferredValue = "xny", + Tag = "", + }; + record.Description.Add(@"Nijadali"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nae", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Naka'ela"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "naf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nabak"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nag", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Naga Pidgin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nah", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nahuatl languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nai", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"North American Indian languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "naj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nalu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nak", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nakanai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nal", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nalik"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nam", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ngan'gityemerri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nan", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "zh", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Min Nan Chinese"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nao", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Naaba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nap", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Neapolitan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "naq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Khoekhoe"); + record.Description.Add(@"Nama (Namibia)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nar", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Iguta"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nas", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Naasioi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nat", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ca̱hungwa̱rya̱"); + record.Description.Add(@"Hungworo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "naw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nawuri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nax", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nakwi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nay", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ngarrindjeri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "naz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Coatepec Nahuatl"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nba", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nyemba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nbb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ndoe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nbc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chang Naga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nbd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ngbinda"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nbe", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Konyak Naga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nbf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2011, 8, 16), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Naxi"); + record.Comments.Add(@"see nru, nxq"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nbg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nagarchal"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nbh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ngamo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nbi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mao Naga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nbj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ngarinyman"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nbk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nake"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nbm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ngbaka Ma'bo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nbn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kuri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nbo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nkukoli"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nbp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nnam"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nbq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nggem"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nbr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Numana"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nbs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Namibian Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nbt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Na"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nbu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Rongmei Naga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nbv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ngamambo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nbw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southern Ngbandi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nbx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2013, 9, 10), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ngura"); + record.Comments.Add(@"see ekc, gll, jbi, xpt, xwk"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nby", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ningera"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nca", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Iyo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ncb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Central Nicobarese"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ncc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ponam"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ncd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nachering"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nce", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yale"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ncf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Notsi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ncg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nisga'a"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nch", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Central Huasteca Nahuatl"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nci", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Classical Nahuatl"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ncj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Northern Puebla Nahuatl"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nck", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Na-kara"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ncl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Michoacán Nahuatl"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ncm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nambo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ncn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nauna"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nco", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sibe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ncp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2018, 3, 8), + PreferredValue = "kdz", + Tag = "", + }; + record.Description.Add(@"Ndaktup"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ncq", + Added = new DateOnly(2017, 2, 23), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Northern Katang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ncr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ncane"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ncs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nicaraguan Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nct", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chothe Naga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ncu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chumburung"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ncx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Central Puebla Nahuatl"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ncz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Natchez"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nda", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ndasa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ndb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kenswei Nsei"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ndc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ndau"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ndd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nde-Nsele-Nta"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ndf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nadruvian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ndg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ndengereko"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ndh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ndali"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ndi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Samba Leko"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ndj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ndamba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ndk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ndaka"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ndl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ndolo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ndm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ndam"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ndn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ngundi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ndp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ndo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ndq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ndombe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ndr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ndoola"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nds", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Latn", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Low German"); + record.Description.Add(@"Low Saxon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ndt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ndunga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ndu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dugun"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ndv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ndut"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ndw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ndobo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ndx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nduga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ndy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lutos"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ndz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ndogo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nea", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Eastern Ngad'a"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "neb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Toura (Côte d'Ivoire)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nec", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nedebang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ned", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nde-Gbite"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nee", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nêlêmwa-Nixumwak"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nef", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nefamese"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "neg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Negidal"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "neh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nyenkha"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nei", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Neo-Hittite"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nej", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Neko"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nek", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Neku"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nem", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nemi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nen", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nengone"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "neo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ná-Meo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "neq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"North Central Mixe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ner", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yahadian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nes", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bhoti Kinnauri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "net", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nete"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "neu", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Neo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nev", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nyaheun"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "new", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nepal Bhasa"); + record.Description.Add(@"Newar"); + record.Description.Add(@"Newari"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nex", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Neme"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ney", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Neyo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nez", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nez Perce"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nfa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dhao"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nfd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ahwai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nfl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ayiwo"); + record.Description.Add(@"Äiwoo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nfr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nafaanra"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nfu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mfumte"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nga", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ngbaka"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ngb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Northern Ngbandi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ngc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ngombe (Democratic Republic of Congo)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ngd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ngando (Central African Republic)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nge", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ngemba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ngf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Trans-New Guinea languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ngg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ngbaka Manza"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ngh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nǁng"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ngi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ngizim"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ngj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ngie"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ngk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dalabon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ngl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lomwe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ngm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ngatik Men's Creole"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ngn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ngwo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ngo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2021, 2, 20), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ngoni"); + record.Comments.Add(@"see xnj, xnq"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ngp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ngulu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ngq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ngurimi"); + record.Description.Add(@"Ngoreme"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ngr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Engdewu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ngs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gvoko"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ngt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kriang"); + record.Description.Add(@"Ngeq"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ngu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Guerrero Nahuatl"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ngv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nagumi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ngw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ngwaba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ngx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nggwahyi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ngy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tibea"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ngz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ngungwel"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nha", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nhanda"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nhb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Beng"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nhc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tabasco Nahuatl"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nhd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "gn", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chiripá"); + record.Description.Add(@"Ava Guaraní"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nhe", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Eastern Huasteca Nahuatl"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nhf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nhuwala"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nhg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tetelcingo Nahuatl"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nhh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nahari"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nhi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Zacatlán-Ahuacatlán-Tepetzintla Nahuatl"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nhk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Isthmus-Cosoleacaque Nahuatl"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nhm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Morelos Nahuatl"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nhn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Central Nahuatl"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nho", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Takuu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nhp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Isthmus-Pajapan Nahuatl"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nhq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Huaxcaleca Nahuatl"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nhr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Naro"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nht", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ometepec Nahuatl"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nhu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Noone"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nhv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Temascaltepec Nahuatl"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nhw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Western Huasteca Nahuatl"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nhx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Isthmus-Mecayapan Nahuatl"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nhy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Northern Oaxaca Nahuatl"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nhz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Santa María La Alta Nahuatl"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nia", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nias"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nib", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nakame"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nic", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Niger-Kordofanian languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nid", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ngandi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nie", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Niellim"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nif", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nek"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nig", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ngalakgan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nih", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nyiha (Tanzania)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nii", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nii"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nij", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ngaju"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nik", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southern Nicobarese"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nil", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nila"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nim", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nilamba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nin", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ninzo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nio", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nganasan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "niq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "kln", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nandi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nir", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nimboran"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nis", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nimi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nit", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southeastern Kolami"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "niu", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Latn", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Niuean"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "niv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gilyak"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "niw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nimo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nix", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hema"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "niy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ngiti"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "niz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ningil"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nja", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nzanyi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "njb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nocte Naga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "njd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ndonde Hamba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "njh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lotha Naga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nji", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gudanji"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "njj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Njen"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "njl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Njalgulgule"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "njm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Angami Naga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "njn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Liangmai Naga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "njo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ao Naga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "njr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Njerep"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "njs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nisa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "njt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ndyuka-Trio Pidgin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nju", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ngadjunmaya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "njx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kunyi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "njy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Njyem"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "njz", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nyishi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nka", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nkoya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nkb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Khoibu Naga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nkc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nkongho"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nkd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Koireng"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nke", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Duke"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nkf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Inpui Naga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nkg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nekgini"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nkh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Khezha Naga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nki", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Thangal Naga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nkj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nakai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nkk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nokuku"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nkm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Namat"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nkn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nkangala"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nko", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nkonya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nkp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Niuatoputapu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nkq", + Added = new DateOnly(2010, 4, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nkami"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nkr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nukuoro"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nks", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"North Asmat"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nkt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nyika (Tanzania)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nku", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bouna Kulango"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nkv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nyika (Malawi and Zambia)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nkw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nkutu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nkx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nkoroo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nkz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nkari"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nla", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ngombale"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nlc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nalca"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nle", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "luy", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"East Nyala"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nlg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gela"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nli", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Grangali"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nlj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nyali"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nlk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ninia Yali"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nll", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nihali"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nlm", + Added = new DateOnly(2018, 3, 8), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mankiyali"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nln", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2012, 8, 12), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Durango Nahuatl"); + record.Comments.Add(@"see azd, azn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nlo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ngul"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nlq", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lao Naga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nlr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2013, 9, 10), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ngarla"); + record.Comments.Add(@"see nrk, ywg"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nlu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nchumbulu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nlv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Orizaba Nahuatl"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nlw", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Walangama"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nlx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nahali"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nly", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nyamal"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nlz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nalögo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nma", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Maram Naga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nmb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Big Nambas"); + record.Description.Add(@"V'ënen Taut"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nmc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ngam"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nmd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ndumu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nme", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mzieme Naga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nmf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tangkhul Naga (India)"); + record.Comments.Add(@"see ntx"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nmg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kwasio"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nmh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Monsang Naga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nmi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nyam"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nmj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ngombe (Central African Republic)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nmk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Namakura"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nml", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ndemli"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nmm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Manangba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nmn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"ǃXóõ"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nmo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Moyon Naga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nmp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nimanbur"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nmq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nambya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nmr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nimbari"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nms", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Letemboi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nmt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Namonuito"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nmu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Northeast Maidu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nmv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ngamini"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nmw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nimoa"); + record.Description.Add(@"Rifao"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nmx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nama (Papua New Guinea)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nmy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Namuyi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nmz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nawdm"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nna", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nyangumarta"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nnb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nande"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nnc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nancere"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nnd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"West Ambae"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nne", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ngandyera"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nnf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ngaing"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nng", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Maring Naga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nnh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ngiemboon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nni", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"North Nuaulu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nnj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nyangatom"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nnk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nankina"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nnl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Northern Rengma Naga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nnm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Namia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nnn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ngete"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nnp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wancho Naga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nnq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ngindo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nnr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Narungga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nns", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2019, 4, 16), + PreferredValue = "nbr", + Tag = "", + }; + record.Description.Add(@"Ningye"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nnt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nanticoke"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nnu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dwang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nnv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nugunu (Australia)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nnw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southern Nuni"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nnx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2015, 2, 12), + PreferredValue = "ngv", + Tag = "", + }; + record.Description.Add(@"Ngong"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nny", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nyangga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nnz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nda'nda'"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "noa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Woun Meu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "noc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nuk"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nod", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Northern Thai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "noe", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nimadi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nof", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nomane"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nog", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nogai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "noh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nomu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "noi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Noiri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "noj", + Added = new DateOnly(2010, 3, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nonuya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nok", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nooksack"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nol", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nomlaki"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nom", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2023, 3, 17), + PreferredValue = "cbr", + Tag = "", + }; + record.Description.Add(@"Nocamán"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "non", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Old Norse"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "noo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2011, 8, 16), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nootka"); + record.Comments.Add(@"see dtd, nuk"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nop", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Numanggang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "noq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ngongo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nos", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Eastern Nisu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "not", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nomatsiguenga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nou", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ewage-Notu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nov", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Novial"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "now", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nyambo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "noy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Noy"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "noz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nayi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "npa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nar Phu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "npb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nupbikha"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "npg", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ponyo-Gongwang Naga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nph", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Phom Naga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "npi", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "ne", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nepali (individual language)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "npl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southeastern Puebla Nahuatl"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "npn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mondropolon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "npo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pochuri Naga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nps", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nipsan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "npu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Puimei Naga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "npx", + Added = new DateOnly(2017, 2, 23), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Noipx"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "npy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Napu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nqg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southern Nago"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nqk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kura Ede Nago"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nql", + Added = new DateOnly(2017, 2, 23), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ngendelengo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nqm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ndom"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nqn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nen"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nqo", + Added = new DateOnly(2006, 6, 5), + SuppressScript = "Nkoo", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"N'Ko"); + record.Description.Add(@"N’Ko"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nqq", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kyan-Karyaw Naga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nqt", + Added = new DateOnly(2021, 2, 20), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nteng"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nqy", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Akyaung Ari Naga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nra", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ngom"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nrb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nara"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nrc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Noric"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nre", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southern Rengma Naga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nrf", + Added = new DateOnly(2015, 2, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jèrriais"); + record.Description.Add(@"Guernésiais"); + record.Description.Add(@"Sercquiais"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nrg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Narango"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nri", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chokri Naga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nrk", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ngarla"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nrl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ngarluma"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nrm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Narom"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nrn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Norn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nrp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"North Picene"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nrr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Norra"); + record.Description.Add(@"Nora"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nrt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Northern Kalapuya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nru", + Added = new DateOnly(2011, 8, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Narua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nrx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ngurmbur"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nrz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lala"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nsa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sangtam Naga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nsb", + Added = new DateOnly(2020, 3, 28), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lower Nossob"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nsc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nshi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nsd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southern Nisu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nse", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nsenga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nsf", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Northwestern Nisu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nsg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ngasa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nsh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ngoshie"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nsi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nigerian Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nsk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Naskapi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nsl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Norwegian Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nsm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sumi Naga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nsn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nehan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nso", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Latn", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pedi"); + record.Description.Add(@"Northern Sotho"); + record.Description.Add(@"Sepedi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nsp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nepalese Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nsq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Northern Sierra Miwok"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nsr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Maritime Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nss", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nali"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nst", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tase Naga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nsu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sierra Negra Nahuatl"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nsv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southwestern Nisu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nsw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Navut"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nsx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nsongo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nsy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nasal"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nsz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nisenan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ntd", + Added = new DateOnly(2016, 5, 30), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Northern Tidung"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nte", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2024, 12, 12), + PreferredValue = "eko", + Tag = "", + }; + record.Description.Add(@"Nathembo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ntg", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ngantangarra"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nti", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Natioro"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ntj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ngaanyatjarra"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ntk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ikoma-Nata-Isenye"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ntm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nateni"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nto", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ntomba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ntp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Northern Tepehuan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ntr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Delo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nts", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2016, 5, 30), + PreferredValue = "pij", + Tag = "", + }; + record.Description.Add(@"Natagaimas"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ntu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Natügu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ntw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nottoway"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ntx", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tangkhul Naga (Myanmar)"); + record.Comments.Add(@"see nmf"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nty", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mantsi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ntz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Natanzi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nua", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yuanga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nub", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nubian languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nuc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nukuini"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nud", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ngala"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nue", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ngundu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nuf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nusu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nug", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nungali"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nuh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ndunda"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nui", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ngumbi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nuj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nyole"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nuk", + Added = new DateOnly(2011, 8, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nuu-chah-nulth"); + record.Description.Add(@"Nuuchahnulth"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nul", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nusa Laut"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "num", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Niuafo'ou"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nun", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Anong"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nuo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nguôn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nup", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nupe-Nupe-Tako"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nuq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nukumanu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nur", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nukuria"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nus", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nuer"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nut", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nung (Viet Nam)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nuu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ngbundu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nuv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Northern Nuni"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nuw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nguluwan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nux", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mehek"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nuy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nunggubuyu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nuz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tlamacazapa Nahuatl"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nvh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nasarian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nvm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Namiae"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nvo", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nyokon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nwa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nawathinehena"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nwb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nyabwa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nwc", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Classical Newari"); + record.Description.Add(@"Classical Nepal Bhasa"); + record.Description.Add(@"Old Newari"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nwe", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ngwe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nwg", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ngayawung"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nwi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southwest Tanna"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nwm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nyamusa-Molo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nwo", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nauo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nwr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nawaru"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nww", + Added = new DateOnly(2022, 2, 25), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ndwewe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nwx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Middle Newar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nwy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nottoway-Meherrin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nxa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nauete"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nxd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ngando (Democratic Republic of Congo)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nxe", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nage"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nxg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ngad'a"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nxi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nindi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nxk", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Koki Naga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nxl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"South Nuaulu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nxm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Numidian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nxn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ngawun"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nxo", + Added = new DateOnly(2015, 2, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ndambomo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nxq", + Added = new DateOnly(2011, 8, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Naxi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nxr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ninggerum"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nxu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2020, 3, 28), + PreferredValue = "bpp", + Tag = "", + }; + record.Description.Add(@"Narau"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nxx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nafri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nyb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nyangbo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nyc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nyanga-li"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nyd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "luy", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nyore"); + record.Description.Add(@"Olunyole"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nye", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nyengo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nyf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Giryama"); + record.Description.Add(@"Kigiryama"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nyg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nyindu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nyh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nyikina"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nyi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ama (Sudan)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nyj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nyanga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nyk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nyaneka"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nyl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nyeu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nym", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nyamwezi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nyn", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nyankole"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nyo", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nyoro"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nyp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nyang'i"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nyq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nayini"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nyr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nyiha (Malawi)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nys", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nyungar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nyt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nyawaygi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nyu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nyungwe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nyv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nyulnyul"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nyw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nyaw"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nyx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nganyaywana"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nyy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nyakyusa-Ngonde"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nza", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tigon Mbembe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nzb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Njebi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nzd", + Added = new DateOnly(2018, 3, 8), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nzadi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nzi", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nzima"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nzk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nzakara"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nzm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Zeme Naga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nzr", + Added = new DateOnly(2023, 3, 17), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dir-Nyamzak-Mbarimi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nzs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"New Zealand Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nzu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Teke-Nzikou"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nzy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nzakambay"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "nzz", + Added = new DateOnly(2010, 3, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nanga Dama Dogon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "oaa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Orok"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "oac", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Oroch"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "oak", + Added = new DateOnly(2025, 5, 14), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Noakhali"); + record.Description.Add(@"Noakhailla"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "oar", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Old Aramaic (up to 700 BCE)"); + record.Description.Add(@"Ancient Aramaic (up to 700 BCE)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "oav", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Old Avar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "obi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Obispeño"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "obk", + Added = new DateOnly(2010, 3, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "bnc", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southern Bontok"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "obl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Oblo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "obm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Moabite"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "obo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Obo Manobo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "obr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Old Burmese"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "obt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Old Breton"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "obu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Obulom"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "oca", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ocaina"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "och", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Old Chinese"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ocm", + Added = new DateOnly(2021, 2, 20), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Old Cham"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "oco", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Old Cornish"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ocu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Atzingo Matlatzinca"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "oda", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Odut"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "odk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Od"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "odt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Old Dutch"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "odu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Odual"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ofo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ofo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ofs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Old Frisian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ofu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Efutop"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ogb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ogbia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ogc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ogbah"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "oge", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Old Georgian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ogg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ogbogolo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ogo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Khana"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ogu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ogbronuagum"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "oht", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Old Hittite"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ohu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Old Hungarian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "oia", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Oirata"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "oie", + Added = new DateOnly(2022, 2, 25), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Okolie"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "oin", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Inebu One"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ojb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "oj", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Northwestern Ojibwa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ojc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "oj", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Central Ojibwa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ojg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "oj", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Eastern Ojibwa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ojp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Old Japanese"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ojs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "oj", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Severn Ojibwa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ojv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ontong Java"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ojw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "oj", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Western Ojibwa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "oka", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Okanagan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "okb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Okobo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "okc", + Added = new DateOnly(2021, 2, 20), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kobo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "okd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Okodia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "oke", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Okpe (Southwestern Edo)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "okg", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Koko Babangk"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "okh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Koresh-e Rostam"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "oki", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "kln", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Okiek"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "okj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Oko-Juwoi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "okk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kwamtim One"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "okl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Old Kentish Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "okm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Middle Korean (10th-16th cent.)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "okn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Oki-No-Erabu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "oko", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Old Korean (3rd-9th cent.)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "okr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kirike"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "oks", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Oko-Eni-Osayen"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "oku", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Oku"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "okv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Orokaiva"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "okx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Okpe (Northwestern Edo)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "okz", + Added = new DateOnly(2021, 2, 20), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Old Khmer"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ola", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Walungge"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "old", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mochi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ole", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Olekha"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "olk", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Olkol"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "olm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Oloma"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "olo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Livvi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "olr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Olrat"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "olt", + Added = new DateOnly(2014, 2, 28), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Old Lithuanian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "olu", + Added = new DateOnly(2016, 5, 30), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kuvale"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "oma", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Omaha-Ponca"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "omb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"East Ambae"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "omc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mochica"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ome", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2016, 5, 30), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Omejes"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "omg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Omagua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "omi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Omi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "omk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Omok"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "oml", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ombo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "omn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Minoan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "omo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Utarmbung"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "omp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Old Manipuri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "omq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Oto-Manguean languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "omr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Old Marathi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "omt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Omotik"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "omu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Omurano"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "omv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Omotic languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "omw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"South Tairora"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "omx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Old Mon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "omy", + Added = new DateOnly(2021, 2, 20), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Old Malay"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ona", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ona"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "onb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lingao"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "one", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Oneida"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ong", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Olo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "oni", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Onin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "onj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Onjob"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "onk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kabore One"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "onn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Onobasulu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ono", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Onondaga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "onp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sartang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "onr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Northern One"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ons", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ono"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ont", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ontenu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "onu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Unua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "onw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Old Nubian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "onx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Onin Based Pidgin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ood", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tohono O'odham"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "oog", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ong"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "oon", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Önge"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "oor", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Oorlams"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "oos", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Old Ossetic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "opa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Okpamheri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "opk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kopkaka"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "opm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Oksapmin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "opo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Opao"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "opt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Opata"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "opy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ofayé"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ora", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Oroha"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "orc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "om", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Orma"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ore", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Orejón"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "org", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Oring"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "orh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Oroqen"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "orn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ms", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Orang Kanaq"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "oro", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Orokolo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "orr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Oruma"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ors", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ms", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Orang Seletar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ort", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Adivasi Oriya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "oru", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ormuri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "orv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Old Russian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "orw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Oro Win"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "orx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Oro"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ory", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "or", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Odia (individual language)"); + record.Description.Add(@"Oriya (individual language)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "orz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ormu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "osa", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Osage"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "osc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Oscan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "osi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Osing"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "osn", + Added = new DateOnly(2021, 2, 20), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Old Sundanese"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "oso", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ososo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "osp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Old Spanish"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ost", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Osatu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "osu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southern One"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "osx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Old Saxon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ota", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ottoman Turkish (1500-1928)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "otb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Old Tibetan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "otd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ot Danum"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ote", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mezquital Otomi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "oti", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Oti"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "otk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Old Turkish"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "otl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tilapa Otomi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "otm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Eastern Highland Otomi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "otn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tenango Otomi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "oto", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Otomian languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "otq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Querétaro Otomi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "otr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Otoro"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ots", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Estado de México Otomi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ott", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Temoaya Otomi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "otu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Otuke"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "otw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "oj", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ottawa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "otx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Texcatepec Otomi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "oty", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Old Tamil"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "otz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ixtenco Otomi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "oua", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tagargrent"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "oub", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Glio-Oubi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "oue", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Oune"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "oui", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Old Uighur"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "oum", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ouma"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "oun", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2015, 2, 12), + PreferredValue = "vaj", + Tag = "", + }; + record.Description.Add(@"ǃOǃung"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ovd", + Added = new DateOnly(2016, 6, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Elfdalian"); + record.Description.Add(@"Övdalian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "owi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Owiniga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "owl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Old Welsh"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "oyb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Oy"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "oyd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Oyda"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "oym", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wayampi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "oyy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Oya'oya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ozm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Koonzime"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "paa", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Papuan languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pab", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Parecís"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pac", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pacoh"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pad", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Paumarí"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pae", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pagibete"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "paf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Paranawát"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pag", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pangasinan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pah", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tenharim"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pai", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pak", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Parakanã"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pal", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pahlavi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pam", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pampanga"); + record.Description.Add(@"Kapampangan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pao", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Northern Paiute"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pap", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Papiamento"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "paq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Parya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "par", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Panamint"); + record.Description.Add(@"Timbisha"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pas", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Papasena"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pat", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2021, 2, 20), + PreferredValue = "kxr", + Tag = "", + }; + record.Description.Add(@"Papitalai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pau", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Palauan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pav", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pakaásnovos"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "paw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pawnee"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pax", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pankararé"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pay", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pech"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "paz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pankararú"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pbb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Páez"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pbc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Patamona"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pbe", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mezontla Popoloca"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pbf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Coyotepec Popoloca"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pbg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Paraujano"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pbh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"E'ñapa Woromaipu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pbi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Parkwa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pbl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mak (Nigeria)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pbm", + Added = new DateOnly(2018, 3, 8), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Puebla Mazatec"); + record.Comments.Add(@"see also maa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pbn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kpasam"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pbo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Papel"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pbp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Badyara"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pbr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pangwa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pbs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Central Pame"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pbt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ps", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southern Pashto"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pbu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ps", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Northern Pashto"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pbv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pnar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pby", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pyu (Papua New Guinea)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pbz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2012, 8, 12), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Palu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pca", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Santa Inés Ahuatempan Popoloca"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pcb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pear"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pcc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bouyei"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pcd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Picard"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pce", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ruching Palaung"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pcf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Paliyan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pcg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Paniya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pch", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pardhan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pci", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Duruwa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pcj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Parenga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pck", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Paite Chin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pcl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pardhi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pcm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nigerian Pidgin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pcn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Piti"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pcp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pacahuara"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pcr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2013, 9, 10), + PreferredValue = "adx", + Tag = "", + }; + record.Description.Add(@"Panang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pcw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pyapun"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pda", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Anam"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pdc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pennsylvania German"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pdi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pa Di"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pdn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Podena"); + record.Description.Add(@"Fedan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pdo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Padoe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pdt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Plautdietsch"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pdu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kayan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pea", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Peranakan Indonesian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "peb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Eastern Pomo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ped", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mala (Papua New Guinea)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pee", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Taje"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pef", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Northeastern Pomo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "peg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pengo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "peh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bonan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pei", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chichimeca-Jonaz"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pej", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Northern Pomo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pek", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Penchal"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pel", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ms", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pekal"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pem", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Phende"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "peo", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Old Persian (ca. 600-400 B.C.)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pep", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kunja"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "peq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southern Pomo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pes", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "fa", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Iranian Persian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pev", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pémono"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pex", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Petats"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pey", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Petjo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pez", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Eastern Penan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pfa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pááfang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pfe", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pere"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pfl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pfaelzisch"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pga", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ar", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sudanese Creole Arabic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pgd", + Added = new DateOnly(2015, 2, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gāndhārī"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pgg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pangwali"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pgi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pagi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pgk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Rerep"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pgl", + Added = new DateOnly(2011, 8, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Primitive Irish"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pgn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Paelignian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pgs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pangseng"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pgu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pagu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pgy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2012, 8, 12), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pongyong"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pgz", + Added = new DateOnly(2016, 5, 30), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Papua New Guinean Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pha", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pa-Hng"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "phd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Phudagi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "phg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Phuong"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "phh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Phukha"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "phi", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Philippine languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "phj", + Added = new DateOnly(2022, 2, 25), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pahari"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "phk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Phake"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "phl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Phalura"); + record.Description.Add(@"Palula"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "phm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Phimbi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "phn", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Phoenician"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pho", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Phunoi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "phq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Phana'"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "phr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "lah", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pahari-Potwari"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pht", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Phu Thai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "phu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Phuan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "phv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pahlavani"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "phw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Phangduwali"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pia", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pima Bajo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pib", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yine"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pic", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pinji"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pid", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Piaroa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pie", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Piro"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pif", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pingelapese"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pig", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pisabo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pih", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pitcairn-Norfolk"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pii", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2022, 2, 25), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pini"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pij", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pijao"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pil", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yom"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pim", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Powhatan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pin", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Piame"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pio", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Piapoco"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pip", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pero"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pir", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Piratapuyo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pis", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pijin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pit", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pitta Pitta"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "piu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pintupi-Luritja"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "piv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pileni"); + record.Description.Add(@"Vaeakau-Taumako"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "piw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pimbwe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pix", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Piu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "piy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Piya-Kwonci"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "piz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pije"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pjt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pitjantjatjara"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pka", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ardhamāgadhī Prākrit"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pkb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pokomo"); + record.Description.Add(@"Kipfokomo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pkc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Paekche"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pkg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pak-Tong"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pkh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pankhu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pkn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pakanha"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pko", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "kln", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pökoot"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pkp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pukapuka"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pkr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Attapady Kurumba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pks", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pakistan Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pkt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Maleng"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pku", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Paku"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pla", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Miani"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "plb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Polonombauk"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "plc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Central Palawano"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pld", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Polari"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ple", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Palu'e"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "plf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Central Malayo-Polynesian languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "plg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pilagá"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "plh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Paulohi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "plj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2023, 3, 17), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Polci"); + record.Comments.Add(@"see nzr, pze, uly, zlu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "plk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kohistani Shina"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pll", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Shwe Palaung"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pln", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Palenquero"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "plo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Oluta Popoluca"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "plp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2020, 3, 28), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Palpa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "plq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Palaic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "plr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Palaka Senoufo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pls", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"San Marcos Tlacoyalco Popoloca"); + record.Description.Add(@"San Marcos Tlalcoyalco Popoloca"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "plt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "mg", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Plateau Malagasy"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "plu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Palikúr"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "plv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southwest Palawano"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "plw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Brooke's Point Palawano"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ply", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bolyu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "plz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Paluan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pma", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Paama"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pmb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pambia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pmc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2016, 5, 30), + PreferredValue = "huw", + Tag = "", + }; + record.Description.Add(@"Palumata"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pmd", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pallanganmiddang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pme", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pwaamei"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pmf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pamona"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pmh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Māhārāṣṭri Prākrit"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pmi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Northern Pumi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pmj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southern Pumi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pmk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2023, 3, 17), + PreferredValue = "crr", + Tag = "", + }; + record.Description.Add(@"Pamlico"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pml", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lingua Franca"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pmm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pomo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pmn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pam"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pmo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pom"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pmq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Northern Pame"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pmr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Paynamar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pms", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Piemontese"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pmt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tuamotuan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pmu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "lah", + Deprecated = new DateOnly(2015, 2, 12), + PreferredValue = "phr", + Tag = "", + }; + record.Description.Add(@"Mirpur Panjabi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pmw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Plains Miwok"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pmx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Poumei Naga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pmy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Papuan Malay"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pmz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southern Pame"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pna", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Punan Bah-Biau"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pnb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "lah", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Western Panjabi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pnc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pannei"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pnd", + Added = new DateOnly(2019, 4, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mpinda"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pne", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Western Penan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "png", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pangu"); + record.Description.Add(@"Pongu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pnh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Penrhyn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pni", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Aoheng"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pnj", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pinjarup"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pnk", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Paunaka"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pnl", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Paleni"); + record.Comments.Add(@"see also wbf"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pnm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Punan Batu 1"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pnn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pinai-Hagahai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pno", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Panobo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pnp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pancana"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pnq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pana (Burkina Faso)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pnr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Panim"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pns", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ponosakan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pnt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pontic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pnu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jiongnai Bunu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pnv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pinigura"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pnw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Banyjima"); + record.Description.Add(@"Panytyima"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pnx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Phong-Kniang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pny", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pinyin"); + record.Comments.Add( + @"a Niger-Congo language spoken in Cameroon; not to be confused with the Pinyin romanization systems used for Chinese and Tibetan" + ); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pnz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pana (Central African Republic)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "poc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Poqomam"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pod", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2016, 5, 30), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ponares"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "poe", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"San Juan Atzingo Popoloca"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pof", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Poke"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pog", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Potiguára"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "poh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Poqomchi'"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "poi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Highland Popoluca"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pok", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pokangá"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pom", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southeastern Pomo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pon", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pohnpeian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "poo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Central Pomo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pop", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pwapwâ"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "poq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Texistepec Popoluca"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pos", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sayula Popoluca"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pot", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Potawatomi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pov", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Upper Guinea Crioulo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pow", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"San Felipe Otlaltepec Popoloca"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pox", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Polabian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "poy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pogolo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "poz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Malayo-Polynesian languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ppa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2016, 5, 30), + PreferredValue = "bfy", + Tag = "", + }; + record.Description.Add(@"Pao"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ppe", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Papi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ppi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Paipai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ppk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Uma"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ppl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pipil"); + record.Description.Add(@"Nicarao"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ppm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Papuma"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ppn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Papapana"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ppo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Folopa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ppp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pelende"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ppq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pei"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ppr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2013, 9, 10), + PreferredValue = "lcq", + Tag = "", + }; + record.Description.Add(@"Piru"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pps", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"San Luís Temalacayuca Popoloca"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ppt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pare"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ppu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Papora"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pqa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pa'a"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pqe", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Eastern Malayo-Polynesian languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pqm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Malecite-Passamaquoddy"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pqw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Western Malayo-Polynesian languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pra", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Prakrit languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "prb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2017, 2, 23), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lua'"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "prc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Parachi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "prd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Parsi-Dari"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pre", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Principense"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "prf", + Added = new DateOnly(2010, 3, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Paranan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "prg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Prussian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "prh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Porohanon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pri", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Paicî"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "prk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Parauk"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "prl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Peruvian Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "prm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kibiri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "prn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Prasuni"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pro", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Old Provençal (to 1500)"); + record.Description.Add(@"Old Occitan (to 1500)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "prp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2023, 3, 17), + PreferredValue = "gu", + Tag = "", + }; + record.Description.Add(@"Parsi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "prq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ashéninka Perené"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "prr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Puri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "prs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "fa", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dari"); + record.Description.Add(@"Afghan Persian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "prt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Phai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pru", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Puragi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "prw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Parawen"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "prx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Purik"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pry", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2016, 5, 30), + PreferredValue = "prt", + Tag = "", + }; + record.Description.Add(@"Pray 3"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "prz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Providencia Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "psa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Asue Awyu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "psc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Iranian Sign Language"); + record.Description.Add(@"Persian Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "psd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Plains Indian Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pse", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ms", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Central Malay"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "psg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Penang Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "psh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southwest Pashai"); + record.Description.Add(@"Southwest Pashayi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "psi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southeast Pashai"); + record.Description.Add(@"Southeast Pashayi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "psl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Puerto Rican Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "psm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pauserna"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "psn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Panasuan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pso", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Polish Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "psp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Philippine Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "psq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pasi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "psr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Portuguese Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pss", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kaulong"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pst", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ps", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Central Pashto"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "psu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sauraseni Prākrit"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "psw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Port Sandwich"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "psy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Piscataway"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pta", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pai Tavytera"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pth", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pataxó Hã-Ha-Hãe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pti", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pindiini"); + record.Description.Add(@"Wangkatha"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ptn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Patani"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pto", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Zo'é"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ptp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Patep"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ptq", + Added = new DateOnly(2014, 4, 6), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pattapu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ptr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Piamatsina"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ptt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Enrekang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ptu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bambam"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ptv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Port Vato"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ptw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pentlatch"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pty", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pathiya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pua", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Western Highland Purepecha"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pub", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Purum"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "puc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Punan Merap"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pud", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Punan Aput"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pue", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Puelche"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "puf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Punan Merah"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pug", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Phuie"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pui", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Puinave"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "puj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Punan Tubu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "puk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2017, 2, 23), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pu Ko"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pum", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Puma"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "puo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Puoc"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pup", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pulabu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "puq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Puquina"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pur", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Puruborá"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "put", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Putoh"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "puu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Punu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "puw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Puluwatese"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pux", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Puare"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "puy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Purisimeño"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "puz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2014, 2, 28), + PreferredValue = "pub", + Tag = "", + }; + record.Description.Add(@"Purum Naga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pwa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pawaia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pwb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Panawa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pwg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gapapaiwa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pwi", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Patwin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pwm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Molbog"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pwn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Paiwan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pwo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pwo Western Karen"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pwr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Powari"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pww", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pwo Northern Karen"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pxm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Quetzaltepec Mixe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pye", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pye Krumen"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pym", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Fyam"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pyn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Poyanáwa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pys", + Added = new DateOnly(2010, 3, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Paraguayan Sign Language"); + record.Description.Add(@"Lengua de Señas del Paraguay"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pyu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Puyuma"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pyx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pyu (Myanmar)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pyy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pyen"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pze", + Added = new DateOnly(2023, 3, 17), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pesse"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pzh", + Added = new DateOnly(2022, 2, 25), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pazeh"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "pzn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jejara Naga"); + record.Description.Add(@"Para Naga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "qaa..qtz", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "private-use", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Private use"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "qua", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Quapaw"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "qub", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "qu", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Huallaga Huánuco Quechua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "quc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"K'iche'"); + record.Description.Add(@"Quiché"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "qud", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "qu", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Calderón Highland Quichua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "quf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "qu", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lambayeque Quechua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "qug", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "qu", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chimborazo Highland Quichua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "quh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "qu", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"South Bolivian Quechua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "qui", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Quileute"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "quk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "qu", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chachapoyas Quechua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "qul", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "qu", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"North Bolivian Quechua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "qum", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sipacapense"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "qun", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Quinault"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "qup", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "qu", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southern Pastaza Quechua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "quq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Quinqui"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "qur", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "qu", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yanahuanca Pasco Quechua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "qus", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "qu", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Santiago del Estero Quichua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "quv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sacapulteco"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "quw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "qu", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tena Lowland Quichua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "qux", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "qu", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yauyos Quechua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "quy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "qu", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ayacucho Quechua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "quz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "qu", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cusco Quechua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "qva", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "qu", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ambo-Pasco Quechua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "qvc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "qu", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cajamarca Quechua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "qve", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "qu", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Eastern Apurímac Quechua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "qvh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "qu", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Huamalíes-Dos de Mayo Huánuco Quechua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "qvi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "qu", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Imbabura Highland Quichua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "qvj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "qu", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Loja Highland Quichua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "qvl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "qu", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cajatambo North Lima Quechua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "qvm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "qu", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Margos-Yarowilca-Lauricocha Quechua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "qvn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "qu", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"North Junín Quechua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "qvo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "qu", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Napo Lowland Quechua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "qvp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "qu", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pacaraos Quechua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "qvs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "qu", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"San Martín Quechua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "qvw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "qu", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Huaylla Wanca Quechua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "qvy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Queyu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "qvz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "qu", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Northern Pastaza Quichua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "qwa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "qu", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Corongo Ancash Quechua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "qwc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "qu", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Classical Quechua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "qwe", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Quechuan (family)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "qwh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "qu", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Huaylas Ancash Quechua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "qwm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kuman (Russia)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "qws", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "qu", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sihuas Ancash Quechua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "qwt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kwalhioqua-Tlatskanai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "qxa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "qu", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chiquián Ancash Quechua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "qxc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "qu", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chincha Quechua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "qxh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "qu", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Panao Huánuco Quechua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "qxl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "qu", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Salasaca Highland Quichua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "qxn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "qu", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Northern Conchucos Ancash Quechua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "qxo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "qu", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southern Conchucos Ancash Quechua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "qxp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "qu", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Puno Quechua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "qxq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Qashqa'i"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "qxr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "qu", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cañar Highland Quichua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "qxs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southern Qiang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "qxt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "qu", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Santa Ana de Tusi Pasco Quechua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "qxu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "qu", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Arequipa-La Unión Quechua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "qxw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "qu", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jauja Wanca Quechua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "qya", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Quenya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "qyp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Quiripi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "raa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dungmali"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rab", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Camling"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rac", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Rasawa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rad", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Rade"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "raf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Western Meohang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rag", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "luy", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Logooli"); + record.Description.Add(@"Lulogooli"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rah", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Rabha"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rai", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ramoaaina"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "raj", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "macrolanguage", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Rajasthani"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rak", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tulu-Bohuai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ral", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ralte"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ram", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Canela"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ran", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Riantana"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rao", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Rao"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rap", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Rapanui"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "raq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Saam"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rar", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Rarotongan"); + record.Description.Add(@"Cook Islands Maori"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ras", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tegali"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rat", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Razajerdi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rau", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Raute"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rav", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sampang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "raw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Rawang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rax", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Rang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ray", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Rapa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "raz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Rahambuu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rbb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Rumai Palaung"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rbk", + Added = new DateOnly(2010, 3, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "bnc", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Northern Bontok"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rbl", + Added = new DateOnly(2010, 3, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "bik", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Miraya Bikol"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rbp", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Barababaraba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rcf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Réunion Creole French"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rdb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Rudbari"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rea", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Rerau"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "reb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Rembong"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ree", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Rejang Kayan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "reg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kara (Tanzania)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rei", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Reli"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rej", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Rejang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rel", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Rendille"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rem", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Remo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ren", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Rengao"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rer", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Rer Bare"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "res", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Reshe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ret", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Retta"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rey", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Reyesano"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rga", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Roria"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rge", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Romano-Greek"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rgk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Rangkas"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rgn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Romagnol"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rgr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Resígaro"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rgs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southern Roglai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rgu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ringgou"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rhg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Rohingya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rhp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yahang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ria", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Riang (India)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rib", + Added = new DateOnly(2022, 2, 25), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bribri Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rie", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2017, 2, 23), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Rien"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rif", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tarifit"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ril", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Riang Lang"); + record.Description.Add(@"Riang (Myanmar)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rim", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nyaturu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rin", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nungu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rir", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ribun"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rit", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ritharrngu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "riu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Riung"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rjg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Rajong"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rji", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Raji"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rjs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Rajbanshi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rka", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kraol"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rkb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Rikbaktsa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rkh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Rakahanga-Manihiki"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rki", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Rakhine"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rkm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Marka"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rkt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Rangpuri"); + record.Description.Add(@"Kamta"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rkw", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Arakwal"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rma", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Rama"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rmb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Rembarrnga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rmc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "rom", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Carpathian Romani"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rmd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Traveller Danish"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rme", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Angloromani"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rmf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "rom", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kalo Finnish Romani"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rmg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Traveller Norwegian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rmh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Murkim"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rmi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lomavren"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rmk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Romkun"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rml", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "rom", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Baltic Romani"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rmm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Roma"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rmn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "rom", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Balkan Romani"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rmo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "rom", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sinte Romani"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rmp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Rempi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rmq", + Added = new DateOnly(2010, 3, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Caló"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rmr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2010, 3, 11), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Caló"); + record.Comments.Add(@"see emx, rmq"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rms", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Romanian Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rmt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Domari"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rmu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tavringer Romani"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rmv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Romanova"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rmw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "rom", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Welsh Romani"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rmx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Romam"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rmy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "rom", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Vlax Romani"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rmz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Marma"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rna", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2016, 5, 30), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Runa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rnb", + Added = new DateOnly(2022, 2, 25), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Brunca Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rnd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ruund"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rng", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ronga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rnl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ranglong"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rnn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Roon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rnp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Rongpo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rnr", + Added = new DateOnly(2012, 8, 20), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nari Nari"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rnw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Rungwa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "roa", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Romance languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rob", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tae'"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "roc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cacgia Roglai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rod", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Rogo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "roe", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ronji"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rof", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Rombo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rog", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Northern Roglai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rol", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Romblomanon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rom", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "macrolanguage", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Romany"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "roo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Rotokas"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rop", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kriol"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ror", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Rongga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rou", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Runga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "row", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dela-Oenale"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rpn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Repanbitip"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rpt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Rapting"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rri", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ririo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rrm", + Added = new DateOnly(2024, 3, 4), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Moriori"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rro", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Waima"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rrt", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Arritinngithigh"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rsb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Romano-Serbian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rsi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2017, 2, 23), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Rennellese Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rsk", + Added = new DateOnly(2022, 2, 25), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ruthenian"); + record.Description.Add(@"Rusnak"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rsl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Russian Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rsm", + Added = new DateOnly(2016, 5, 30), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Miriwoong Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rsn", + Added = new DateOnly(2022, 2, 25), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Rwandan Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rsw", + Added = new DateOnly(2023, 3, 17), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Rishiwa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rtc", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Rungtu Chin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rth", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ratahan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rtm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Rotuman"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rts", + Added = new DateOnly(2015, 2, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yurats"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rtw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Rathawi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rub", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gungu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ruc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ruuli"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rue", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Rusyn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ruf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Luguru"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rug", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Roviana"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ruh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ruga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rui", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Rufiji"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ruk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Che"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ruo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Istro Romanian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rup", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Macedo-Romanian"); + record.Description.Add(@"Aromanian"); + record.Description.Add(@"Arumanian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ruq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Megleno Romanian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rut", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Rutul"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ruu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lanas Lobu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ruy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mala (Nigeria)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ruz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ruma"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rwa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Rawo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rwk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Rwa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rwl", + Added = new DateOnly(2021, 2, 20), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ruwila"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rwm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Amba (Uganda)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rwo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Rawa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rwr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "mwr", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Marwari (India)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rxd", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ngardi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rxw", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Karuwali"); + record.Description.Add(@"Garuwali"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ryn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Northern Amami-Oshima"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rys", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yaeyama"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ryu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Central Okinawan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "rzh", + Added = new DateOnly(2016, 5, 30), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Rāziḥī"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "saa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Saba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sab", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Buglere"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sac", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Meskwaki"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sad", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sandawe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sae", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sabanê"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "saf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Safaliba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sah", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yakut"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sai", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"South American Indian languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "saj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sahu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sak", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sake"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sal", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Salishan languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sam", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Samaritan Aramaic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sao", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sause"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sap", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2014, 2, 28), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sanapaná"); + record.Comments.Add(@"see aqt, spn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "saq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Samburu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sar", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Saraveca"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sas", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sasak"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sat", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Santali"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sau", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Saleman"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sav", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Saafi-Saafi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "saw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sawi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sax", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "say", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Saya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "saz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Saurashtra"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sba", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ngambay"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sbb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Simbo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sbc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kele (Papua New Guinea)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sbd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southern Samo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sbe", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Saliba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sbf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chabu"); + record.Description.Add(@"Shabo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sbg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Seget"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sbh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sori-Harengan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sbi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Seti"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sbj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Surbakhal"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sbk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Safwa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sbl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Botolan Sambal"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sbm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sagala"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sbn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sindhi Bhil"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sbo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sabüm"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sbp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sangu (Tanzania)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sbq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sileibi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sbr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sembakung Murut"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sbs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Subiya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sbt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kimki"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sbu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Stod Bhoti"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sbv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sabine"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sbw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Simba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sbx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Seberuang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sby", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Soli"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sbz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sara Kaba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sca", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2012, 8, 12), + PreferredValue = "hle", + Tag = "", + }; + record.Description.Add(@"Sansu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "scb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chut"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sce", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dongxiang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "scf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"San Miguel Creole French"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "scg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sanggau"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sch", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sakachep"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sci", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sri Lankan Creole Malay"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sck", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sadri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "scl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Shina"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "scn", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sicilian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sco", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Scots"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "scp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hyolmo"); + record.Description.Add(@"Helambu Sherpa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "scq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sa'och"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "scs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "den", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"North Slavey"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sct", + Added = new DateOnly(2017, 2, 23), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southern Katang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "scu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Shumcho"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "scv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sheni"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "scw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sha"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "scx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sicel"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sda", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Toraja-Sa'dan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sdb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Shabak"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sdc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "sc", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sassarese Sardinian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sde", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Surubu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sdf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sarli"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sdg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Savi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sdh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ku", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southern Kurdish"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sdj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Suundi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sdk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sos Kundi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sdl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Saudi Arabian Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sdm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2020, 3, 28), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Semandang"); + record.Comments.Add(@"see ebc, gef, sdq"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sdn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "sc", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gallurese Sardinian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sdo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bukar-Sadung Bidayuh"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sdp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sherdukpen"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sdq", + Added = new DateOnly(2020, 3, 28), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Semandang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sdr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Oraon Sadri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sds", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sened"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sdt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Shuadit"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sdu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sarudu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sdv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Eastern Sudanic languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sdx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sibu Melanau"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sdz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sallands"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sea", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Semai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "seb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Shempire Senoufo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sec", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sechelt"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sed", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sedang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "see", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Seneca"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sef", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cebaara Senoufo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "seg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Segeju"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "seh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sena"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sei", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Seri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sej", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sene"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sek", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sekani"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sel", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Selkup"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sem", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Semitic languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sen", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nanerigé Sénoufo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "seo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Suarmin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sep", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sìcìté Sénoufo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "seq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Senara Sénoufo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ser", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Serrano"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ses", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Koyraboro Senni Songhai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "set", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sentani"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "seu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Serui-Laut"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sev", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nyarafolo Senoufo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sew", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sewa Bay"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sey", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Secoya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sez", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Senthang Chin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sfb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Langue des signes de Belgique Francophone"); + record.Description.Add(@"French Belgian Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sfe", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Eastern Subanen"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sfm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "hmn", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Small Flowery Miao"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sfs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"South African Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sfw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sehwi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sga", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Old Irish (to 900)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sgb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mag-antsi Ayta"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sgc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "kln", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kipsigis"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sgd", + Added = new DateOnly(2010, 3, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Surigaonon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sge", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Segai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sgg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Swiss-German Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sgh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Shughni"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sgi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Suga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sgj", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Surgujia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sgk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sangkong"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sgl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2010, 3, 11), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sanglechi-Ishkashimi"); + record.Comments.Add(@"see isk, sgy"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sgm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Singa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sgn", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sign languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sgo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2015, 2, 12), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Songa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sgp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Singpho"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sgr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sangisari"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sgs", + Added = new DateOnly(2010, 7, 26), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Samogitian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sgt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Brokpake"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sgu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Salas"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sgw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sebat Bet Gurage"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sgx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sierra Leone Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sgy", + Added = new DateOnly(2010, 3, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sanglechi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sgz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sursurunga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sha", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Shall-Zwall"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "shb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ninam"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "shc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sonde"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "shd", + Added = new DateOnly(2010, 3, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kundal Shahi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "she", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sheko"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "shg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Shua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "shh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Shoshoni"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "shi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tachelhit"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "shj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Shatt"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "shk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Shilluk"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "shl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Shendu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "shm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Shahrudi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "shn", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Shan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sho", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Shanga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "shp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Shipibo-Conibo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "shq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sala"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "shr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Shi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "shs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Shuswap"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sht", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Shasta"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "shu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ar", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chadian Arabic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "shv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Shehri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "shw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Shwai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "shx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"She"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "shy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tachawit"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "shz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Syenara Senoufo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sia", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Akkala Sami"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sib", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sebop"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sid", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sidamo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sie", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Simaa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sif", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Siamou"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sig", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Paasaal"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sih", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Zire"); + record.Description.Add(@"Sîshëë"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sii", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Shom Peng"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sij", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Numbami"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sik", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sikiana"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sil", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tumulung Sisaala"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sim", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mende (Papua New Guinea)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sio", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Siouan languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sip", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sikkimese"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "siq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sonia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sir", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Siri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sis", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Siuslaw"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sit", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sino-Tibetan languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "siu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sinagen"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "siv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sumariup"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "siw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Siwai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "six", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sumau"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "siy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sivandi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "siz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Siwi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sja", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Epena"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sjb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sajau Basap"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sjc", + Added = new DateOnly(2024, 12, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "zh", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Shaojiang Chinese"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sjd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kildin Sami"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sje", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pite Sami"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sjg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Assangori"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sjk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kemi Sami"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sjl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sajalong"); + record.Description.Add(@"Miji"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sjm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mapun"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sjn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sindarin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sjo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Xibe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sjp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Surjapuri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sjr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Siar-Lak"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sjs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Senhaja De Srair"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sjt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ter Sami"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sju", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ume Sami"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sjw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Shawnee"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ska", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Skagit"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "skb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Saek"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "skc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ma Manda"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "skd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southern Sierra Miwok"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ske", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Seke (Vanuatu)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "skf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sakirabiá"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "skg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "mg", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sakalava Malagasy"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "skh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sikule"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ski", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sika"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "skj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Seke (Nepal)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "skk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2017, 2, 23), + PreferredValue = "oyb", + Tag = "", + }; + record.Description.Add(@"Sok"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "skm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kutong"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "skn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kolibugan Subanon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sko", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Seko Tengah"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "skp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sekapan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "skq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sininkere"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "skr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "lah", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Saraiki"); + record.Description.Add(@"Seraiki"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sks", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Maia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "skt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sakata"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sku", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sakao"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "skv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Skou"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "skw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Skepi Creole Dutch"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "skx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Seko Padang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sky", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sikaiana"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "skz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sekar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sla", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Slavic languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "slc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sáliba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sld", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sissala"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sle", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sholaga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "slf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Swiss-Italian Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "slg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Selungai Murut"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "slh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southern Puget Sound Salish"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sli", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lower Silesian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "slj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Salumá"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sll", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Salt-Yui"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "slm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pangutaran Sama"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sln", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Salinan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "slp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lamaholot"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "slq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2023, 3, 17), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Salchuq"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "slr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Salar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sls", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Singapore Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "slt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sila"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "slu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Selaru"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "slw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sialum"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "slx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Salampasu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sly", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Selayar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "slz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ma'ya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sma", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southern Sami"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "smb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Simbari"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "smc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Som"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "smd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2022, 2, 25), + PreferredValue = "kmb", + Tag = "", + }; + record.Description.Add(@"Sama"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "smf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Auwe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "smg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Simbali"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "smh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Samei"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "smi", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sami languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "smj", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lule Sami"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "smk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bolinao"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sml", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Central Sama"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "smm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Musasa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "smn", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Inari Sami"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "smp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Samaritan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "smq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Samo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "smr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Simeulue"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sms", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Skolt Sami"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "smt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Simte"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "smu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Somray"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "smv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Samvedi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "smw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sumbawa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "smx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Samba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "smy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Semnani"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "smz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Simeku"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "snb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2022, 2, 25), + PreferredValue = "iba", + Tag = "", + }; + record.Description.Add(@"Sebuyau"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "snc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sinaugoro"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sne", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bau Bidayuh"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "snf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Noon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sng", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sanga (Democratic Republic of Congo)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "snh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2017, 2, 23), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Shinabo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sni", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sensi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "snj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Riverain Sango"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "snk", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Soninke"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "snl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sangil"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "snm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southern Ma'di"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "snn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Siona"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sno", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Snohomish"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "snp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Siane"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "snq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sangu (Gabon)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "snr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sihan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sns", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"South West Bay"); + record.Description.Add(@"Nahavaq"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "snu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Senggi"); + record.Description.Add(@"Viid"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "snv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sa'ban"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "snw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Selee"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "snx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sam"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sny", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Saniyo-Hiyewe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "snz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kou"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "soa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Thai Song"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sob", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sobei"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "soc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"So (Democratic Republic of Congo)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sod", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Songoora"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "soe", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Songomeno"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sog", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sogdian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "soh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Aka"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "soi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sonha"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "soj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Soi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sok", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sokoro"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sol", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Solos"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "son", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Songhai languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "soo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Songo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sop", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Songe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "soq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kanasi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sor", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Somrai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sos", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Seeku"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sou", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southern Thai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sov", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sonsorol"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sow", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sowanda"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sox", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Swo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "soy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Miyobe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "soz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Temi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "spb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sepa (Indonesia)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "spc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sapé"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "spd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Saep"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "spe", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sepa (Papua New Guinea)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "spg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "spi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Saponi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "spk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sengo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "spl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Selepet"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "spm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Akukem"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "spn", + Added = new DateOnly(2014, 2, 28), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sanapaná"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "spo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Spokane"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "spp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Supyire Senoufo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "spq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Loreto-Ucayali Spanish"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "spr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Saparua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sps", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Saposa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "spt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Spiti Bhoti"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "spu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sapuan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "spv", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "or", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sambalpuri"); + record.Description.Add(@"Kosli"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "spx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"South Picene"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "spy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "kln", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sabaot"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sqa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Shama-Sambuga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sqh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Shau"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sqj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Albanian languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sqk", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Albanian Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sqm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Suma"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sqn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Susquehannock"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sqo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sorkhei"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sqq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sou"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sqr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Siculo Arabic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sqs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sri Lankan Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sqt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Soqotri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "squ", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Squamish"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sqx", + Added = new DateOnly(2021, 2, 20), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kufr Qassem Sign Language (KQSL)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sra", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Saruga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "srb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sora"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "src", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "sc", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Logudorese Sardinian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sre", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sara"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "srf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nafi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "srg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sulod"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "srh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sarikoli"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sri", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Siriano"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "srk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Serudung Murut"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "srl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Isirawa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "srm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Saramaccan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "srn", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sranan Tongo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sro", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "sc", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Campidanese Sardinian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "srq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sirionó"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "srr", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Serer"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "srs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sarsi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "srt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sauri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sru", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Suruí"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "srv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southern Sorsoganon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "srw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Serua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "srx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sirmauri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sry", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sera"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "srz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Shahmirzadi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ssa", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nilo-Saharan languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ssb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southern Sama"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ssc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Suba-Simbiti"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ssd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Siroi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sse", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Balangingi"); + record.Description.Add(@"Bangingih Sama"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ssf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Thao"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ssg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Seimat"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ssh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ar", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Shihhi Arabic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ssi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sansi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ssj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sausi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ssk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sunam"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ssl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Western Sisaala"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ssm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Semnam"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ssn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Waata"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sso", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sissano"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ssp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Spanish Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ssq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"So'a"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ssr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Swiss-French Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sss", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sô"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sst", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sinasina"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ssu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Susuami"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ssv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Shark Bay"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ssx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Samberigi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ssy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Saho"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ssz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sengseng"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sta", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Settla"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "stb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Northern Subanen"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "std", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sentinel"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ste", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Liana-Seti"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "stf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Seta"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "stg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Trieng"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sth", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Shelta"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sti", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bulo Stieng"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "stj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Matya Samo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "stk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Arammba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "stl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Stellingwerfs"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "stm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Setaman"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "stn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Owa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sto", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Stoney"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "stp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southeastern Tepehuan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "stq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Saterfriesisch"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "str", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Straits Salish"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sts", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Shumashti"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "stt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Budeh Stieng"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "stu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Samtao"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "stv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Silt'e"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "stw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Satawalese"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sty", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Siberian Tatar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sua", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sulka"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sub", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Suku"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "suc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Western Subanon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sue", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Suena"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sug", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Suganga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sui", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Suki"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "suj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Shubi"); + record.Comments.Add(@"see also xsj"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "suk", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sukuma"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sul", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2010, 3, 11), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Surigaonon"); + record.Comments.Add(@"see sgd, tgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sum", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2010, 3, 11), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sumo-Mayangna"); + record.Comments.Add(@"see ulw, yan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "suo", + Added = new DateOnly(2021, 2, 20), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bouni"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "suq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tirmaga-Chai Suri"); + record.Description.Add(@"Suri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sur", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mwaghavul"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sus", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Susu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sut", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Subtiaba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "suv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Puroik"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "suw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sumbwa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sux", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sumerian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "suy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Suyá"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "suz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sunwar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sva", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Svan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "svb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ulau-Suain"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "svc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Vincentian Creole English"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sve", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Serili"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "svk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Slovakian Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "svm", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Slavomolisano"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "svr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2016, 5, 30), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Savara"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "svs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Savosavo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "svx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Skalvian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "swb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Maore Comorian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "swc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "sw", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Congo Swahili"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "swf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sere"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "swg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Swabian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "swh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "sw", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Swahili (individual language)"); + record.Description.Add(@"Kiswahili"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "swi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sui"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "swj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sira"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "swk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Malawi Sena"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "swl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Swedish Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "swm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Samosa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "swn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sawknah"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "swo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Shanenawa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "swp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Suau"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "swq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sharwa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "swr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Saweru"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sws", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Seluwasan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "swt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sawila"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "swu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Suwawa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "swv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "mwr", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Shekhawati"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sww", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sowa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "swx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Suruahá"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "swy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sarua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sxb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Suba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sxc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sicanian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sxe", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sighu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sxg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Shuhi"); + record.Description.Add(@"Shixing"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sxk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southern Kalapuya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sxl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Selian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sxm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Samre"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sxn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sangir"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sxo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sorothaptic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sxr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Saaroa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sxs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sasaru"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sxu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Upper Saxon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sxw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Saxwe Gbe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sya", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Siang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "syb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Central Subanen"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "syc", + Added = new DateOnly(2007, 4, 3), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Classical Syriac"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "syd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Samoyedic languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "syi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Seki"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "syk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sukur"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "syl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sylheti"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sym", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Maya Samo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "syn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Senaya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "syo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Suoy"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "syr", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "macrolanguage", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Syriac"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sys", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sinyar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "syw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kagate"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "syx", + Added = new DateOnly(2015, 2, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Samay"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "syy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Al-Sayyid Bedouin Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sza", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Semelai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "szb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ngalum"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "szc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Semaq Beri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "szd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2023, 3, 17), + PreferredValue = "umi", + Tag = "", + }; + record.Description.Add(@"Seru"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "sze", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Seze"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "szg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sengele"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "szl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Silesian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "szn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sula"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "szp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Suabo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "szs", + Added = new DateOnly(2017, 2, 23), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Solomon Islands Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "szv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Isu (Fako Division)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "szw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sawai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "szy", + Added = new DateOnly(2019, 4, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sakizaya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "taa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lower Tanana"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tab", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tabassaran"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tac", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lowland Tarahumara"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tad", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tause"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tae", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tariana"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "taf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tapirapé"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tag", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tagoi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tai", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tai languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "taj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Eastern Tamang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tak", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tala"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tal", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tal"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tan", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tangale"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tao", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yami"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tap", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Taabwa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "taq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "tmh", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tamasheq"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tar", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Central Tarahumara"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tas", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tay Boi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tau", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Upper Tanana"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tav", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tatuyo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "taw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tax", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tamki"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tay", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Atayal"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "taz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tocho"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tba", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Aikanã"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tbb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2020, 3, 28), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tapeba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tbc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Takia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tbd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kaki Ae"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tbe", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tanimbili"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tbf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mandara"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tbg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"North Tairora"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tbh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dharawal"); + record.Description.Add(@"Thurawal"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tbi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gaam"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tbj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tiang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tbk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Calamian Tagbanwa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tbl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tboli"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tbm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tagbu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tbn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Barro Negro Tunebo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tbo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tawala"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tbp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Taworta"); + record.Description.Add(@"Diebroud"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tbq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tibeto-Burman languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tbr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tumtum"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tbs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tanguat"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tbt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tembo (Kitembo)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tbu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tubar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tbv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tobo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tbw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tagbanwa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tbx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kapin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tby", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tabaru"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tbz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ditammari"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tca", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ticuna"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tcb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tanacross"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tcc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Datooga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tcd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tafi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tce", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southern Tutchone"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tcf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Malinaltepec Me'phaa"); + record.Description.Add(@"Malinaltepec Tlapanec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tcg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tamagario"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tch", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Turks And Caicos Creole English"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tci", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wára"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tck", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tchitchege"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tcl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Taman (Myanmar)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tcm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tanahmerah"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tcn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tichurong"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tco", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Taungyo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tcp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tawr Chin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tcq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kaiy"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tcs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Torres Strait Creole"); + record.Description.Add(@"Yumplatok"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tct", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"T'en"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tcu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southeastern Tarahumara"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tcw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tecpatlán Totonac"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tcx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Toda"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tcy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tulu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tcz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Thado Chin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tda", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tagdal"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tdb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Panchpargania"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tdc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Emberá-Tadó"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tdd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tai Nüa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tde", + Added = new DateOnly(2010, 3, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tiranige Diga Dogon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tdf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Talieng"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tdg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Western Tamang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tdh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Thulung"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tdi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tomadino"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tdj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tajio"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tdk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tambas"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tdl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sur"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tdm", + Added = new DateOnly(2016, 5, 30), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Taruma"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tdn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tondano"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tdo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Teme"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tdq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tita"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tdr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Todrah"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tds", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Doutai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tdt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tetun Dili"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tdu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2016, 5, 30), + PreferredValue = "dtp", + Tag = "", + }; + record.Description.Add(@"Tempasuk Dusun"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tdv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Toro"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tdx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "mg", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tandroy-Mahafaly Malagasy"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tdy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tadyawan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tea", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Temiar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "teb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tetete"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tec", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "kln", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Terik"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ted", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tepo Krumen"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tee", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Huehuetla Tepehua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tef", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Teressa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "teg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Teke-Tege"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "teh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tehuelche"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tei", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Torricelli"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tek", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ibali Teke"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tem", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Latn", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Timne"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ten", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tama (Colombia)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "teo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Teso"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tep", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tepecano"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "teq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Temein"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ter", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tereno"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tes", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tengger"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tet", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tetum"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "teu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Soo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tev", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Teor"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tew", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tewa (USA)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tex", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tennet"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tey", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tulishi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tez", + Added = new DateOnly(2018, 3, 8), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tetserret"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tfi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tofin Gbe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tfn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tanaina"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tfo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tefaro"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tfr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Teribe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tft", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ternate"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tga", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sagalla"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tgb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tobilung"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tgc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tigak"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tgd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ciwogai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tge", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Eastern Gorkha Tamang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tgf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chalikha"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tgg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2013, 9, 10), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tangga"); + record.Comments.Add(@"see bjp, hrc, hrw"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tgh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tobagonian Creole English"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tgi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lawunuia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tgj", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tagin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tgn", + Added = new DateOnly(2010, 3, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tandaganon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tgo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sudest"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tgp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tangoa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tgq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tring"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tgr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tareng"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tgs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nume"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tgt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Central Tagbanwa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tgu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tanggu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tgv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tingui-Boto"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tgw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tagwana Senoufo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tgx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tagish"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tgy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Togoyo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tgz", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tagalaka"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "thc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2016, 5, 30), + PreferredValue = "tpo", + Tag = "", + }; + record.Description.Add(@"Tai Hang Tong"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "thd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kuuk Thaayorre"); + record.Description.Add(@"Thayore"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "the", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chitwania Tharu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "thf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Thangmi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "thh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Northern Tarahumara"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "thi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tai Long"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "thk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tharaka"); + record.Description.Add(@"Kitharaka"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "thl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dangaura Tharu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "thm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Aheu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "thn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Thachanadan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "thp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Thompson"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "thq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kochila Tharu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "thr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Rana Tharu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ths", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Thakali"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tht", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tahltan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "thu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Thuri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "thv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "tmh", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tahaggart Tamahaq"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "thw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2020, 6, 8), + PreferredValue = "ola", + Tag = "", + }; + record.Description.Add(@"Thudam"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "thx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2015, 2, 12), + PreferredValue = "oyb", + Tag = "", + }; + record.Description.Add(@"The"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "thy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tha"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "thz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "tmh", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tayart Tamajeq"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tia", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tidikelt Tamazight"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tic", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tira"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tid", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2016, 5, 30), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tidong"); + record.Comments.Add(@"see itd, ntd"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tie", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2011, 8, 16), + PreferredValue = "ras", + Tag = "", + }; + record.Description.Add(@"Tingal"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tif", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tifal"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tig", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tigre"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tih", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Timugon Murut"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tii", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tiene"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tij", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tilung"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tik", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tikar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "til", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tillamook"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tim", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Timbe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tin", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tindi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tio", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Teop"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tip", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Trimuris"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tiq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tiéfo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tis", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Masadiit Itneg"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tit", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tinigua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tiu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Adasen"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tiv", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tiv"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tiw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tiwi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tix", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southern Tiwa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tiy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tiruray"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tiz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tai Hongjin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tja", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tajuasohn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tjg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tunjung"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tji", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Northern Tujia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tjj", + Added = new DateOnly(2019, 4, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tjungundji"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tjl", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tai Laing"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tjm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Timucua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tjn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tonjon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tjo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Temacine Tamazight"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tjp", + Added = new DateOnly(2019, 4, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tjupany"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tjs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southern Tujia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tju", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tjurruru"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tjw", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Djabwurrung"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tka", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Truká"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tkb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Buksa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tkd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tukudede"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tke", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Takwane"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tkf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tukumanféd"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tkg", + Added = new DateOnly(2011, 8, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "mg", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tesaka Malagasy"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tkk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2011, 8, 16), + PreferredValue = "twm", + Tag = "", + }; + record.Description.Add(@"Takpa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tkl", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Latn", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tokelau"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tkm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Takelma"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tkn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Toku-No-Shima"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tkp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tikopia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tkq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tee"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tkr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tsakhur"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tks", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Takestani"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tkt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kathoriya Tharu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tku", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Upper Necaxa Totonac"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tkv", + Added = new DateOnly(2014, 2, 28), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mur Pano"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tkw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Teanu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tkx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tangko"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tkz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Takua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tla", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southwestern Tepehuan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tlb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tobelo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tlc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yecuatla Totonac"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tld", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Talaud"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tlf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Telefol"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tlg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tofanma"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tlh", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Klingon"); + record.Description.Add(@"tlhIngan Hol"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tli", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tlingit"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tlj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Talinga-Bwisi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tlk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Taloki"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tll", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tetela"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tlm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tolomako"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tln", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Talondo'"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tlo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Talodi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tlp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Filomena Mata-Coahuitlán Totonac"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tlq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tai Loi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tlr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Talise"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tls", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tambotalo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tlt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sou Nama"); + record.Description.Add(@"Teluti"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tlu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tulehu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tlv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Taliabu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tlw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2012, 8, 12), + PreferredValue = "weo", + Tag = "", + }; + record.Description.Add(@"South Wemale"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tlx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Khehek"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tly", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Talysh"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tma", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tama (Chad)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tmb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Katbol"); + record.Description.Add(@"Avava"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tmc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tumak"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tmd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Haruai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tme", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tremembé"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tmf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Toba-Maskoy"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tmg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ternateño"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tmh", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Latn", + Scope = "macrolanguage", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tamashek"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tmi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tutuba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tmj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Samarokena"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tmk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2023, 3, 17), + PreferredValue = "tdg", + Tag = "", + }; + record.Description.Add(@"Northwestern Tamang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tml", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tamnim Citak"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tmm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tai Thanh"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tmn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Taman (Indonesia)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tmo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Temoq"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tmp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2016, 5, 30), + PreferredValue = "tyj", + Tag = "", + }; + record.Description.Add(@"Tai Mène"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tmq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tumleo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tmr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jewish Babylonian Aramaic (ca. 200-1200 CE)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tms", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tima"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tmt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tasmate"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tmu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Iau"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tmv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tembo (Motembo)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tmw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ms", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Temuan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tmy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tami"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tmz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tamanaku"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tna", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tacana"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tnb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Western Tunebo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tnc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tanimuca-Retuarã"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tnd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Angosturas Tunebo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tne", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2016, 5, 30), + PreferredValue = "kak", + Tag = "", + }; + record.Description.Add(@"Tinoc Kallahan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tnf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2010, 3, 11), + PreferredValue = "prs", + Tag = "", + }; + record.Description.Add(@"Tangshewi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tng", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tobanga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tnh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Maiani"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tni", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tandia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tnk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kwamera"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tnl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lenakel"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tnm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tabla"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tnn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"North Tanna"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tno", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Toromono"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tnp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Whitesands"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tnq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Taino"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tnr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ménik"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tns", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tenis"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tnt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tontemboan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tnu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tay Khang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tnv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tangchangya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tnw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tonsawang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tnx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tanema"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tny", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tongwe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tnz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ten'edn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tob", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Toba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "toc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Coyutla Totonac"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tod", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Toma"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "toe", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2016, 5, 30), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tomedes"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tof", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gizrra"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tog", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tonga (Nyasa)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "toh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gitonga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "toi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tonga (Zambia)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "toj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tojolabal"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tok", + Added = new DateOnly(2022, 2, 25), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Toki Pona"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tol", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tolowa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tom", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tombulu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "too", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Xicotepec De Juárez Totonac"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "top", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Papantla Totonac"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "toq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Toposa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tor", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Togbo-Vara Banda"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tos", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Highland Totonac"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tou", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tho"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tov", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Upper Taromi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tow", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jemez"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tox", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tobian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "toy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Topoiyo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "toz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"To"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tpa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Taupota"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tpc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Azoyú Me'phaa"); + record.Description.Add(@"Azoyú Tlapanec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tpe", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tippera"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tpf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tarpia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tpg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kula"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tpi", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Latn", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tok Pisin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tpj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tapieté"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tpk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tupinikin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tpl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tlacoapa Me'phaa"); + record.Description.Add(@"Tlacoapa Tlapanec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tpm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tampulma"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tpn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tupinambá"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tpo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tai Pao"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tpp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pisaflores Tepehua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tpq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tukpa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tpr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tuparí"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tpt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tlachichilco Tepehua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tpu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tampuan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tpv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tanapag"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tpw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2023, 3, 17), + PreferredValue = "tpn", + Tag = "", + }; + record.Description.Add(@"Tupí"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tpx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Acatepec Me'phaa"); + record.Description.Add(@"Acatepec Tlapanec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tpy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Trumai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tpz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tinputz"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tqb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tembé"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tql", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lehali"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tqm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Turumsa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tqn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tenino"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tqo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Toaripi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tqp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tomoip"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tqq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tunni"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tqr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Torona"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tqt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Western Totonac"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tqu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Touo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tqw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tonkawa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tra", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tirahi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "trb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Terebu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "trc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Copala Triqui"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "trd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Turi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tre", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"East Tarangan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "trf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Trinidadian Creole English"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "trg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lishán Didán"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "trh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Turaka"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tri", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Trió"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "trj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Toram"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "trk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Turkic languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "trl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Traveller Scottish"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "trm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tregami"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "trn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Trinitario"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tro", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tarao Naga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "trp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kok Borok"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "trq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"San Martín Itunyoso Triqui"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "trr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Taushiro"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "trs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chicahuaxtla Triqui"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "trt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tunggare"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tru", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Turoyo"); + record.Description.Add(@"Surayt"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "trv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sediq"); + record.Description.Add(@"Seediq"); + record.Description.Add(@"Taroko"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "trw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Torwali"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "trx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tringgus-Sembaan Bidayuh"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "try", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Turung"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "trz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Torá"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tsa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tsaangi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tsb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tsamai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tsc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tswa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tsd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tsakonian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tse", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tunisian Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tsf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2015, 2, 12), + PreferredValue = "taj", + Tag = "", + }; + record.Description.Add(@"Southwestern Tamang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tsg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tausug"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tsh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tsuvan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tsi", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tsimshian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tsj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tshangla"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tsk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tseku"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tsl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ts'ün-Lao"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tsm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Turkish Sign Language"); + record.Description.Add(@"Türk İşaret Dili"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tsp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Northern Toussian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tsq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Thai Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tsr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Akei"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tss", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Taiwan Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tst", + Added = new DateOnly(2011, 8, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tondi Songway Kiini"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tsu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tsou"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tsv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tsogo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tsw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tsishingini"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tsx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mubami"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tsy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tebul Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tsz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Purepecha"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tta", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tutelo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ttb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gaa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ttc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tektiteko"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ttd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tauade"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tte", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bwanabwana"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ttf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tuotomb"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ttg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tutong"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tth", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Upper Ta'oih"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tti", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tobati"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ttj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tooro"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ttk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Totoro"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ttl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Totela"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ttm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Northern Tutchone"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ttn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Towei"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tto", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lower Ta'oih"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ttp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tombelala"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ttq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "tmh", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tawallammat Tamajaq"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ttr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tera"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tts", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Northeastern Thai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ttt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Muslim Tat"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ttu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Torau"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ttv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Titan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ttw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Long Wat"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tty", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sikaritai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ttz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tsum"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tua", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wiarumus"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tub", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tübatulabal"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tuc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mutu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tud", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tuxá"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tue", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tuyuca"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tuf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Central Tunebo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tug", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tunia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tuh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Taulil"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tui", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tupuri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tuj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tugutil"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tul", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tula"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tum", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tumbuka"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tun", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tunica"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tuo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tucano"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tup", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tupi languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tuq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tedaga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tus", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tuscarora"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tut", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Altaic languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tuu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tututni"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tuv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Turkana"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tuw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tungus languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tux", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tuxináwa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tuy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "kln", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tugen"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tuz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Turka"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tva", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Vaghua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tvd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tsuvadi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tve", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Te'un"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tvi", + Added = new DateOnly(2023, 3, 17), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tulai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tvk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southeast Ambrym"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tvl", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "Latn", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tuvalu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tvm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tela-Masbuar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tvn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tavoyan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tvo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tidore"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tvs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Taveta"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tvt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tutsa Naga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tvu", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tunen"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tvw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sedoa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tvx", + Added = new DateOnly(2019, 4, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Taivoan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tvy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Timor Pidgin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "twa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Twana"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "twb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Western Tawbuid"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "twc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Teshenawa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "twd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Twents"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "twe", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tewa (Indonesia)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "twf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Northern Tiwa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "twg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tereweng"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "twh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tai Dón"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "twl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tawara"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "twm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tawang Monpa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "twn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Twendi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "two", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tswapong"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "twp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ere"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "twq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tasawaq"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "twr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southwestern Tarahumara"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "twt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Turiwára"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "twu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Termanu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tww", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tuwari"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "twx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tewe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "twy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tawoyan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "txa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tombonuo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "txb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tokharian B"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "txc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tsetsaut"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "txe", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Totoli"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "txg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tangut"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "txh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Thracian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "txi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ikpeng"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "txj", + Added = new DateOnly(2015, 2, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tarjumo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "txm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tomini"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "txn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"West Tarangan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "txo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Toto"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "txq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tii"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "txr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tartessian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "txs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tonsea"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "txt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Citak"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "txu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kayapó"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "txx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tatana"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "txy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "mg", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tanosy Malagasy"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tya", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tauya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tye", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kyanga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tyh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"O'du"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tyi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Teke-Tsaayi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tyj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tai Do"); + record.Description.Add(@"Tai Yo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tyl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Thu Lao"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tyn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kombai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "typ", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Thaypan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tyr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tai Daeng"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tys", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tày Sa Pa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tyt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tày Tac"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tyu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tyv", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tuvinian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tyx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Teke-Tyee"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tyy", + Added = new DateOnly(2021, 2, 20), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tiyaa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tyz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tày"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tza", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tanzanian Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tzh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tzeltal"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tzj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tz'utujil"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tzl", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Talossan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tzm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Central Atlas Tamazight"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tzn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tugun"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tzo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tzotzil"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "tzx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tabriak"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "uam", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Uamué"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "uan", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kuan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "uar", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tairuma"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "uba", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ubang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ubi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ubi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ubl", + Added = new DateOnly(2010, 3, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "bik", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Buhi'non Bikol"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ubr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ubir"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ubu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Umbu-Ungu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "uby", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ubykh"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "uda", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Uda"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ude", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Udihe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "udg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Muduga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "udi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Udi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "udj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ujir"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "udl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wuzlam"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "udm", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Udmurt"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "udu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Uduk"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ues", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kioko"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ufi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ufim"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "uga", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ugaritic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ugb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kuku-Ugbanh"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "uge", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ughele"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ugh", + Added = new DateOnly(2022, 2, 25), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kubachi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ugn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ugandan Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ugo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ugong"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ugy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Uruguayan Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "uha", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Uhami"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "uhn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Damal"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "uis", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Uisai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "uiv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Iyive"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "uji", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tanjijili"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "uka", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kaburi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ukg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ukuriguma"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ukh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ukhwejo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "uki", + Added = new DateOnly(2020, 3, 28), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kui (India)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ukk", + Added = new DateOnly(2017, 2, 23), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Muak Sa-aak"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ukl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ukrainian Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ukp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ukpe-Bayobiri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ukq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ukwa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "uks", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Urubú-Kaapor Sign Language"); + record.Description.Add(@"Kaapor Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "uku", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ukue"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ukv", + Added = new DateOnly(2020, 3, 28), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kuku"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ukw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ukwuani-Aboh-Ndoni"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "uky", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kuuk-Yak"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ula", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Fungwa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ulb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ulukwumi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ulc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ulch"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ule", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lule"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ulf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Usku"); + record.Description.Add(@"Afra"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "uli", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ulithian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ulk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Meriam Mir"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ull", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ullatan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ulm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ulumanda'"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "uln", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Unserdeutsch"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ulu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Uma' Lung"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ulw", + Added = new DateOnly(2010, 3, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ulwa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "uly", + Added = new DateOnly(2023, 3, 17), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Buli"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "uma", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Umatilla"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "umb", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Umbundu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "umc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Marrucinian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "umd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Umbindhamu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "umg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Morrobalama"); + record.Description.Add(@"Umbuygamu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "umi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ukit"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "umm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Umon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "umn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Makyan Naga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "umo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Umotína"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ump", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Umpila"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "umr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Umbugarla"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ums", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pendau"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "umu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "del", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Munsee"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "una", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"North Watut"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "und", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "special", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Undetermined"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "une", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Uneme"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ung", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ngarinyin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "uni", + Added = new DateOnly(2021, 2, 20), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Uni"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "unk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Enawené-Nawé"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "unm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "del", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Unami"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "unn", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kurnai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "unp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2012, 8, 12), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Worora"); + record.Comments.Add(@"see wro, xgu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "unr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mundari"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "unu", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Unubahe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "unx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Munda"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "unz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Unde Kaili"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "uok", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2015, 2, 12), + PreferredValue = "ema", + Tag = "", + }; + record.Description.Add(@"Uokha"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "uon", + Added = new DateOnly(2022, 2, 25), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kulon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "upi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Umeda"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "upv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Uripiv-Wala-Rano-Atchin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ura", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Urarina"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "urb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Urubú-Kaapor"); + record.Description.Add(@"Kaapor"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "urc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Urningangg"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ure", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Uru"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "urf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Uradhi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "urg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Urigina"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "urh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Urhobo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "uri", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Urim"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "urj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Uralic languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "urk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ms", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Urak Lawoi'"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "url", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Urali"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "urm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Urapmin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "urn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Uruangnirin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "uro", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ura (Papua New Guinea)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "urp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Uru-Pa-In"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "urr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lehalurup"); + record.Description.Add(@"Löyöp"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "urt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Urat"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "uru", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Urumi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "urv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Uruava"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "urw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sop"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "urx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Urimo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ury", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Orya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "urz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Uru-Eu-Wau-Wau"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "usa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Usarufa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ush", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ushojo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "usi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Usui"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "usk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Usaghade"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "usp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Uspanteco"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "uss", + Added = new DateOnly(2019, 4, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"us-Saare"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "usu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Uya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "uta", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Otank"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ute", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ute-Southern Paiute"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "uth", + Added = new DateOnly(2019, 4, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"ut-Hun"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "utp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Amba (Solomon Islands)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "utr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Etulo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "utu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Utu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "uum", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Urum"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "uun", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2022, 2, 25), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kulon-Pazeh"); + record.Comments.Add(@"see pzh, uon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "uur", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ura (Vanuatu)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "uuu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"U"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "uve", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"West Uvean"); + record.Description.Add(@"Fagauvea"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "uvh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Uri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "uvl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lote"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "uwa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kuku-Uwanh"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "uya", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Doko-Uyanga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "uzn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "uz", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Northern Uzbek"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "uzs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "uz", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southern Uzbek"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "vaa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Vaagri Booli"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "vae", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Vale"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "vaf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Vafsi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "vag", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Vagla"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "vah", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Varhadi-Nagpuri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "vai", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Vai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "vaj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sekele"); + record.Description.Add(@"Northwestern ǃKung"); + record.Description.Add(@"Vasekele"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "val", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Vehes"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "vam", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Vanimo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "van", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Valman"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "vao", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Vao"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "vap", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Vaiphei"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "var", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Huarijio"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "vas", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Vasavi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "vau", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Vanuma"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "vav", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Varli"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "vay", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wayu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "vbb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southeast Babar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "vbk", + Added = new DateOnly(2010, 3, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "bnc", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southwestern Bontok"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "vec", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Venetian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ved", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Veddah"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "vel", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Veluws"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "vem", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Vemgo-Mabas"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "veo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ventureño"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "vep", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Veps"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ver", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mom Jango"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "vgr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Vaghri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "vgt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Vlaamse Gebarentaal"); + record.Description.Add(@"Flemish Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "vic", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Virgin Islands Creole English"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "vid", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Vidunda"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "vif", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Vili"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "vig", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Viemo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "vil", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Vilela"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "vin", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Vinza"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "vis", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Vishavan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "vit", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Viti"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "viv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Iduna"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "vjk", + Added = new DateOnly(2023, 3, 17), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bajjika"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "vka", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kariyarra"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "vki", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2021, 2, 20), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ija-Zuba"); + record.Comments.Add(@"see vkn, vkz"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "vkj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kujarge"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "vkk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ms", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kaur"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "vkl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kulisusu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "vkm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kamakan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "vkn", + Added = new DateOnly(2021, 2, 20), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Koro Nulu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "vko", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kodeoha"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "vkp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Korlai Creole Portuguese"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "vkt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ms", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tenggarong Kutai Malay"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "vku", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kurrama"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "vkz", + Added = new DateOnly(2021, 2, 20), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Koro Zuba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "vlp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Valpei"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "vls", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Vlaams"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "vma", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Martuyhunira"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "vmb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Barbaram"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "vmc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Juxtlahuaca Mixtec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "vmd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mudu Koraga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "vme", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"East Masela"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "vmf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mainfränkisch"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "vmg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lungalunga"); + record.Comments.Add(@"see also bxf"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "vmh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Maraghei"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "vmi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Miwa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "vmj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ixtayutla Mixtec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "vmk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Makhuwa-Shirima"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "vml", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Malgana"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "vmm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mitlatongo Mixtec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "vmp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Soyaltepec Mazatec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "vmq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Soyaltepec Mixtec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "vmr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Marenje"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "vms", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Moksela"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "vmu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Muluridyi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "vmv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Valley Maidu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "vmw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Makhuwa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "vmx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tamazola Mixtec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "vmy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ayautla Mazatec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "vmz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mazatlán Mazatec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "vnk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Vano"); + record.Description.Add(@"Lovono"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "vnm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Vinmavis"); + record.Description.Add(@"Neve'ei"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "vnp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Vunapu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "vor", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Voro"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "vot", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Votic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "vra", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Vera'a"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "vro", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "et", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Võro"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "vrs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Varisi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "vrt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Burmbar"); + record.Description.Add(@"Banam Bay"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "vsi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Moldova Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "vsl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Venezuelan Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "vsn", + Added = new DateOnly(2024, 3, 4), + SuppressScript = "", + Scope = "", + MacroLanguage = "sa", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Vedic Sanskrit"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "vsv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Valencian Sign Language"); + record.Description.Add(@"Llengua de signes valenciana"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "vto", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Vitou"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "vum", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Vumbu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "vun", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Vunjo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "vut", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Vute"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "vwa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Awa (China)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "waa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Walla Walla"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wab", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wab"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wac", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wasco-Wishram"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wad", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wamesa"); + record.Description.Add(@"Wondama"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wae", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Walser"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "waf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wakoná"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wag", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wa'ema"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wah", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Watubela"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wai", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wares"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "waj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Waffa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wak", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wakashan languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wal", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wolaytta"); + record.Description.Add(@"Wolaitta"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wam", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wampanoag"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wan", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wao", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wappo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wap", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wapishana"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "waq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wagiman"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "war", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Waray (Philippines)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "was", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Washo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wat", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kaninuwa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wau", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Waurá"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wav", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Waka"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "waw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Waiwai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wax", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Watam"); + record.Description.Add(@"Marangis"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "way", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wayana"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "waz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wampur"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wba", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Warao"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wbb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wabo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wbe", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Waritai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wbf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wara"); + record.Comments.Add(@"see also pnl"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wbh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wanda"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wbi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Vwanji"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wbj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Alagwa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wbk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Waigali"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wbl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wakhi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wbm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wbp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Warlpiri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wbq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Waddar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wbr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "raj", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wagdi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wbs", + Added = new DateOnly(2017, 2, 23), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"West Bengal Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wbt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Warnman"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wbv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wajarri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wbw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Woi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wca", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yanomámi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wci", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Waci Gbe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wdd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wandji"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wdg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wadaginam"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wdj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wadjiginy"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wdk", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wadikali"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wdt", + Added = new DateOnly(2022, 2, 25), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wendat"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wdu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wadjigu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wdy", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wadjabangayi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wea", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wewaw"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wec", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wè Western"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wed", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wedau"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "weg", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wergaia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "weh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Weh"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wei", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kiunum"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wem", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Weme Gbe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wen", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sorbian languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "weo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wemale"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wep", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Westphalien"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wer", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Weri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wes", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cameroon Pidgin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wet", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Perai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "weu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Rawngtu Chin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wew", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wejewa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wfg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yafi"); + record.Description.Add(@"Zorop"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wga", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wagaya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wgb", + Added = new DateOnly(2010, 3, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wagawaga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wgg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wangkangurru"); + record.Description.Add(@"Wangganguru"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wgi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wahgi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wgo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Waigeo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wgu", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wirangu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wgw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2010, 3, 11), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wagawaga"); + record.Comments.Add(@"see wgb, ylb"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wgy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Warrgamay"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wha", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sou Upaa"); + record.Description.Add(@"Manusela"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "whg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"North Wahgi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "whk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wahau Kenyah"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "whu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wahau Kayan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wib", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southern Toussian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wic", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wichita"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wie", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wik-Epa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wif", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wik-Keyangan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wig", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wik Ngathan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wih", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wik-Me'anha"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wii", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Minidien"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wij", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wik-Iiyanh"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wik", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wikalkan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wil", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wilawila"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wim", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wik-Mungkan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "win", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ho-Chunk"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wir", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wiraféd"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wit", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2013, 9, 10), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wintu"); + record.Comments.Add(@"see nol, pwi, wnw"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wiu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wiru"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wiv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Vitu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wiw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2012, 8, 12), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wirangu"); + record.Comments.Add(@"see nwo, wgu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wiy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wiyot"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wja", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Waja"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wji", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Warji"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wka", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kw'adza"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wkb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kumbaran"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wkd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wakde"); + record.Description.Add(@"Mo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wkl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kalanadi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wkr", + Added = new DateOnly(2019, 4, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Keerray-Woorroong"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wku", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kunduvadi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wkw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wakawaka"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wky", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wangkayutyuru"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wla", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Walio"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wlc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mwali Comorian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wle", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wolane"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wlg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kunbarlang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wlh", + Added = new DateOnly(2020, 3, 28), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Welaun"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wli", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Waioli"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wlk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wailaki"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wll", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wali (Sudan)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wlm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Middle Welsh"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wlo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wolio"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wlr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wailapa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wls", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wallisian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wlu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wuliwuli"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wlv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wichí Lhamtés Vejoz"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wlw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Walak"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wlx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wali (Ghana)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wly", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Waling"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wma", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mawa (Nigeria)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wmb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wambaya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wmc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wamas"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wmd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mamaindé"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wme", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wambule"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wmg", + Added = new DateOnly(2021, 2, 20), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Western Minyag"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wmh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Waima'a"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wmi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wamin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wmm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Maiwa (Indonesia)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wmn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Waamwang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wmo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wom (Papua New Guinea)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wms", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wambon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wmt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Walmajarri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wmw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mwani"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wmx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Womo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wnb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mokati"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wnc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wantoat"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wnd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wandarang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wne", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Waneci"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wng", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wanggom"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wni", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ndzwani Comorian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wnk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wanukaka"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wnm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wanggamala"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wnn", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wunumara"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wno", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wano"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wnp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wanap"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wnu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Usan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wnw", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wintu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wny", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wanyi"); + record.Description.Add(@"Waanyi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "woa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kuwema"); + record.Description.Add(@"Tyaraity"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wob", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wè Northern"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "woc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wogeo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wod", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wolani"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "woe", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Woleaian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wof", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gambian Wolof"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wog", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wogamusin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "woi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kamang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wok", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Longto"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wom", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wom (Nigeria)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "won", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wongo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "woo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Manombai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wor", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Woria"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wos", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hanga Hundi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wow", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wawonii"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "woy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Weyto"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wpc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Maco"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wra", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2021, 2, 20), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Warapu"); + record.Comments.Add(@"see bpe, suo, uni"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wrb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Waluwarra"); + record.Description.Add(@"Warluwara"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wrd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2022, 2, 25), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Warduji"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wrg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Warungu"); + record.Description.Add(@"Gudjal"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wrh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wiradjuri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wri", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wariyangga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wrk", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Garrwa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wrl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Warlmanpa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wrm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Warumungu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wrn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Warnang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wro", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Worrorra"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wrp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Waropen"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wrr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wardaman"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wrs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Waris"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wru", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Waru"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wrv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Waruna"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wrw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gugu Warra"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wrx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wae Rana"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wry", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "mwr", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Merwari"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wrz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Waray (Australia)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wsa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Warembori"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wsg", + Added = new DateOnly(2016, 5, 30), + SuppressScript = "", + Scope = "", + MacroLanguage = "gon", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Adilabad Gondi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wsi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wusi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wsk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Waskia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wsr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Owenia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wss", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wasa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wsu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wasu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wsv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wotapuri-Katarqalai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wtb", + Added = new DateOnly(2023, 3, 17), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Matambwe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wtf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Watiwa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wth", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wathawurrung"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wti", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Berta"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wtk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Watakataui"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wtm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mewati"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wtw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wotu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wua", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wikngenchera"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wub", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wunambal"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wud", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wudu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wuh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wutunhua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wul", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Silimo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wum", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wumbvu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wun", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bungu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wur", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wurrugu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wut", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wutung"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wuu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "zh", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wu Chinese"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wuv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wuvulu-Aua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wux", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wulna"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wuy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wauyai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wwa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Waama"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wwb", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wakabunga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wwo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wetamut"); + record.Description.Add(@"Dorig"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wwr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Warrwa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "www", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wawa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wxa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Waxianghua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wxw", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wardandi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wya", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2022, 2, 25), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wyandot"); + record.Comments.Add(@"see wdt, wyn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wyb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wangaaybuwan-Ngiyambaa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wyi", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Woiwurrung"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wym", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wymysorys"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wyn", + Added = new DateOnly(2022, 2, 25), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wyandot"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wyr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wayoró"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "wyy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Western Fijian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xaa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Andalusian Arabic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xab", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sambe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xac", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kachari"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xad", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Adai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xae", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Aequian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xag", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Aghwan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xai", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kaimbé"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xaj", + Added = new DateOnly(2014, 2, 28), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ararandewára"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xak", + Added = new DateOnly(2016, 5, 30), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Máku"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xal", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kalmyk"); + record.Description.Add(@"Oirat"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xam", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"ǀXam"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xan", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Xamtanga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xao", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Khao"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xap", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Apalachee"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xaq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Aquitanian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xar", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Karami"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xas", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kamas"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xat", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Katawixi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xau", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kauwera"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xav", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Xavánte"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xaw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kawaiisu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xay", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kayan Mahakam"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xba", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2016, 5, 30), + PreferredValue = "cax", + Tag = "", + }; + record.Description.Add(@"Kamba (Brazil)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xbb", + Added = new DateOnly(2010, 3, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lower Burdekin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xbc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bactrian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xbd", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bindal"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xbe", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bigambal"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xbg", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bunganditj"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xbi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kombio"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xbj", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Birrpayi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xbm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Middle Breton"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xbn", + Added = new DateOnly(2010, 3, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kenaboi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xbo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bolgarian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xbp", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bibbulman"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xbr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kambera"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xbw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kambiwá"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xbx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2016, 5, 30), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kabixí"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xby", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Batjala"); + record.Description.Add(@"Batyala"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xcb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cumbric"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xcc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Camunic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xce", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Celtiberian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xcg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cisalpine Gaulish"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xch", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chemakum"); + record.Description.Add(@"Chimakum"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xcl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Classical Armenian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xcm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Comecrudo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xcn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cotoname"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xco", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chorasmian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xcr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Carian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xct", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Classical Tibetan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xcu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Curonian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xcv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chuvantsy"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xcw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Coahuilteco"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xcy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cayuse"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xda", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Darkinyung"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xdc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dacian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xdk", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dharuk"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xdm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Edomite"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xdo", + Added = new DateOnly(2017, 2, 23), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kwandu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xdq", + Added = new DateOnly(2022, 2, 25), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kaitag"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xdy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Malayic Dayak"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xeb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Eblan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xed", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hdi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xeg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"ǁXegwi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xel", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kelo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xem", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kembayan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xep", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Epi-Olmec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xer", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Xerénte"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xes", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kesawai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xet", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Xetá"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xeu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Keoru-Ahia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xfa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Faliscan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xga", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Galatian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xgb", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gbin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xgd", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gudang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xgf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gabrielino-Fernandeño"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xgg", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Goreng"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xgi", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Garingbal"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xgl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Galindan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xgm", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dharumbal"); + record.Description.Add(@"Guwinmal"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xgn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mongolian languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xgr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Garza"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xgu", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Unggumi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xgw", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Guwa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xha", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Harami"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xhc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hunnic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xhd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hadrami"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xhe", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "lah", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Khetrani"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xhm", + Added = new DateOnly(2022, 2, 25), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Middle Khmer (1400 to 1850 CE)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xhr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hernican"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xht", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hattic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xhu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hurrian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xhv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Khua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xia", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2013, 9, 10), + PreferredValue = "acn", + Tag = "", + }; + record.Description.Add(@"Xiandao"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xib", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Iberian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xii", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Xiri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xil", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Illyrian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xin", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Xinca"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xip", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2016, 5, 30), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Xipináwa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xir", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Xiriâna"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xis", + Added = new DateOnly(2014, 2, 28), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kisan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xiv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Indus Valley Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xiy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Xipaya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xjb", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Minjungbal"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xjt", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jaitmatang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xka", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kalkoti"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xkb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Northern Nago"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xkc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kho'ini"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xkd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mendalam Kayan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xke", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kereho"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xkf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Khengkha"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xkg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kagoro"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xkh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2016, 5, 30), + PreferredValue = "waw", + Tag = "", + }; + record.Description.Add(@"Karahawyana"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xki", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kenyan Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xkj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kajali"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xkk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kachok"); + record.Description.Add(@"Kaco'"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xkl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mainstream Kenyah"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xkn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kayan River Kayan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xko", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kiorr"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xkp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kabatei"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xkq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Koroni"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xkr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Xakriabá"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xks", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kumbewaha"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xkt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kantosi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xku", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kaamba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xkv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kgalagadi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xkw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kembra"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xkx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Karore"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xky", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Uma' Lasan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xkz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kurtokha"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xla", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kamula"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xlb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Loup B"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xlc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lycian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xld", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lydian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xle", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lemnian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xlg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ligurian (Ancient)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xli", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Liburnian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xln", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Alanic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xlo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Loup A"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xlp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lepontic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xls", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lusitanian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xlu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cuneiform Luwian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xly", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Elymian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xma", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mushungulu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xmb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mbonga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xmc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Makhuwa-Marrevone"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xmd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mbudum"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xme", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Median"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xmf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mingrelian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xmg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mengaka"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xmh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kugu-Muminh"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xmj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Majera"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xmk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ancient Macedonian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xml", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Malaysian Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xmm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ms", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Manado Malay"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xmn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Manichaean Middle Persian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xmo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Morerebi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xmp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kuku-Mu'inh"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xmq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kuku-Mangk"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xmr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Meroitic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xms", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Moroccan Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xmt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Matbat"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xmu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kamu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xmv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "mg", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Antankarana Malagasy"); + record.Description.Add(@"Tankarana Malagasy"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xmw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "mg", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tsimihety Malagasy"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xmx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Salawati"); + record.Description.Add(@"Maden"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xmy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mayaguduna"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xmz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mori Bawah"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xna", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ancient North Arabian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xnb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kanakanabu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xnd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Na-Dene languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xng", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Middle Mongolian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xnh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kuanhua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xni", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ngarigu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xnj", + Added = new DateOnly(2021, 2, 20), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ngoni (Tanzania)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xnk", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nganakarti"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xnm", + Added = new DateOnly(2020, 3, 28), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ngumbarl"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xnn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Northern Kankanay"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xno", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Anglo-Norman"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xnq", + Added = new DateOnly(2021, 2, 20), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ngoni (Mozambique)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xnr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "doi", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kangri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xns", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kanashi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xnt", + Added = new DateOnly(2010, 3, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Narragansett"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xnu", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nukunul"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xny", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nyiyaparli"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xnz", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kenzi"); + record.Description.Add(@"Mattoki"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xoc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"O'chi'chi'"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xod", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kokoda"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xog", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Soga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xoi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kominimung"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xok", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Xokleng"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xom", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Komo (Sudan)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xon", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Konkomba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xoo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Xukurú"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xop", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kopar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xor", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Korubo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xow", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kowaki"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xpa", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pirriya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xpb", + Added = new DateOnly(2020, 3, 28), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Northeastern Tasmanian"); + record.Description.Add(@"Pyemmairrener"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xpc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pecheneg"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xpd", + Added = new DateOnly(2020, 3, 28), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Oyster Bay Tasmanian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xpe", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "kpe", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Liberia Kpelle"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xpf", + Added = new DateOnly(2020, 3, 28), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southeast Tasmanian"); + record.Description.Add(@"Nuenonne"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xpg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Phrygian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xph", + Added = new DateOnly(2020, 3, 28), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"North Midlands Tasmanian"); + record.Description.Add(@"Tyerrenoterpanner"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xpi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pictish"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xpj", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mpalitjanh"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xpk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kulina Pano"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xpl", + Added = new DateOnly(2020, 3, 28), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Port Sorell Tasmanian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xpm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pumpokol"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xpn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kapinawá"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xpo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pochutec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xpp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Puyo-Paekche"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xpq", + Added = new DateOnly(2010, 3, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mohegan-Pequot"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xpr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Parthian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xps", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pisidian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xpt", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Punthamara"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xpu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Punic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xpv", + Added = new DateOnly(2020, 3, 28), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Northern Tasmanian"); + record.Description.Add(@"Tommeginne"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xpw", + Added = new DateOnly(2020, 3, 28), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Northwestern Tasmanian"); + record.Description.Add(@"Peerapper"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xpx", + Added = new DateOnly(2020, 3, 28), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southwestern Tasmanian"); + record.Description.Add(@"Toogee"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xpy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Puyo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xpz", + Added = new DateOnly(2020, 3, 28), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bruny Island Tasmanian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xqa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Karakhanid"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xqt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Qatabanian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xra", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Krahô"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xrb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Eastern Karaboro"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xrd", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gundungurra"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xre", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kreye"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xrg", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Minang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xri", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Krikati-Timbira"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xrm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Armazic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xrn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Arin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xrq", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2020, 3, 28), + PreferredValue = "dmw", + Tag = "", + }; + record.Description.Add(@"Karranga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xrr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Raetic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xrt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Aranama-Tamique"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xru", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Marriammu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xrw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Karawa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xsa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sabaean"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xsb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sambal"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xsc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Scythian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xsd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sidetic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xse", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sempan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xsh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Shamang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xsi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sio"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xsj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Subi"); + record.Comments.Add(@"see also suj"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xsl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "den", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"South Slavey"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xsm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kasem"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xsn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sanga (Nigeria)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xso", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Solano"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xsp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Silopi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xsq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Makhuwa-Saka"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xsr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sherpa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xss", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2023, 3, 17), + PreferredValue = "zko", + Tag = "", + }; + record.Description.Add(@"Assan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xsu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sanumá"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xsv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sudovian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xsy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Saisiyat"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xta", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Alcozauca Mixtec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xtb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chazumba Mixtec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xtc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Katcha-Kadugli-Miri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xtd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Diuxi-Tilantongo Mixtec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xte", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ketengban"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xtg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Transalpine Gaulish"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xth", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yitha Yitha"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xti", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sinicahua Mixtec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xtj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"San Juan Teita Mixtec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xtl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tijaltepec Mixtec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xtm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Magdalena Peñasco Mixtec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xtn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Northern Tlaxiaco Mixtec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xto", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tokharian A"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xtp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"San Miguel Piedras Mixtec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xtq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tumshuqese"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xtr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Early Tripuri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xts", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sindihui Mixtec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xtt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tacahua Mixtec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xtu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cuyamecalco Mixtec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xtv", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Thawa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xtw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tawandê"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xty", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yoloxochitl Mixtec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xtz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2020, 3, 28), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tasmanian"); + record.Comments.Add(@"see xpb, xpd, xpf, xph, xpl, xpv, xpw, xpx, xpz"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xua", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Alu Kurumba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xub", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Betta Kurumba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xud", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Umiida"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xug", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kunigami"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xuj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jennu Kurumba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xul", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ngunawal"); + record.Description.Add(@"Nunukul"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xum", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Umbrian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xun", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Unggaranggu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xuo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kuo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xup", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Upper Umpqua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xur", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Urartian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xut", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kuthant"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xuu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kxoe"); + record.Description.Add(@"Khwedam"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xve", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Venetic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xvi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kamviri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xvn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Vandalic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xvo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Volscian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xvs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Vestinian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xwa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kwaza"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xwc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Woccon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xwd", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wadi Wadi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xwe", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Xwela Gbe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xwg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kwegu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xwj", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wajuk"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xwk", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wangkumara"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xwl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Western Xwla Gbe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xwo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Written Oirat"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xwr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kwerba Mamberamo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xwt", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wotjobaluk"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xww", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wemba Wemba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xxb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Boro (Ghana)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xxk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ke'o"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xxm", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Minkin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xxr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Koropó"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xxt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tambora"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xya", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yaygir"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xyb", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yandjibara"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xyj", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mayi-Yapi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xyk", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mayi-Kulan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xyl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yalakalore"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xyt", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mayi-Thakurti"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xyy", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yorta Yorta"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xzh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Zhang-Zhung"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xzm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Zemgalian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "xzp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ancient Zapotec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yaa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yaminahua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yab", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yuhup"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yac", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pass Valley Yali"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yad", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yagua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yae", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pumé"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yaf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yaka (Democratic Republic of Congo)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yag", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yámana"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yah", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yazgulyam"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yai", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yagnobi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yaj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Banda-Yangere"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yak", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yakama"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yal", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yalunka"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yam", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yamba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yan", + Added = new DateOnly(2010, 3, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mayangna"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yao", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yao"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yap", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yapese"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yaq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yaqui"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yar", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yabarana"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yas", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nugunu (Cameroon)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yat", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yambeta"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yau", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yuwana"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yav", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yangben"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yaw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yawalapití"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yax", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yauma"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yay", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Agwagwune"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yaz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lokaa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yba", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yala"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ybb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yemba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ybd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2012, 8, 12), + PreferredValue = "rki", + Tag = "", + }; + record.Description.Add(@"Yangbye"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ybe", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"West Yugur"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ybh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yakha"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ybi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yamphu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ybj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hasha"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ybk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bokha"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ybl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yukuben"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ybm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yaben"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ybn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yabaâna"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ybo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yabong"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ybx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yawiyo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yby", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yaweyuha"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ych", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chesu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ycl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lolopo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ycn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yucuna"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ycp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chepya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ycr", + Added = new DateOnly(2023, 3, 17), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yilan Creole"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yda", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yanda"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ydd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "yi", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Eastern Yiddish"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yde", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yangum Dey"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ydg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yidgha"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ydk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yoidik"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yds", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2015, 2, 12), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yiddish Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yea", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ravula"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yec", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yeniche"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yee", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yimas"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yei", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yeni"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yej", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yevanic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yel", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yela"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yen", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2012, 8, 12), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yendang"); + record.Comments.Add(@"see ynq, yot"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yer", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tarok"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yes", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nyankpa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yet", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yetfa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yeu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yerukula"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yev", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yapunda"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yey", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yeyi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yga", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Malyangapa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ygi", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yiningayi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ygl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yangum Gel"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ygm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yagomi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ygp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gepo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ygr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yagaria"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ygs", + Added = new DateOnly(2014, 2, 28), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yolŋu Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ygu", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yugul"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ygw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yagwoia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yha", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Baha Buyang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yhd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "jrb", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Judeo-Iraqi Arabic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yhl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hlepho Phowa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yhs", + Added = new DateOnly(2015, 4, 17), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yan-nhaŋu Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yia", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yinggarda"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yif", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ache"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yig", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wusa Nasu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yih", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "yi", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Western Yiddish"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yii", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yidiny"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yij", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yindjibarndi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yik", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dongshanba Lalo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yil", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yindjilandji"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yim", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yimchungru Naga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yin", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Riang Lai"); + record.Description.Add(@"Yinchia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yip", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pholo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yiq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Miqie"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yir", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"North Awyu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yis", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yis"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yit", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Eastern Lalu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yiu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Awu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yiv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Northern Nisu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yix", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Axi Yi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yiy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2013, 9, 10), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yir Yoront"); + record.Comments.Add(@"see yrm, yyr"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yiz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Azhe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yka", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yakan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ykg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Northern Yukaghir"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ykh", + Added = new DateOnly(2023, 3, 17), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Khamnigan Mongol"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yki", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yoke"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ykk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yakaikeke"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ykl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Khlula"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ykm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kap"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ykn", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kua-nsi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yko", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yasa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ykr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yekora"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ykt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kathu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yku", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kuamasi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yky", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yakoma"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yla", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yaul"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ylb", + Added = new DateOnly(2010, 3, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yaleba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yle", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yele"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ylg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yelogu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yli", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Angguruk Yali"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yll", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yil"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ylm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Limi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yln", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Langnian Buyang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ylo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Naluo Yi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ylr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yalarnnga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ylu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Aribwaung"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yly", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nyâlayu"); + record.Description.Add(@"Nyelâyu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yma", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2012, 8, 12), + PreferredValue = "lrr", + Tag = "", + }; + record.Description.Add(@"Yamphe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ymb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yambes"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ymc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southern Muji"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ymd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Muda"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yme", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yameo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ymg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yamongeri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ymh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mili"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ymi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Moji"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ymk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Makwe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yml", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Iamalele"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ymm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Maay"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ymn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yamna"); + record.Description.Add(@"Sunum"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ymo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yangum Mon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ymp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yamap"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ymq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Qila Muji"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ymr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Malasar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yms", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mysian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ymt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2015, 2, 12), + PreferredValue = "mtm", + Tag = "", + }; + record.Description.Add(@"Mator-Taygi-Karagas"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ymx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Northern Muji"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ymz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Muzi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yna", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Aluo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ynb", + Added = new DateOnly(2025, 2, 6), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yamben"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ynd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yandruwandha"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yne", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lang'e"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yng", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yango"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ynh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2015, 2, 12), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yangho"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ynk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Naukan Yupik"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ynl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yangulam"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ynn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yana"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yno", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yong"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ynq", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yendang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yns", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yansi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ynu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yahuna"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yob", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yoba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yog", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yogad"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yoi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yonaguni"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yok", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yokuts"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yol", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yola"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yom", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yombe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yon", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yongkom"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yos", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2013, 9, 10), + PreferredValue = "zom", + Tag = "", + }; + record.Description.Add(@"Yos"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yot", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yotti"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yox", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yoron"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yoy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yoy"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ypa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Phala"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ypb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Labo Phowa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ypg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Phola"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yph", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Phupha"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ypk", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yupik languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ypm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Phuma"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ypn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ani Phowa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ypo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Alo Phola"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ypp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Phupa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ypz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Phuza"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yra", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yerakai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yrb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yareba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yre", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yaouré"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yri", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2016, 5, 30), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yarí"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yrk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nenets"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yrl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nhengatu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yrm", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yirrk-Mel"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yrn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yerong"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yro", + Added = new DateOnly(2016, 5, 30), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yaroamë"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yrs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yarsun"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yrw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yarawata"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yry", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yarluyandi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ysc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yassic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ysd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Samatao"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ysg", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sonaga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ysl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yugoslavian Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ysm", + Added = new DateOnly(2021, 2, 20), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Myanmar Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ysn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sani"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yso", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nisi (China)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ysp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southern Lolopo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ysr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sirenik Yupik"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yss", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yessan-Mayo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ysy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sanie"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yta", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Talu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ytl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tanglang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ytp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Thopho"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ytw", + Added = new DateOnly(2010, 3, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yout Wam"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yty", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yatay"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yua", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yucateco"); + record.Description.Add(@"Yucatec Maya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yub", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yugambal"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yuc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yuchi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yud", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "jrb", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Judeo-Tripolitanian Arabic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yue", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "zh", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yue Chinese"); + record.Description.Add(@"Cantonese"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yuf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Havasupai-Walapai-Yavapai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yug", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yug"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yui", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yurutí"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yuj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Karkar-Yuri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yuk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yuki"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yul", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yulu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yum", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Quechan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yun", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bena (Nigeria)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yup", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yukpa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yuq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yuqui"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yur", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yurok"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yut", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yopno"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yuu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2014, 2, 28), + PreferredValue = "yug", + Tag = "", + }; + record.Description.Add(@"Yugh"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yuw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yau (Morobe Province)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yux", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southern Yukaghir"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yuy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"East Yugur"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yuz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yuracare"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yva", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yawa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yvt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yavitero"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ywa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kalou"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ywg", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yinhawangka"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ywl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Western Lalu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ywn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yawanawa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ywq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wuding-Luquan Yi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ywr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yawuru"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ywt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Xishanba Lalo"); + record.Description.Add(@"Central Lalo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ywu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wumeng Nasu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yww", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yawarawarga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yxa", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mayawali"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yxg", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yagara"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yxl", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yardliyawarra"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yxm", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yinwum"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yxu", + Added = new DateOnly(2013, 9, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yuyu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yxy", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yabula Yabula"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yyr", + Added = new DateOnly(2013, 9, 3), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yir Yoront"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yyu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yau (Sandaun Province)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yyz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ayizi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yzg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"E'ma Buyang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "yzk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Zokhuo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zaa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "zap", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sierra de Juárez Zapotec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zab", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "zap", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Western Tlacolula Valley Zapotec"); + record.Description.Add(@"San Juan Guelavía Zapotec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zac", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "zap", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ocotlán Zapotec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zad", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "zap", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cajonos Zapotec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zae", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "zap", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yareni Zapotec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zaf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "zap", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ayoquesco Zapotec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zag", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Zaghawa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zah", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Zangwal"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zai", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "zap", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Isthmus Zapotec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zaj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Zaramo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zak", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Zanaki"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zal", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Zauzou"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zam", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "zap", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Miahuatlán Zapotec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zao", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "zap", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ozolotepec Zapotec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zap", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "macrolanguage", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Zapotec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zaq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "zap", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Aloápam Zapotec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zar", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "zap", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Rincón Zapotec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zas", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "zap", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Santo Domingo Albarradas Zapotec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zat", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "zap", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tabaa Zapotec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zau", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Zangskari"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zav", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "zap", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yatzachi Zapotec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zaw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "zap", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mitla Zapotec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zax", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "zap", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Xadani Zapotec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zay", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Zayse-Zergulla"); + record.Description.Add(@"Zaysete"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zaz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Zari"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zba", + Added = new DateOnly(2020, 3, 28), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Balaibalan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zbc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Central Berawan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zbe", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"East Berawan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zbl", + Added = new DateOnly(2007, 8, 21), + SuppressScript = "Blis", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Blissymbols"); + record.Description.Add(@"Bliss"); + record.Description.Add(@"Blissymbolics"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zbt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Batui"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zbu", + Added = new DateOnly(2021, 2, 20), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bu (Bauchi State)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zbw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"West Berawan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zca", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "zap", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Coatecas Altas Zapotec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zcd", + Added = new DateOnly(2022, 2, 25), + SuppressScript = "", + Scope = "", + MacroLanguage = "zap", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Las Delicias Zapotec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zch", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "za", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Central Hongshuihe Zhuang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zdj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ngazidja Comorian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zea", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Zeeuws"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zeg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Zenag"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zeh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "za", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Eastern Hongshuihe Zhuang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zem", + Added = new DateOnly(2023, 3, 17), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Zeem"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zen", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Zenaga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zga", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kinga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zgb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "za", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Guibei Zhuang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zgh", + Added = new DateOnly(2013, 1, 25), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Standard Moroccan Tamazight"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zgm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "za", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Minz Zhuang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zgn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "za", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Guibian Zhuang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zgr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Magori"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zhb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Zhaba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zhd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "za", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dai Zhuang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zhi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Zhire"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zhn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "za", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nong Zhuang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zhw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Zhoa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zhx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chinese (family)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zia", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Zia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zib", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Zimbabwe Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zik", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Zimakani"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zil", + Added = new DateOnly(2011, 8, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Zialo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zim", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mesme"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zin", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Zinza"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zir", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2020, 3, 28), + PreferredValue = "scv", + Tag = "", + }; + record.Description.Add(@"Ziriya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ziw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Zigula"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ziz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Zizilivakan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zka", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kaimbulawa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zkb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2023, 3, 17), + PreferredValue = "kjh", + Tag = "", + }; + record.Description.Add(@"Koibal"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zkd", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kadu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zkg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Koguryo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zkh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Khorezmian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zkk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Karankawa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zkn", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kanan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zko", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kott"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zkp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"São Paulo Kaingáng"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zkr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Zakhring"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zkt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kitan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zku", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kaurna"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zkv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Krevinian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zkz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Khazar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zla", + Added = new DateOnly(2021, 2, 20), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Zula"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zle", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"East Slavic languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zlj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "za", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Liujiang Zhuang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zlm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ms", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Malay (individual language)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zln", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "za", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lianshan Zhuang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zlq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "za", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Liuqian Zhuang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zls", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"South Slavic languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zlu", + Added = new DateOnly(2023, 3, 17), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Zul"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zlw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"West Slavic languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zma", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Manda (Australia)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zmb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Zimba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zmc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Margany"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zmd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Maridan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zme", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mangerr"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zmf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mfinu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zmg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Marti Ke"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zmh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Makolkol"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zmi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ms", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Negeri Sembilan Malay"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zmj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Maridjabin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zmk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mandandanyi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zml", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Matngala"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zmm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Marimanindji"); + record.Description.Add(@"Marramaninyshi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zmn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mbangwe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zmo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Molo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zmp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mpuono"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zmq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mituku"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zmr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Maranunggu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zms", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mbesa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zmt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Maringarr"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zmu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Muruwari"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zmv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mbariman-Gudhinma"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zmw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mbo (Democratic Republic of Congo)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zmx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bomitaba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zmy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mariyedi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zmz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mbandja"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zna", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Zan Gula"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "znd", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "collection", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Zande languages"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zne", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Zande (individual language)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zng", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "znk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Manangkari"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zns", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mangas"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zoc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Copainalá Zoque"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zoh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chimalapa Zoque"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zom", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Zou"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zoo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "zap", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Asunción Mixtepec Zapotec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zoq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tabasco Zoque"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zor", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Rayón Zoque"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zos", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Francisco León Zoque"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zpa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "zap", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lachiguiri Zapotec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zpb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "zap", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yautepec Zapotec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zpc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "zap", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Choapan Zapotec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zpd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "zap", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southeastern Ixtlán Zapotec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zpe", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "zap", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Petapa Zapotec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zpf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "zap", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"San Pedro Quiatoni Zapotec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zpg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "zap", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Guevea De Humboldt Zapotec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zph", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "zap", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Totomachapan Zapotec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zpi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "zap", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Santa María Quiegolani Zapotec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zpj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "zap", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Quiavicuzas Zapotec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zpk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "zap", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tlacolulita Zapotec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zpl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "zap", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lachixío Zapotec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zpm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "zap", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mixtepec Zapotec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zpn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "zap", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Santa Inés Yatzechi Zapotec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zpo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "zap", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Amatlán Zapotec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zpp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "zap", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"El Alto Zapotec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zpq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "zap", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Zoogocho Zapotec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zpr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "zap", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Santiago Xanica Zapotec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zps", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "zap", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Coatlán Zapotec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zpt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "zap", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"San Vicente Coatlán Zapotec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zpu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "zap", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yalálag Zapotec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zpv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "zap", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chichicapan Zapotec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zpw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "zap", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Zaniza Zapotec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zpx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "zap", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"San Baltazar Loxicha Zapotec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zpy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "zap", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mazaltepec Zapotec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zpz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "zap", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Texmelucan Zapotec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zqe", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "za", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Qiubei Zhuang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zra", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kara (Korea)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zrg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mirgan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zrn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Zerenkel"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zro", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Záparo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zrp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Zarphatic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zrs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mairasi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zsa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sarasira"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zsk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kaskean"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zsl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Zambian Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zsm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ms", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Standard Malay"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zsr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "zap", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southern Rincon Zapotec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zsu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sukurum"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zte", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "zap", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Elotepec Zapotec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ztg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "zap", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Xanaguía Zapotec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ztl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "zap", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lapaguía-Guivini Zapotec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ztm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "zap", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"San Agustín Mixtepec Zapotec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ztn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "zap", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Santa Catarina Albarradas Zapotec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ztp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "zap", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Loxicha Zapotec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ztq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "zap", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Quioquitani-Quierí Zapotec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zts", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "zap", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tilquiapan Zapotec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ztt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "zap", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tejalapan Zapotec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ztu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "zap", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Güilá Zapotec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "ztx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "zap", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Zaachila Zapotec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zty", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "zap", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yatee Zapotec"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zua", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2023, 3, 17), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Zeem"); + record.Comments.Add(@"see cxh, dsk, dyr, tvi, zem"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zuh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tokano"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zum", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kumzari"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zun", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Zuni"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zuy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Zumaya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zwa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Zay"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zxx", + Added = new DateOnly(2006, 3, 8), + SuppressScript = "", + Scope = "special", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"No linguistic content"); + record.Description.Add(@"Not applicable"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zyb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "za", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yongbei Zhuang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zyg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "za", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yang Zhuang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zyj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "za", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Youjiang Zhuang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zyn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "za", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yongnan Zhuang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zyp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Zyphe Chin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zza", + Added = new DateOnly(2006, 8, 24), + SuppressScript = "", + Scope = "macrolanguage", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Zaza"); + record.Description.Add(@"Dimili"); + record.Description.Add(@"Dimli (macrolanguage)"); + record.Description.Add(@"Kirdki"); + record.Description.Add(@"Kirmanjki (macrolanguage)"); + record.Description.Add(@"Zazaki"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Language, + SubTag = "zzj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "za", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Zuojiang Zhuang"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "aao", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ar", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "aao", + Tag = "", + }; + record.Description.Add(@"Algerian Saharan Arabic"); + record.Prefix.Add("ar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "abh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ar", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "abh", + Tag = "", + }; + record.Description.Add(@"Tajiki Arabic"); + record.Prefix.Add("ar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "abv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ar", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "abv", + Tag = "", + }; + record.Description.Add(@"Baharna Arabic"); + record.Prefix.Add("ar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "acm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ar", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "acm", + Tag = "", + }; + record.Description.Add(@"Mesopotamian Arabic"); + record.Prefix.Add("ar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "acq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ar", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "acq", + Tag = "", + }; + record.Description.Add(@"Ta'izzi-Adeni Arabic"); + record.Prefix.Add("ar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "acw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ar", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "acw", + Tag = "", + }; + record.Description.Add(@"Hijazi Arabic"); + record.Prefix.Add("ar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "acx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ar", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "acx", + Tag = "", + }; + record.Description.Add(@"Omani Arabic"); + record.Prefix.Add("ar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "acy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ar", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "acy", + Tag = "", + }; + record.Description.Add(@"Cypriot Arabic"); + record.Prefix.Add("ar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "adf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ar", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "adf", + Tag = "", + }; + record.Description.Add(@"Dhofari Arabic"); + record.Prefix.Add("ar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "ads", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "ads", + Tag = "", + }; + record.Description.Add(@"Adamorobe Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "aeb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ar", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "aeb", + Tag = "", + }; + record.Description.Add(@"Tunisian Arabic"); + record.Prefix.Add("ar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "aec", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ar", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "aec", + Tag = "", + }; + record.Description.Add(@"Saidi Arabic"); + record.Prefix.Add("ar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "aed", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "aed", + Tag = "", + }; + record.Description.Add(@"Argentine Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "aen", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "aen", + Tag = "", + }; + record.Description.Add(@"Armenian Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "afb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ar", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "afb", + Tag = "", + }; + record.Description.Add(@"Gulf Arabic"); + record.Prefix.Add("ar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "afg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "afg", + Tag = "", + }; + record.Description.Add(@"Afghan Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "ajp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ar", + Deprecated = new DateOnly(2023, 3, 17), + PreferredValue = "ajp", + Tag = "", + }; + record.Description.Add(@"South Levantine Arabic"); + record.Prefix.Add("ar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "ajs", + Added = new DateOnly(2022, 2, 25), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "ajs", + Tag = "", + }; + record.Description.Add(@"Algerian Jewish Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "apc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ar", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "apc", + Tag = "", + }; + record.Description.Add(@"Levantine Arabic"); + record.Prefix.Add("ar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "apd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ar", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "apd", + Tag = "", + }; + record.Description.Add(@"Sudanese Arabic"); + record.Prefix.Add("ar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "arb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ar", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "arb", + Tag = "", + }; + record.Description.Add(@"Standard Arabic"); + record.Prefix.Add("ar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "arq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ar", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "arq", + Tag = "", + }; + record.Description.Add(@"Algerian Arabic"); + record.Prefix.Add("ar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "ars", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ar", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "ars", + Tag = "", + }; + record.Description.Add(@"Najdi Arabic"); + record.Prefix.Add("ar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "ary", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ar", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "ary", + Tag = "", + }; + record.Description.Add(@"Moroccan Arabic"); + record.Prefix.Add("ar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "arz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ar", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "arz", + Tag = "", + }; + record.Description.Add(@"Egyptian Arabic"); + record.Prefix.Add("ar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "ase", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "ase", + Tag = "", + }; + record.Description.Add(@"American Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "asf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "asf", + Tag = "", + }; + record.Description.Add(@"Auslan"); + record.Description.Add(@"Australian Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "asp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "asp", + Tag = "", + }; + record.Description.Add(@"Algerian Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "asq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "asq", + Tag = "", + }; + record.Description.Add(@"Austrian Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "asw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "asw", + Tag = "", + }; + record.Description.Add(@"Australian Aborigines Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "auz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ar", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "auz", + Tag = "", + }; + record.Description.Add(@"Uzbeki Arabic"); + record.Prefix.Add("ar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "avl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ar", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "avl", + Tag = "", + }; + record.Description.Add(@"Eastern Egyptian Bedawi Arabic"); + record.Prefix.Add("ar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "ayh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ar", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "ayh", + Tag = "", + }; + record.Description.Add(@"Hadrami Arabic"); + record.Prefix.Add("ar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "ayl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ar", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "ayl", + Tag = "", + }; + record.Description.Add(@"Libyan Arabic"); + record.Prefix.Add("ar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "ayn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ar", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "ayn", + Tag = "", + }; + record.Description.Add(@"Sanaani Arabic"); + record.Prefix.Add("ar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "ayp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ar", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "ayp", + Tag = "", + }; + record.Description.Add(@"North Mesopotamian Arabic"); + record.Prefix.Add("ar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "bbz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ar", + Deprecated = new DateOnly(2020, 3, 28), + PreferredValue = "bbz", + Tag = "", + }; + record.Description.Add(@"Babalia Creole Arabic"); + record.Prefix.Add("ar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "bfi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "bfi", + Tag = "", + }; + record.Description.Add(@"British Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "bfk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "bfk", + Tag = "", + }; + record.Description.Add(@"Ban Khor Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "bjn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ms", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "bjn", + Tag = "", + }; + record.Description.Add(@"Banjar"); + record.Prefix.Add("ms"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "bog", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "bog", + Tag = "", + }; + record.Description.Add(@"Bamako Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "bqn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "bqn", + Tag = "", + }; + record.Description.Add(@"Bulgarian Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "bqy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "bqy", + Tag = "", + }; + record.Description.Add(@"Bengkala Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "btj", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ms", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "btj", + Tag = "", + }; + record.Description.Add(@"Bacanese Malay"); + record.Prefix.Add("ms"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "bve", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ms", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "bve", + Tag = "", + }; + record.Description.Add(@"Berau Malay"); + record.Prefix.Add("ms"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "bvl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "bvl", + Tag = "", + }; + record.Description.Add(@"Bolivian Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "bvu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ms", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "bvu", + Tag = "", + }; + record.Description.Add(@"Bukit Malay"); + record.Prefix.Add("ms"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "bzs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "bzs", + Tag = "", + }; + record.Description.Add(@"Brazilian Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "cdo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "zh", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "cdo", + Tag = "", + }; + record.Description.Add(@"Min Dong Chinese"); + record.Prefix.Add("zh"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "cds", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "cds", + Tag = "", + }; + record.Description.Add(@"Chadian Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "cjy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "zh", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "cjy", + Tag = "", + }; + record.Description.Add(@"Jinyu Chinese"); + record.Prefix.Add("zh"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "cmn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "zh", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "cmn", + Tag = "", + }; + record.Description.Add(@"Mandarin Chinese"); + record.Prefix.Add("zh"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "cnp", + Added = new DateOnly(2020, 3, 28), + SuppressScript = "", + Scope = "", + MacroLanguage = "zh", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "cnp", + Tag = "", + }; + record.Description.Add(@"Northern Ping Chinese"); + record.Description.Add(@"Northern Pinghua"); + record.Prefix.Add("zh"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "coa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ms", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "coa", + Tag = "", + }; + record.Description.Add(@"Cocos Islands Malay"); + record.Prefix.Add("ms"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "cpx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "zh", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "cpx", + Tag = "", + }; + record.Description.Add(@"Pu-Xian Chinese"); + record.Prefix.Add("zh"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "csc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "csc", + Tag = "", + }; + record.Description.Add(@"Catalan Sign Language"); + record.Description.Add(@"Lengua de señas catalana"); + record.Description.Add(@"Llengua de Signes Catalana"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "csd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "csd", + Tag = "", + }; + record.Description.Add(@"Chiangmai Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "cse", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "cse", + Tag = "", + }; + record.Description.Add(@"Czech Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "csf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "csf", + Tag = "", + }; + record.Description.Add(@"Cuba Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "csg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "csg", + Tag = "", + }; + record.Description.Add(@"Chilean Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "csl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "csl", + Tag = "", + }; + record.Description.Add(@"Chinese Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "csn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "csn", + Tag = "", + }; + record.Description.Add(@"Colombian Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "csp", + Added = new DateOnly(2020, 3, 28), + SuppressScript = "", + Scope = "", + MacroLanguage = "zh", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "csp", + Tag = "", + }; + record.Description.Add(@"Southern Ping Chinese"); + record.Description.Add(@"Southern Pinghua"); + record.Prefix.Add("zh"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "csq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "csq", + Tag = "", + }; + record.Description.Add(@"Croatia Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "csr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "csr", + Tag = "", + }; + record.Description.Add(@"Costa Rican Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "csx", + Added = new DateOnly(2021, 2, 20), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "csx", + Tag = "", + }; + record.Description.Add(@"Cambodian Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "czh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "zh", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "czh", + Tag = "", + }; + record.Description.Add(@"Huizhou Chinese"); + record.Prefix.Add("zh"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "czo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "zh", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "czo", + Tag = "", + }; + record.Description.Add(@"Min Zhong Chinese"); + record.Prefix.Add("zh"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "doq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "doq", + Tag = "", + }; + record.Description.Add(@"Dominican Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "dse", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "dse", + Tag = "", + }; + record.Description.Add(@"Dutch Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "dsl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "dsl", + Tag = "", + }; + record.Description.Add(@"Danish Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "dsz", + Added = new DateOnly(2022, 2, 25), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "dsz", + Tag = "", + }; + record.Description.Add(@"Mardin Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "dup", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ms", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "dup", + Tag = "", + }; + record.Description.Add(@"Duano"); + record.Prefix.Add("ms"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "ecs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "ecs", + Tag = "", + }; + record.Description.Add(@"Ecuadorian Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "ehs", + Added = new DateOnly(2021, 2, 20), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "ehs", + Tag = "", + }; + record.Description.Add(@"Miyakubo Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "esl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "esl", + Tag = "", + }; + record.Description.Add(@"Egypt Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "esn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "esn", + Tag = "", + }; + record.Description.Add(@"Salvadoran Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "eso", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "eso", + Tag = "", + }; + record.Description.Add(@"Estonian Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "eth", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "eth", + Tag = "", + }; + record.Description.Add(@"Ethiopian Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "fcs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "fcs", + Tag = "", + }; + record.Description.Add(@"Quebec Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "fse", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "fse", + Tag = "", + }; + record.Description.Add(@"Finnish Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "fsl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "fsl", + Tag = "", + }; + record.Description.Add(@"French Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "fss", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "fss", + Tag = "", + }; + record.Description.Add(@"Finland-Swedish Sign Language"); + record.Description.Add(@"finlandssvenskt teckenspråk"); + record.Description.Add(@"suomenruotsalainen viittomakieli"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "gan", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "zh", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "gan", + Tag = "", + }; + record.Description.Add(@"Gan Chinese"); + record.Prefix.Add("zh"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "gds", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "gds", + Tag = "", + }; + record.Description.Add(@"Ghandruk Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "gom", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "kok", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "gom", + Tag = "", + }; + record.Description.Add(@"Goan Konkani"); + record.Prefix.Add("kok"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "gse", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "gse", + Tag = "", + }; + record.Description.Add(@"Ghanaian Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "gsg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "gsg", + Tag = "", + }; + record.Description.Add(@"German Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "gsm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "gsm", + Tag = "", + }; + record.Description.Add(@"Guatemalan Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "gss", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "gss", + Tag = "", + }; + record.Description.Add(@"Greek Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "gus", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "gus", + Tag = "", + }; + record.Description.Add(@"Guinean Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "hab", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "hab", + Tag = "", + }; + record.Description.Add(@"Hanoi Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "haf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "haf", + Tag = "", + }; + record.Description.Add(@"Haiphong Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "hak", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "zh", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "hak", + Tag = "", + }; + record.Description.Add(@"Hakka Chinese"); + record.Prefix.Add("zh"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "hds", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "hds", + Tag = "", + }; + record.Description.Add(@"Honduras Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "hji", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ms", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "hji", + Tag = "", + }; + record.Description.Add(@"Haji"); + record.Prefix.Add("ms"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "hks", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "hks", + Tag = "", + }; + record.Description.Add(@"Hong Kong Sign Language"); + record.Description.Add(@"Heung Kong Sau Yue"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "hnm", + Added = new DateOnly(2024, 12, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "zh", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "hnm", + Tag = "", + }; + record.Description.Add(@"Hainanese"); + record.Prefix.Add("zh"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "hos", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "hos", + Tag = "", + }; + record.Description.Add(@"Ho Chi Minh City Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "hps", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "hps", + Tag = "", + }; + record.Description.Add(@"Hawai'i Sign Language (HSL)"); + record.Description.Add(@"Hawai'i Pidgin Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "hsh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "hsh", + Tag = "", + }; + record.Description.Add(@"Hungarian Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "hsl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "hsl", + Tag = "", + }; + record.Description.Add(@"Hausa Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "hsn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "zh", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "hsn", + Tag = "", + }; + record.Description.Add(@"Xiang Chinese"); + record.Prefix.Add("zh"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "icl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "icl", + Tag = "", + }; + record.Description.Add(@"Icelandic Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "iks", + Added = new DateOnly(2015, 2, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "iks", + Tag = "", + }; + record.Description.Add(@"Inuit Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "ils", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "ils", + Tag = "", + }; + record.Description.Add(@"International Sign"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "inl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "inl", + Tag = "", + }; + record.Description.Add(@"Indonesian Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "ins", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "ins", + Tag = "", + }; + record.Description.Add(@"Indian Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "ise", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "ise", + Tag = "", + }; + record.Description.Add(@"Italian Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "isg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "isg", + Tag = "", + }; + record.Description.Add(@"Irish Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "isr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "isr", + Tag = "", + }; + record.Description.Add(@"Israeli Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "jak", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ms", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "jak", + Tag = "", + }; + record.Description.Add(@"Jakun"); + record.Prefix.Add("ms"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "jax", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ms", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "jax", + Tag = "", + }; + record.Description.Add(@"Jambi Malay"); + record.Prefix.Add("ms"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "jcs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "jcs", + Tag = "", + }; + record.Description.Add(@"Jamaican Country Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "jhs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "jhs", + Tag = "", + }; + record.Description.Add(@"Jhankot Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "jks", + Added = new DateOnly(2021, 2, 20), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "jks", + Tag = "", + }; + record.Description.Add(@"Amami Koniya Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "jls", + Added = new DateOnly(2010, 3, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "jls", + Tag = "", + }; + record.Description.Add(@"Jamaican Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "jos", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "jos", + Tag = "", + }; + record.Description.Add(@"Jordanian Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "jsl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "jsl", + Tag = "", + }; + record.Description.Add(@"Japanese Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "jus", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "jus", + Tag = "", + }; + record.Description.Add(@"Jumla Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "kgi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "kgi", + Tag = "", + }; + record.Description.Add(@"Selangor Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "knn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "kok", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "knn", + Tag = "", + }; + record.Description.Add(@"Konkani (individual language)"); + record.Prefix.Add("kok"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "kvb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ms", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "kvb", + Tag = "", + }; + record.Description.Add(@"Kubu"); + record.Prefix.Add("ms"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "kvk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "kvk", + Tag = "", + }; + record.Description.Add(@"Korean Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "kvr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ms", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "kvr", + Tag = "", + }; + record.Description.Add(@"Kerinci"); + record.Prefix.Add("ms"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "kxd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ms", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "kxd", + Tag = "", + }; + record.Description.Add(@"Brunei"); + record.Prefix.Add("ms"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "lbs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "lbs", + Tag = "", + }; + record.Description.Add(@"Libyan Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "lce", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ms", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "lce", + Tag = "", + }; + record.Description.Add(@"Loncong"); + record.Description.Add(@"Sekak"); + record.Prefix.Add("ms"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "lcf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ms", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "lcf", + Tag = "", + }; + record.Description.Add(@"Lubu"); + record.Prefix.Add("ms"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "lgs", + Added = new DateOnly(2023, 3, 17), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "lgs", + Tag = "", + }; + record.Description.Add(@"Guinea-Bissau Sign Language"); + record.Description.Add(@"Língua Gestual Guineense"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "liw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ms", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "liw", + Tag = "", + }; + record.Description.Add(@"Col"); + record.Prefix.Add("ms"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "lls", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "lls", + Tag = "", + }; + record.Description.Add(@"Lithuanian Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "lsb", + Added = new DateOnly(2021, 2, 20), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "lsb", + Tag = "", + }; + record.Description.Add(@"Burundian Sign Language"); + record.Description.Add(@"Langue des Signes Burundaise"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "lsc", + Added = new DateOnly(2022, 2, 25), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "lsc", + Tag = "", + }; + record.Description.Add(@"Albarradas Sign Language"); + record.Description.Add(@"Lengua de señas Albarradas"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "lsg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2018, 3, 8), + PreferredValue = "lsg", + Tag = "", + }; + record.Description.Add(@"Lyons Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "lsl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "lsl", + Tag = "", + }; + record.Description.Add(@"Latvian Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "lsn", + Added = new DateOnly(2019, 4, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "lsn", + Tag = "", + }; + record.Description.Add(@"Tibetan Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "lso", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "lso", + Tag = "", + }; + record.Description.Add(@"Laos Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "lsp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "lsp", + Tag = "", + }; + record.Description.Add(@"Panamanian Sign Language"); + record.Description.Add(@"Lengua de Señas Panameñas"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "lst", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "lst", + Tag = "", + }; + record.Description.Add(@"Trinidad and Tobago Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "lsv", + Added = new DateOnly(2019, 4, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "lsv", + Tag = "", + }; + record.Description.Add(@"Sivia Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "lsw", + Added = new DateOnly(2022, 2, 25), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "lsw", + Tag = "", + }; + record.Description.Add(@"Seychelles Sign Language"); + record.Description.Add(@"Lalang Siny Seselwa"); + record.Description.Add(@"Langue des Signes Seychelloise"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "lsy", + Added = new DateOnly(2010, 3, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "lsy", + Tag = "", + }; + record.Description.Add(@"Mauritian Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "ltg", + Added = new DateOnly(2010, 3, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "lv", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "ltg", + Tag = "", + }; + record.Description.Add(@"Latgalian"); + record.Prefix.Add("lv"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "luh", + Added = new DateOnly(2024, 12, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "zh", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "luh", + Tag = "", + }; + record.Description.Add(@"Leizhou Chinese"); + record.Prefix.Add("zh"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "lvs", + Added = new DateOnly(2010, 3, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "lv", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "lvs", + Tag = "", + }; + record.Description.Add(@"Standard Latvian"); + record.Prefix.Add("lv"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "lws", + Added = new DateOnly(2018, 3, 8), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "lws", + Tag = "", + }; + record.Description.Add(@"Malawian Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "lzh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "zh", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "lzh", + Tag = "", + }; + record.Description.Add(@"Literary Chinese"); + record.Prefix.Add("zh"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "max", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ms", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "max", + Tag = "", + }; + record.Description.Add(@"North Moluccan Malay"); + record.Prefix.Add("ms"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "mdl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "mdl", + Tag = "", + }; + record.Description.Add(@"Maltese Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "meo", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ms", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "meo", + Tag = "", + }; + record.Description.Add(@"Kedah Malay"); + record.Prefix.Add("ms"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "mfa", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ms", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "mfa", + Tag = "", + }; + record.Description.Add(@"Pattani Malay"); + record.Prefix.Add("ms"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "mfb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ms", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "mfb", + Tag = "", + }; + record.Description.Add(@"Bangka"); + record.Prefix.Add("ms"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "mfs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "mfs", + Tag = "", + }; + record.Description.Add(@"Mexican Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "min", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ms", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "min", + Tag = "", + }; + record.Description.Add(@"Minangkabau"); + record.Prefix.Add("ms"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "mnp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "zh", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "mnp", + Tag = "", + }; + record.Description.Add(@"Min Bei Chinese"); + record.Prefix.Add("zh"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "mqg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ms", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "mqg", + Tag = "", + }; + record.Description.Add(@"Kota Bangun Kutai Malay"); + record.Prefix.Add("ms"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "mre", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "mre", + Tag = "", + }; + record.Description.Add(@"Martha's Vineyard Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "msd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "msd", + Tag = "", + }; + record.Description.Add(@"Yucatec Maya Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "msi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ms", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "msi", + Tag = "", + }; + record.Description.Add(@"Sabah Malay"); + record.Prefix.Add("ms"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "msr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "msr", + Tag = "", + }; + record.Description.Add(@"Mongolian Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "mui", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ms", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "mui", + Tag = "", + }; + record.Description.Add(@"Musi"); + record.Prefix.Add("ms"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "mzc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "mzc", + Tag = "", + }; + record.Description.Add(@"Madagascar Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "mzg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "mzg", + Tag = "", + }; + record.Description.Add(@"Monastic Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "mzy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "mzy", + Tag = "", + }; + record.Description.Add(@"Mozambican Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "nan", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "zh", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "nan", + Tag = "", + }; + record.Description.Add(@"Min Nan Chinese"); + record.Prefix.Add("zh"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "nbs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "nbs", + Tag = "", + }; + record.Description.Add(@"Namibian Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "ncs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "ncs", + Tag = "", + }; + record.Description.Add(@"Nicaraguan Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "nsi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "nsi", + Tag = "", + }; + record.Description.Add(@"Nigerian Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "nsl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "nsl", + Tag = "", + }; + record.Description.Add(@"Norwegian Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "nsp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "nsp", + Tag = "", + }; + record.Description.Add(@"Nepalese Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "nsr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "nsr", + Tag = "", + }; + record.Description.Add(@"Maritime Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "nzs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "nzs", + Tag = "", + }; + record.Description.Add(@"New Zealand Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "okl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "okl", + Tag = "", + }; + record.Description.Add(@"Old Kentish Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "orn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ms", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "orn", + Tag = "", + }; + record.Description.Add(@"Orang Kanaq"); + record.Prefix.Add("ms"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "ors", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ms", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "ors", + Tag = "", + }; + record.Description.Add(@"Orang Seletar"); + record.Prefix.Add("ms"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "pel", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ms", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "pel", + Tag = "", + }; + record.Description.Add(@"Pekal"); + record.Prefix.Add("ms"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "pga", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ar", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "pga", + Tag = "", + }; + record.Description.Add(@"Sudanese Creole Arabic"); + record.Prefix.Add("ar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "pgz", + Added = new DateOnly(2016, 5, 30), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "pgz", + Tag = "", + }; + record.Description.Add(@"Papua New Guinean Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "pks", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "pks", + Tag = "", + }; + record.Description.Add(@"Pakistan Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "prl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "prl", + Tag = "", + }; + record.Description.Add(@"Peruvian Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "prz", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "prz", + Tag = "", + }; + record.Description.Add(@"Providencia Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "psc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "psc", + Tag = "", + }; + record.Description.Add(@"Iranian Sign Language"); + record.Description.Add(@"Persian Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "psd", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "psd", + Tag = "", + }; + record.Description.Add(@"Plains Indian Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "pse", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ms", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "pse", + Tag = "", + }; + record.Description.Add(@"Central Malay"); + record.Prefix.Add("ms"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "psg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "psg", + Tag = "", + }; + record.Description.Add(@"Penang Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "psl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "psl", + Tag = "", + }; + record.Description.Add(@"Puerto Rican Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "pso", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "pso", + Tag = "", + }; + record.Description.Add(@"Polish Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "psp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "psp", + Tag = "", + }; + record.Description.Add(@"Philippine Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "psr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "psr", + Tag = "", + }; + record.Description.Add(@"Portuguese Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "pys", + Added = new DateOnly(2010, 3, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "pys", + Tag = "", + }; + record.Description.Add(@"Paraguayan Sign Language"); + record.Description.Add(@"Lengua de Señas del Paraguay"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "rib", + Added = new DateOnly(2022, 2, 25), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "rib", + Tag = "", + }; + record.Description.Add(@"Bribri Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "rms", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "rms", + Tag = "", + }; + record.Description.Add(@"Romanian Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "rnb", + Added = new DateOnly(2022, 2, 25), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "rnb", + Tag = "", + }; + record.Description.Add(@"Brunca Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "rsi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2017, 2, 23), + PreferredValue = "rsi", + Tag = "", + }; + record.Description.Add(@"Rennellese Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "rsl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "rsl", + Tag = "", + }; + record.Description.Add(@"Russian Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "rsm", + Added = new DateOnly(2016, 5, 30), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "rsm", + Tag = "", + }; + record.Description.Add(@"Miriwoong Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "rsn", + Added = new DateOnly(2022, 2, 25), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "rsn", + Tag = "", + }; + record.Description.Add(@"Rwandan Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "sdl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "sdl", + Tag = "", + }; + record.Description.Add(@"Saudi Arabian Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "sfb", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "sfb", + Tag = "", + }; + record.Description.Add(@"Langue des signes de Belgique Francophone"); + record.Description.Add(@"French Belgian Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "sfs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "sfs", + Tag = "", + }; + record.Description.Add(@"South African Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "sgg", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "sgg", + Tag = "", + }; + record.Description.Add(@"Swiss-German Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "sgx", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "sgx", + Tag = "", + }; + record.Description.Add(@"Sierra Leone Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "shu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ar", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "shu", + Tag = "", + }; + record.Description.Add(@"Chadian Arabic"); + record.Prefix.Add("ar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "sjc", + Added = new DateOnly(2024, 12, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "zh", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "sjc", + Tag = "", + }; + record.Description.Add(@"Shaojiang Chinese"); + record.Prefix.Add("zh"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "slf", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "slf", + Tag = "", + }; + record.Description.Add(@"Swiss-Italian Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "sls", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "sls", + Tag = "", + }; + record.Description.Add(@"Singapore Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "sqk", + Added = new DateOnly(2012, 8, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "sqk", + Tag = "", + }; + record.Description.Add(@"Albanian Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "sqs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "sqs", + Tag = "", + }; + record.Description.Add(@"Sri Lankan Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "sqx", + Added = new DateOnly(2021, 2, 20), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "sqx", + Tag = "", + }; + record.Description.Add(@"Kufr Qassem Sign Language (KQSL)"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "ssh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ar", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "ssh", + Tag = "", + }; + record.Description.Add(@"Shihhi Arabic"); + record.Prefix.Add("ar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "ssp", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "ssp", + Tag = "", + }; + record.Description.Add(@"Spanish Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "ssr", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "ssr", + Tag = "", + }; + record.Description.Add(@"Swiss-French Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "svk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "svk", + Tag = "", + }; + record.Description.Add(@"Slovakian Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "swc", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "sw", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "swc", + Tag = "", + }; + record.Description.Add(@"Congo Swahili"); + record.Prefix.Add("sw"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "swh", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "sw", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "swh", + Tag = "", + }; + record.Description.Add(@"Swahili (individual language)"); + record.Description.Add(@"Kiswahili"); + record.Prefix.Add("sw"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "swl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "swl", + Tag = "", + }; + record.Description.Add(@"Swedish Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "syy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "syy", + Tag = "", + }; + record.Description.Add(@"Al-Sayyid Bedouin Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "szs", + Added = new DateOnly(2017, 2, 23), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "szs", + Tag = "", + }; + record.Description.Add(@"Solomon Islands Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "tmw", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ms", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "tmw", + Tag = "", + }; + record.Description.Add(@"Temuan"); + record.Prefix.Add("ms"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "tse", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "tse", + Tag = "", + }; + record.Description.Add(@"Tunisian Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "tsm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "tsm", + Tag = "", + }; + record.Description.Add(@"Turkish Sign Language"); + record.Description.Add(@"Türk İşaret Dili"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "tsq", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "tsq", + Tag = "", + }; + record.Description.Add(@"Thai Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "tss", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "tss", + Tag = "", + }; + record.Description.Add(@"Taiwan Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "tsy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "tsy", + Tag = "", + }; + record.Description.Add(@"Tebul Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "tza", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "tza", + Tag = "", + }; + record.Description.Add(@"Tanzanian Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "ugn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "ugn", + Tag = "", + }; + record.Description.Add(@"Ugandan Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "ugy", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "ugy", + Tag = "", + }; + record.Description.Add(@"Uruguayan Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "ukl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "ukl", + Tag = "", + }; + record.Description.Add(@"Ukrainian Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "uks", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "uks", + Tag = "", + }; + record.Description.Add(@"Urubú-Kaapor Sign Language"); + record.Description.Add(@"Kaapor Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "urk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ms", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "urk", + Tag = "", + }; + record.Description.Add(@"Urak Lawoi'"); + record.Prefix.Add("ms"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "uzn", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "uz", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "uzn", + Tag = "", + }; + record.Description.Add(@"Northern Uzbek"); + record.Prefix.Add("uz"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "uzs", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "uz", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "uzs", + Tag = "", + }; + record.Description.Add(@"Southern Uzbek"); + record.Prefix.Add("uz"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "vgt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "vgt", + Tag = "", + }; + record.Description.Add(@"Vlaamse Gebarentaal"); + record.Description.Add(@"Flemish Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "vkk", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ms", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "vkk", + Tag = "", + }; + record.Description.Add(@"Kaur"); + record.Prefix.Add("ms"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "vkt", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ms", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "vkt", + Tag = "", + }; + record.Description.Add(@"Tenggarong Kutai Malay"); + record.Prefix.Add("ms"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "vsi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "vsi", + Tag = "", + }; + record.Description.Add(@"Moldova Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "vsl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "vsl", + Tag = "", + }; + record.Description.Add(@"Venezuelan Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "vsv", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "vsv", + Tag = "", + }; + record.Description.Add(@"Valencian Sign Language"); + record.Description.Add(@"Llengua de signes valenciana"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "wbs", + Added = new DateOnly(2017, 2, 23), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "wbs", + Tag = "", + }; + record.Description.Add(@"West Bengal Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "wuu", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "zh", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "wuu", + Tag = "", + }; + record.Description.Add(@"Wu Chinese"); + record.Prefix.Add("zh"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "xki", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "xki", + Tag = "", + }; + record.Description.Add(@"Kenyan Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "xml", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "xml", + Tag = "", + }; + record.Description.Add(@"Malaysian Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "xmm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ms", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "xmm", + Tag = "", + }; + record.Description.Add(@"Manado Malay"); + record.Prefix.Add("ms"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "xms", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "xms", + Tag = "", + }; + record.Description.Add(@"Moroccan Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "yds", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2015, 2, 12), + PreferredValue = "yds", + Tag = "", + }; + record.Description.Add(@"Yiddish Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "ygs", + Added = new DateOnly(2014, 2, 28), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "ygs", + Tag = "", + }; + record.Description.Add(@"Yolŋu Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "yhs", + Added = new DateOnly(2015, 4, 17), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "yhs", + Tag = "", + }; + record.Description.Add(@"Yan-nhaŋu Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "ysl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "ysl", + Tag = "", + }; + record.Description.Add(@"Yugoslavian Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "ysm", + Added = new DateOnly(2021, 2, 20), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "ysm", + Tag = "", + }; + record.Description.Add(@"Myanmar Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "yue", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "zh", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "yue", + Tag = "", + }; + record.Description.Add(@"Yue Chinese"); + record.Description.Add(@"Cantonese"); + record.Prefix.Add("zh"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "zib", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "zib", + Tag = "", + }; + record.Description.Add(@"Zimbabwe Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "zlm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ms", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "zlm", + Tag = "", + }; + record.Description.Add(@"Malay (individual language)"); + record.Prefix.Add("ms"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "zmi", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ms", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "zmi", + Tag = "", + }; + record.Description.Add(@"Negeri Sembilan Malay"); + record.Prefix.Add("ms"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "zsl", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "zsl", + Tag = "", + }; + record.Description.Add(@"Zambian Sign Language"); + record.Prefix.Add("sgn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.ExtLanguage, + SubTag = "zsm", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "ms", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "zsm", + Tag = "", + }; + record.Description.Add(@"Standard Malay"); + record.Prefix.Add("ms"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Adlm", + Added = new DateOnly(2014, 12, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Adlam"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Afak", + Added = new DateOnly(2011, 1, 7), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Afaka"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Aghb", + Added = new DateOnly(2012, 11, 1), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Caucasian Albanian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Ahom", + Added = new DateOnly(2013, 12, 2), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ahom"); + record.Description.Add(@"Tai Ahom"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Arab", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Arabic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Aran", + Added = new DateOnly(2014, 12, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Arabic (Nastaliq variant)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Armi", + Added = new DateOnly(2007, 12, 5), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Imperial Aramaic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Armn", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Armenian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Avst", + Added = new DateOnly(2007, 7, 28), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Avestan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Bali", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Balinese"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Bamu", + Added = new DateOnly(2009, 7, 30), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bamum"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Bass", + Added = new DateOnly(2010, 4, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bassa Vah"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Batk", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Batak"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Beng", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bengali"); + record.Description.Add(@"Bangla"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Berf", + Added = new DateOnly(2025, 2, 6), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Beria Erfe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Bhks", + Added = new DateOnly(2015, 7, 24), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bhaiksuki"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Blis", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Blissymbols"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Bopo", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bopomofo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Brah", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Brahmi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Brai", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Braille"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Bugi", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Buginese"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Buhd", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Buhid"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Cakm", + Added = new DateOnly(2007, 12, 5), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chakma"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Cans", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Unified Canadian Aboriginal Syllabics"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Cari", + Added = new DateOnly(2006, 7, 21), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Carian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Cham", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cham"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Cher", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cherokee"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Chis", + Added = new DateOnly(2023, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chisoi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Chrs", + Added = new DateOnly(2019, 9, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chorasmian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Cirt", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cirth"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Copt", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Coptic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Cpmn", + Added = new DateOnly(2017, 8, 13), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cypro-Minoan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Cprt", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cypriot syllabary"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Cyrl", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cyrillic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Cyrs", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cyrillic (Old Church Slavonic variant)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Deva", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Devanagari"); + record.Description.Add(@"Nagari"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Diak", + Added = new DateOnly(2019, 9, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dives Akuru"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Dogr", + Added = new DateOnly(2017, 1, 13), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dogra"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Dsrt", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Deseret"); + record.Description.Add(@"Mormon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Dupl", + Added = new DateOnly(2010, 8, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Duployan shorthand"); + record.Description.Add(@"Duployan stenography"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Egyd", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Egyptian demotic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Egyh", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Egyptian hieratic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Egyp", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Egyptian hieroglyphs"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Elba", + Added = new DateOnly(2010, 8, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Elbasan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Elym", + Added = new DateOnly(2018, 10, 28), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Elymaic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Ethi", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ethiopic"); + record.Description.Add(@"Geʻez"); + record.Description.Add(@"Ge'ez"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Gara", + Added = new DateOnly(2023, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Garay"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Geok", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Khutsuri (Asomtavruli and Nuskhuri)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Geor", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Georgian (Mkhedruli and Mtavruli)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Glag", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Glagolitic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Gong", + Added = new DateOnly(2017, 1, 13), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gunjala Gondi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Gonm", + Added = new DateOnly(2017, 1, 13), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Masaram Gondi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Goth", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gothic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Gran", + Added = new DateOnly(2009, 12, 9), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Grantha"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Grek", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Greek"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Gujr", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gujarati"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Gukh", + Added = new DateOnly(2023, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gurung Khema"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Guru", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gurmukhi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Hanb", + Added = new DateOnly(2016, 2, 8), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Han with Bopomofo (alias for Han + Bopomofo)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Hang", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hangul"); + record.Description.Add(@"Hangŭl"); + record.Description.Add(@"Hangeul"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Hani", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Han"); + record.Description.Add(@"Hanzi"); + record.Description.Add(@"Kanji"); + record.Description.Add(@"Hanja"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Hano", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hanunoo"); + record.Description.Add(@"Hanunóo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Hans", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Han (Simplified variant)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Hant", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Han (Traditional variant)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Hatr", + Added = new DateOnly(2013, 12, 2), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hatran"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Hebr", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hebrew"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Hira", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hiragana"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Hluw", + Added = new DateOnly(2011, 12, 28), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Anatolian Hieroglyphs"); + record.Description.Add(@"Luwian Hieroglyphs"); + record.Description.Add(@"Hittite Hieroglyphs"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Hmng", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pahawh Hmong"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Hmnp", + Added = new DateOnly(2017, 8, 13), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nyiakeng Puachue Hmong"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Hntl", + Added = new DateOnly(2025, 5, 14), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Han (Traditional variant) with Latin (alias for Hant + Latn)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Hrkt", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Japanese syllabaries (alias for Hiragana + Katakana)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Hung", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Old Hungarian"); + record.Description.Add(@"Hungarian Runic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Inds", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Indus"); + record.Description.Add(@"Harappan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Ital", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Old Italic (Etruscan, Oscan, etc.)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Jamo", + Added = new DateOnly(2016, 2, 8), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jamo (alias for Jamo subset of Hangul)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Java", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Javanese"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Jpan", + Added = new DateOnly(2006, 7, 21), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Japanese (alias for Han + Hiragana + Katakana)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Jurc", + Added = new DateOnly(2011, 1, 7), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jurchen"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Kali", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kayah Li"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Kana", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Katakana"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Kawi", + Added = new DateOnly(2021, 12, 24), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kawi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Khar", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kharoshthi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Khmr", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Khmer"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Khoj", + Added = new DateOnly(2011, 8, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Khojki"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Kitl", + Added = new DateOnly(2014, 12, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Khitan large script"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Kits", + Added = new DateOnly(2014, 12, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Khitan small script"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Knda", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kannada"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Kore", + Added = new DateOnly(2007, 7, 5), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Korean (alias for Hangul + Han)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Kpel", + Added = new DateOnly(2010, 4, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kpelle"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Krai", + Added = new DateOnly(2023, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kirat Rai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Kthi", + Added = new DateOnly(2007, 12, 5), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kaithi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Lana", + Added = new DateOnly(2006, 7, 21), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tai Tham"); + record.Description.Add(@"Lanna"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Laoo", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lao"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Latf", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Latin (Fraktur variant)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Latg", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Latin (Gaelic variant)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Latn", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Latin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Leke", + Added = new DateOnly(2015, 7, 24), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Leke"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Lepc", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lepcha"); + record.Description.Add(@"Róng"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Limb", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Limbu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Lina", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Linear A"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Linb", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Linear B"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Lisu", + Added = new DateOnly(2009, 3, 13), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lisu"); + record.Description.Add(@"Fraser"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Loma", + Added = new DateOnly(2010, 4, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Loma"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Lyci", + Added = new DateOnly(2006, 7, 21), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lycian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Lydi", + Added = new DateOnly(2006, 7, 21), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lydian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Mahj", + Added = new DateOnly(2012, 11, 1), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mahajani"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Maka", + Added = new DateOnly(2017, 1, 13), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Makasar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Mand", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mandaic"); + record.Description.Add(@"Mandaean"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Mani", + Added = new DateOnly(2007, 7, 28), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Manichaean"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Marc", + Added = new DateOnly(2014, 12, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Marchen"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Maya", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mayan hieroglyphs"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Medf", + Added = new DateOnly(2017, 1, 13), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Medefaidrin"); + record.Description.Add(@"Oberi Okaime"); + record.Description.Add(@"Oberi Ɔkaimɛ"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Mend", + Added = new DateOnly(2010, 4, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mende Kikakui"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Merc", + Added = new DateOnly(2009, 12, 9), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Meroitic Cursive"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Mero", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Meroitic Hieroglyphs"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Mlym", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Malayalam"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Modi", + Added = new DateOnly(2013, 12, 2), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Modi"); + record.Description.Add(@"Moḍī"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Mong", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mongolian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Moon", + Added = new DateOnly(2007, 1, 26), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Moon"); + record.Description.Add(@"Moon code"); + record.Description.Add(@"Moon script"); + record.Description.Add(@"Moon type"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Mroo", + Added = new DateOnly(2011, 1, 7), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mro"); + record.Description.Add(@"Mru"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Mtei", + Added = new DateOnly(2007, 1, 26), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Meitei Mayek"); + record.Description.Add(@"Meithei"); + record.Description.Add(@"Meetei"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Mult", + Added = new DateOnly(2013, 12, 2), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Multani"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Mymr", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Myanmar"); + record.Description.Add(@"Burmese"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Nagm", + Added = new DateOnly(2021, 12, 24), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nag Mundari"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Nand", + Added = new DateOnly(2018, 10, 28), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nandinagari"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Narb", + Added = new DateOnly(2010, 4, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Old North Arabian"); + record.Description.Add(@"Ancient North Arabian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Nbat", + Added = new DateOnly(2010, 4, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nabataean"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Newa", + Added = new DateOnly(2016, 1, 4), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Newa"); + record.Description.Add(@"Newar"); + record.Description.Add(@"Newari"); + record.Description.Add(@"Nepāla lipi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Nkdb", + Added = new DateOnly(2017, 8, 13), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Naxi Dongba"); + record.Description.Add(@"na²¹ɕi³³ to³³ba²¹"); + record.Description.Add(@"Nakhi Tomba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Nkgb", + Added = new DateOnly(2009, 3, 13), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Naxi Geba"); + record.Description.Add(@"na²¹ɕi³³ gʌ²¹ba²¹"); + record.Description.Add(@"'Na-'Khi ²Ggŏ-¹baw"); + record.Description.Add(@"Nakhi Geba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Nkoo", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"N’Ko"); + record.Description.Add(@"N'Ko"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Nshu", + Added = new DateOnly(2011, 1, 7), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nüshu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Ogam", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ogham"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Olck", + Added = new DateOnly(2006, 7, 21), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ol Chiki"); + record.Description.Add(@"Ol Cemet'"); + record.Description.Add(@"Ol"); + record.Description.Add(@"Santali"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Onao", + Added = new DateOnly(2023, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ol Onal"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Orkh", + Added = new DateOnly(2009, 7, 30), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Old Turkic"); + record.Description.Add(@"Orkhon Runic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Orya", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Oriya"); + record.Description.Add(@"Odia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Osge", + Added = new DateOnly(2014, 12, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Osage"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Osma", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Osmanya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Ougr", + Added = new DateOnly(2021, 2, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Old Uyghur"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Palm", + Added = new DateOnly(2010, 4, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Palmyrene"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Pauc", + Added = new DateOnly(2013, 12, 2), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pau Cin Hau"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Pcun", + Added = new DateOnly(2021, 2, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Proto-Cuneiform"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Pelm", + Added = new DateOnly(2021, 2, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Proto-Elamite"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Perm", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Old Permic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Phag", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Phags-pa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Phli", + Added = new DateOnly(2007, 12, 5), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Inscriptional Pahlavi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Phlp", + Added = new DateOnly(2007, 12, 5), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Psalter Pahlavi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Phlv", + Added = new DateOnly(2007, 7, 28), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Book Pahlavi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Phnx", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Phoenician"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Piqd", + Added = new DateOnly(2016, 1, 4), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Klingon (KLI pIqaD)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Plrd", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Miao"); + record.Description.Add(@"Pollard"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Prti", + Added = new DateOnly(2007, 12, 5), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Inscriptional Parthian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Psin", + Added = new DateOnly(2021, 2, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Proto-Sinaitic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Qaaa..Qabx", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Private use"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Ranj", + Added = new DateOnly(2021, 2, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ranjana"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Rjng", + Added = new DateOnly(2006, 10, 17), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Rejang"); + record.Description.Add(@"Redjang"); + record.Description.Add(@"Kaganga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Rohg", + Added = new DateOnly(2017, 12, 13), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hanifi Rohingya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Roro", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Rongorongo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Runr", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Runic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Samr", + Added = new DateOnly(2007, 7, 28), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Samaritan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Sara", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sarati"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Sarb", + Added = new DateOnly(2009, 7, 30), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Old South Arabian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Saur", + Added = new DateOnly(2006, 7, 21), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Saurashtra"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Seal", + Added = new DateOnly(2025, 5, 14), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Seal"); + record.Description.Add(@"Small Seal"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Sgnw", + Added = new DateOnly(2006, 10, 17), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"SignWriting"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Shaw", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Shavian"); + record.Description.Add(@"Shaw"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Shrd", + Added = new DateOnly(2011, 1, 7), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sharada"); + record.Description.Add(@"Śāradā"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Shui", + Added = new DateOnly(2017, 8, 13), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Shuishu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Sidd", + Added = new DateOnly(2013, 12, 2), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Siddham"); + record.Description.Add(@"Siddhaṃ"); + record.Description.Add(@"Siddhamātṛkā"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Sidt", + Added = new DateOnly(2023, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sidetic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Sind", + Added = new DateOnly(2010, 8, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Khudawadi"); + record.Description.Add(@"Sindhi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Sinh", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sinhala"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Sogd", + Added = new DateOnly(2017, 12, 13), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sogdian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Sogo", + Added = new DateOnly(2017, 12, 13), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Old Sogdian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Sora", + Added = new DateOnly(2011, 1, 7), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sora Sompeng"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Soyo", + Added = new DateOnly(2017, 1, 13), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Soyombo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Sund", + Added = new DateOnly(2006, 7, 21), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sundanese"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Sunu", + Added = new DateOnly(2021, 12, 24), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sunuwar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Sylo", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Syloti Nagri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Syrc", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Syriac"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Syre", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Syriac (Estrangelo variant)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Syrj", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Syriac (Western variant)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Syrn", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Syriac (Eastern variant)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Tagb", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tagbanwa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Takr", + Added = new DateOnly(2011, 1, 7), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Takri"); + record.Description.Add(@"Ṭākrī"); + record.Description.Add(@"Ṭāṅkrī"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Tale", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tai Le"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Talu", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"New Tai Lue"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Taml", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tamil"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Tang", + Added = new DateOnly(2011, 1, 7), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tangut"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Tavt", + Added = new DateOnly(2007, 12, 5), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tai Viet"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Tayo", + Added = new DateOnly(2023, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tai Yo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Telu", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Telugu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Teng", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tengwar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Tfng", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tifinagh"); + record.Description.Add(@"Berber"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Tglg", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tagalog"); + record.Description.Add(@"Baybayin"); + record.Description.Add(@"Alibata"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Thaa", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Thaana"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Thai", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Thai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Tibt", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tibetan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Tirh", + Added = new DateOnly(2011, 8, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tirhuta"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Tnsa", + Added = new DateOnly(2021, 3, 5), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tangsa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Todr", + Added = new DateOnly(2023, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Todhri"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Tols", + Added = new DateOnly(2023, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tolong Siki"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Toto", + Added = new DateOnly(2020, 5, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Toto"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Tutg", + Added = new DateOnly(2023, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tulu-Tigalari"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Ugar", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ugaritic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Vaii", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Vai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Visp", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Visible Speech"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Vith", + Added = new DateOnly(2021, 3, 5), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Vithkuqi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Wara", + Added = new DateOnly(2009, 12, 9), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Warang Citi"); + record.Description.Add(@"Varang Kshiti"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Wcho", + Added = new DateOnly(2017, 8, 13), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wancho"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Wole", + Added = new DateOnly(2011, 1, 7), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Woleai"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Xpeo", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Old Persian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Xsux", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sumero-Akkadian cuneiform"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Yezi", + Added = new DateOnly(2019, 9, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yezidi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Yiii", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Zanb", + Added = new DateOnly(2017, 1, 13), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Zanabazar Square"); + record.Description.Add(@"Zanabazarin Dörböljin Useg"); + record.Description.Add(@"Xewtee Dörböljin Bicig"); + record.Description.Add(@"Horizontal Square Script"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Zinh", + Added = new DateOnly(2009, 4, 3), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Code for inherited script"); + record.Comments.Add(@"Not intended for use as a language subtag"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Zmth", + Added = new DateOnly(2007, 12, 5), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mathematical notation"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Zsye", + Added = new DateOnly(2016, 1, 4), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Symbols (Emoji variant)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Zsym", + Added = new DateOnly(2007, 12, 5), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Symbols"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Zxxx", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Code for unwritten documents"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Zyyy", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Code for undetermined script"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Script, + SubTag = "Zzzz", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Code for uncoded script"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "AA", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Private use"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "AC", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ascension Island"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "AD", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Andorra"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "AE", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"United Arab Emirates"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "AF", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Afghanistan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "AG", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Antigua and Barbuda"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "AI", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Anguilla"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "AL", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Albania"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "AM", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Armenia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "AN", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2011, 1, 7), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Netherlands Antilles"); + record.Comments.Add(@"see BQ, CW, and SX"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "AO", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Angola"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "AQ", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Antarctica"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "AR", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Argentina"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "AS", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"American Samoa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "AT", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Austria"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "AU", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Australia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "AW", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Aruba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "AX", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Åland Islands"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "AZ", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Azerbaijan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "BA", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bosnia and Herzegovina"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "BB", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Barbados"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "BD", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bangladesh"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "BE", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Belgium"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "BF", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Burkina Faso"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "BG", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bulgaria"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "BH", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bahrain"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "BI", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Burundi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "BJ", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Benin"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "BL", + Added = new DateOnly(2007, 11, 2), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Saint Barthélemy"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "BM", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bermuda"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "BN", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Brunei Darussalam"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "BO", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bolivia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "BQ", + Added = new DateOnly(2011, 1, 7), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bonaire, Sint Eustatius and Saba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "BR", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Brazil"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "BS", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bahamas"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "BT", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bhutan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "BU", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1989, 12, 5), + PreferredValue = "MM", + Tag = "", + }; + record.Description.Add(@"Burma"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "BV", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bouvet Island"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "BW", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Botswana"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "BY", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Belarus"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "BZ", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Belize"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "CA", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Canada"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "CC", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cocos (Keeling) Islands"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "CD", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"The Democratic Republic of the Congo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "CF", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Central African Republic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "CG", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Congo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "CH", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Switzerland"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "CI", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Côte d'Ivoire"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "CK", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cook Islands"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "CL", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chile"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "CM", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cameroon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "CN", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"China"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "CO", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Colombia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "CP", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Clipperton Island"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "CQ", + Added = new DateOnly(2023, 2, 7), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sark"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "CR", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Costa Rica"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "CS", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2006, 10, 5), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Serbia and Montenegro"); + record.Comments.Add(@"see RS for Serbia or ME for Montenegro"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "CU", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cuba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "CV", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cabo Verde"); + record.Description.Add(@"Cape Verde"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "CW", + Added = new DateOnly(2011, 1, 7), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Curaçao"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "CX", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Christmas Island"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "CY", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cyprus"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "CZ", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Czechia"); + record.Description.Add(@"Czech Republic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "DD", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1990, 10, 30), + PreferredValue = "DE", + Tag = "", + }; + record.Description.Add(@"German Democratic Republic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "DE", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Germany"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "DG", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Diego Garcia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "DJ", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Djibouti"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "DK", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Denmark"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "DM", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dominica"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "DO", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Dominican Republic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "DZ", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Algeria"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "EA", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ceuta, Melilla"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "EC", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ecuador"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "EE", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Estonia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "EG", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Egypt"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "EH", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Western Sahara"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "ER", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Eritrea"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "ES", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Spain"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "ET", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ethiopia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "EU", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"European Union"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "EZ", + Added = new DateOnly(2016, 7, 14), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Eurozone"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "FI", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Finland"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "FJ", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Fiji"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "FK", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Falkland Islands (Malvinas)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "FM", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Federated States of Micronesia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "FO", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Faroe Islands"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "FR", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"France"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "FX", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1997, 7, 14), + PreferredValue = "FR", + Tag = "", + }; + record.Description.Add(@"Metropolitan France"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "GA", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gabon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "GB", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"United Kingdom"); + record.Comments.Add( + @"as of 2006-03-29 GB no longer includes the Channel Islands and Isle of Man; see GG, JE, IM" + ); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "GD", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Grenada"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "GE", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Georgia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "GF", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"French Guiana"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "GG", + Added = new DateOnly(2006, 3, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Guernsey"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "GH", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ghana"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "GI", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gibraltar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "GL", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Greenland"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "GM", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gambia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "GN", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Guinea"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "GP", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Guadeloupe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "GQ", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Equatorial Guinea"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "GR", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Greece"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "GS", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"South Georgia and the South Sandwich Islands"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "GT", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Guatemala"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "GU", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Guam"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "GW", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Guinea-Bissau"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "GY", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Guyana"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "HK", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hong Kong"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "HM", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Heard Island and McDonald Islands"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "HN", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Honduras"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "HR", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Croatia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "HT", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Haiti"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "HU", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hungary"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "IC", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Canary Islands"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "ID", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Indonesia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "IE", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ireland"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "IL", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Israel"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "IM", + Added = new DateOnly(2006, 3, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Isle of Man"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "IN", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"India"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "IO", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"British Indian Ocean Territory"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "IQ", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Iraq"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "IR", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Islamic Republic of Iran"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "IS", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Iceland"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "IT", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Italy"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "JE", + Added = new DateOnly(2006, 3, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jersey"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "JM", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jamaica"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "JO", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jordan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "JP", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Japan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "KE", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kenya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "KG", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kyrgyzstan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "KH", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cambodia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "KI", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kiribati"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "KM", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Comoros"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "KN", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Saint Kitts and Nevis"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "KP", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Democratic People's Republic of Korea"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "KR", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Republic of Korea"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "KW", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kuwait"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "KY", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cayman Islands"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "KZ", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kazakhstan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "LA", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lao People's Democratic Republic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "LB", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lebanon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "LC", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Saint Lucia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "LI", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Liechtenstein"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "LK", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sri Lanka"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "LR", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Liberia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "LS", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lesotho"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "LT", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Lithuania"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "LU", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Luxembourg"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "LV", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Latvia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "LY", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Libya"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "MA", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Morocco"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "MC", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Monaco"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "MD", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Moldova"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "ME", + Added = new DateOnly(2006, 10, 5), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Montenegro"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "MF", + Added = new DateOnly(2007, 11, 2), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Saint Martin (French part)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "MG", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Madagascar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "MH", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Marshall Islands"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "MK", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"North Macedonia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "ML", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mali"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "MM", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Myanmar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "MN", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mongolia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "MO", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Macao"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "MP", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Northern Mariana Islands"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "MQ", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Martinique"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "MR", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mauritania"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "MS", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Montserrat"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "MT", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Malta"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "MU", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mauritius"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "MV", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Maldives"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "MW", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Malawi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "MX", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mexico"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "MY", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Malaysia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "MZ", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mozambique"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "NA", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Namibia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "NC", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"New Caledonia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "NE", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Niger"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "NF", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Norfolk Island"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "NG", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nigeria"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "NI", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nicaragua"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "NL", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Netherlands"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "NO", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Norway"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "NP", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nepal"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "NR", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Nauru"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "NT", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1993, 7, 12), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Neutral Zone"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "NU", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Niue"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "NZ", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"New Zealand"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "OM", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Oman"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "PA", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Panama"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "PE", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Peru"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "PF", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"French Polynesia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "PG", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Papua New Guinea"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "PH", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Philippines"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "PK", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pakistan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "PL", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Poland"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "PM", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Saint Pierre and Miquelon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "PN", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pitcairn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "PR", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Puerto Rico"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "PS", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"State of Palestine"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "PT", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Portugal"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "PW", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Palau"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "PY", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Paraguay"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "QA", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Qatar"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "QM..QZ", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Private use"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "RE", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Réunion"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "RO", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Romania"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "RS", + Added = new DateOnly(2006, 10, 5), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Serbia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "RU", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Russian Federation"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "RW", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Rwanda"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "SA", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Saudi Arabia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "SB", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Solomon Islands"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "SC", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Seychelles"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "SD", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sudan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "SE", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sweden"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "SG", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Singapore"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "SH", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Saint Helena, Ascension and Tristan da Cunha"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "SI", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Slovenia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "SJ", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Svalbard and Jan Mayen"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "SK", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Slovakia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "SL", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sierra Leone"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "SM", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"San Marino"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "SN", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Senegal"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "SO", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Somalia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "SR", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Suriname"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "SS", + Added = new DateOnly(2011, 8, 25), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"South Sudan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "ST", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sao Tome and Principe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "SU", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1992, 8, 30), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Union of Soviet Socialist Republics"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "SV", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"El Salvador"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "SX", + Added = new DateOnly(2011, 1, 7), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sint Maarten (Dutch part)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "SY", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Syrian Arab Republic"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "SZ", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Eswatini"); + record.Description.Add(@"eSwatini"); + record.Description.Add(@"Swaziland"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "TA", + Added = new DateOnly(2009, 7, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tristan da Cunha"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "TC", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Turks and Caicos Islands"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "TD", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Chad"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "TF", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"French Southern Territories"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "TG", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Togo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "TH", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Thailand"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "TJ", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tajikistan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "TK", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tokelau"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "TL", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Timor-Leste"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "TM", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Turkmenistan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "TN", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tunisia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "TO", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tonga"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "TP", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2002, 5, 20), + PreferredValue = "TL", + Tag = "", + }; + record.Description.Add(@"East Timor"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "TR", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Türkiye"); + record.Description.Add(@"Turkey"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "TT", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Trinidad and Tobago"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "TV", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tuvalu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "TW", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Taiwan, Province of China"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "TZ", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"United Republic of Tanzania"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "UA", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ukraine"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "UG", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Uganda"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "UM", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"United States Minor Outlying Islands"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "UN", + Added = new DateOnly(2016, 7, 14), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"United Nations"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "US", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"United States"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "UY", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Uruguay"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "UZ", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Uzbekistan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "VA", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Holy See (Vatican City State)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "VC", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Saint Vincent and the Grenadines"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "VE", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Venezuela"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "VG", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"British Virgin Islands"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "VI", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"U.S. Virgin Islands"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "VN", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Viet Nam"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "VU", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Vanuatu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "WF", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wallis and Futuna"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "WS", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Samoa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "XA..XZ", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Private use"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "YD", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1990, 8, 14), + PreferredValue = "YE", + Tag = "", + }; + record.Description.Add(@"Democratic Yemen"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "YE", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yemen"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "YT", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mayotte"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "YU", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2003, 7, 23), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Yugoslavia"); + record.Comments.Add(@"see BA, HR, ME, MK, RS, or SI"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "ZA", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"South Africa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "ZM", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Zambia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "ZR", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1997, 7, 14), + PreferredValue = "CD", + Tag = "", + }; + record.Description.Add(@"Zaire"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "ZW", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Zimbabwe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "ZZ", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Private use"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "001", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"World"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "002", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Africa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "003", + Added = new DateOnly(2010, 8, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"North America"); + record.Comments.Add( + @"Includes Northern America (021), Caribbean (029), and Central America (013); see also 021" + ); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "005", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"South America"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "009", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Oceania"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "011", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Western Africa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "013", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Central America"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "014", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Eastern Africa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "015", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Northern Africa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "017", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Middle Africa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "018", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southern Africa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "019", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Americas"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "021", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Northern America"); + record.Comments.Add( + @"Does not include Caribbean (029) or Central America (013); see also 003" + ); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "029", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Caribbean"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "030", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Eastern Asia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "034", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southern Asia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "035", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"South-Eastern Asia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "039", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Southern Europe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "053", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Australia and New Zealand"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "054", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Melanesia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "057", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Micronesia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "061", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Polynesia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "142", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Asia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "143", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Central Asia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "145", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Western Asia"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "150", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Europe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "151", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Eastern Europe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "154", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Northern Europe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "155", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Western Europe"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "202", + Added = new DateOnly(2017, 4, 18), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sub-Saharan Africa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Region, + SubTag = "419", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Latin America and the Caribbean"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "1606nict", + Added = new DateOnly(2007, 3, 20), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Late Middle French (to 1606)"); + record.Comments.Add( + @"16th century French as in Jean Nicot, ""Thresor de la langue francoyse"", 1606, but also including some French similar to that of Rabelais" + ); + record.Prefix.Add("frm"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "1694acad", + Added = new DateOnly(2007, 3, 20), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Early Modern French"); + record.Comments.Add( + @"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" + ); + record.Prefix.Add("fr"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "1901", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Traditional German orthography"); + record.Prefix.Add("de"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "1959acad", + Added = new DateOnly(2008, 9, 30), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add( + @"""Academic"" (""governmental"") variant of Belarusian as codified in 1959" + ); + record.Prefix.Add("be"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "1994", + Added = new DateOnly(2007, 7, 28), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Standardized Resian orthography"); + record.Comments.Add(@"For standardized Resian an orthography was published in 1994."); + record.Prefix.Add("sl-rozaj"); + record.Prefix.Add("sl-rozaj-biske"); + record.Prefix.Add("sl-rozaj-njiva"); + record.Prefix.Add("sl-rozaj-osojs"); + record.Prefix.Add("sl-rozaj-solba"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "1996", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"German orthography of 1996"); + record.Prefix.Add("de"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "abl1943", + Added = new DateOnly(2015, 5, 6), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add( + @"Orthographic formulation of 1943 - Official in Brazil (Formulário Ortográfico de 1943 - Oficial no Brasil)" + ); + record.Comments.Add( + @"Denotes conventions established by the Academia Brasileira de Letras in 1943 and generally used in Brazil until 2009" + ); + record.Prefix.Add("pt-BR"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "akuapem", + Added = new DateOnly(2017, 6, 5), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Akuapem Twi"); + record.Prefix.Add("tw"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "alalc97", + Added = new DateOnly(2009, 12, 9), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"ALA-LC Romanization, 1997 edition"); + record.Comments.Add( + @"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." + ); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "aluku", + Added = new DateOnly(2009, 9, 5), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Aluku dialect"); + record.Description.Add(@"Boni dialect"); + record.Comments.Add( + @"Aluku dialect of the ""Busi Nenge Tongo"" English-based Creole continuum in Eastern Suriname and Western French Guiana" + ); + record.Prefix.Add("djk"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "anpezo", + Added = new DateOnly(2024, 3, 4), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Anpezo standard of Ladin"); + record.Comments.Add(@"Represents the standard written form of Ladin in Anpezo"); + record.Prefix.Add("lld"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "ao1990", + Added = new DateOnly(2015, 5, 6), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add( + @"Portuguese Language Orthographic Agreement of 1990 (Acordo Ortográfico da Língua Portuguesa de 1990)" + ); + record.Comments.Add( + @"Portuguese orthography conventions established in 1990 but not brought into effect until 2009" + ); + record.Prefix.Add("pt"); + record.Prefix.Add("gl"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "aranes", + Added = new DateOnly(2018, 4, 22), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Aranese"); + record.Comments.Add(@"Occitan variant spoken in the Val d'Aran"); + record.Prefix.Add("oc"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "arevela", + Added = new DateOnly(2006, 9, 18), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2018, 3, 24), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Eastern Armenian"); + record.Comments.Add(@"Preferred tag is hy"); + record.Prefix.Add("hy"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "arevmda", + Added = new DateOnly(2006, 9, 18), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2018, 3, 24), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Western Armenian"); + record.Comments.Add(@"Preferred tag is hyw"); + record.Prefix.Add("hy"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "arkaika", + Added = new DateOnly(2020, 12, 17), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Arcaicam Esperantom"); + record.Description.Add(@"Arkaika Esperanto"); + record.Comments.Add(@"Archaic Esperanto variant devised by Manuel Halvelik"); + record.Prefix.Add("eo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "asante", + Added = new DateOnly(2017, 6, 5), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Asante Twi"); + record.Description.Add(@"Ashanti Twi"); + record.Prefix.Add("tw"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "auvern", + Added = new DateOnly(2018, 4, 22), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Auvergnat"); + record.Comments.Add(@"Occitan variant spoken in Auvergne"); + record.Prefix.Add("oc"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "baku1926", + Added = new DateOnly(2007, 4, 18), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Unified Turkic Latin Alphabet (Historical)"); + record.Comments.Add( + @"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)." + ); + record.Prefix.Add("az"); + record.Prefix.Add("ba"); + record.Prefix.Add("crh"); + record.Prefix.Add("kk"); + record.Prefix.Add("krc"); + record.Prefix.Add("ky"); + record.Prefix.Add("sah"); + record.Prefix.Add("tk"); + record.Prefix.Add("tt"); + record.Prefix.Add("uz"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "balanka", + Added = new DateOnly(2014, 2, 15), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"The Balanka dialect of Anii"); + record.Comments.Add(@"Balanka is one of 19 Anii dialects."); + record.Prefix.Add("blo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "barla", + Added = new DateOnly(2013, 12, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"The Barlavento dialect group of Kabuverdianu"); + record.Comments.Add(@"Barlavento is one of the two main dialect groups of Kabuverdianu."); + record.Prefix.Add("kea"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "basiceng", + Added = new DateOnly(2015, 12, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Basic English"); + record.Prefix.Add("en"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "bauddha", + Added = new DateOnly(2010, 7, 28), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Buddhist Hybrid Sanskrit"); + record.Prefix.Add("sa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "bciav", + Added = new DateOnly(2023, 5, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"BCI Blissymbolics AV"); + record.Comments.Add( + @"Name given to a subset of the variety of Blissymbolics curated by Blissymbolics Communication International, as represented by entries in the BCI Authorized Vocabulary" + ); + record.Prefix.Add("zbl"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "bcizbl", + Added = new DateOnly(2023, 5, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"BCI Blissymbolics"); + record.Comments.Add( + @"Name given to the variety of Blissymbolics curated by Blissymbolics Communication International" + ); + record.Prefix.Add("zbl"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "biscayan", + Added = new DateOnly(2010, 4, 13), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Biscayan dialect of Basque"); + record.Prefix.Add("eu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "biske", + Added = new DateOnly(2007, 7, 5), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"The San Giorgio dialect of Resian"); + record.Description.Add(@"The Bila dialect of Resian"); + record.Comments.Add( + @"The dialect of San Giorgio/Bila is one of the four major local dialects of Resian" + ); + record.Prefix.Add("sl-rozaj"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "blasl", + Added = new DateOnly(2023, 7, 31), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Black American Sign Language dialect"); + record.Comments.Add( + @"Black American Sign Language (BASL) or Black Sign Variation (BSV) is a dialect of American Sign Language (ASL)" + ); + record.Prefix.Add("ase"); + record.Prefix.Add("sgn-ase"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "bohoric", + Added = new DateOnly(2012, 6, 27), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Slovene in Bohorič alphabet"); + record.Comments.Add( + @"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." + ); + record.Prefix.Add("sl"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "boont", + Added = new DateOnly(2006, 9, 18), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Boontling"); + record.Comments.Add(@"Jargon embedded in American English"); + record.Prefix.Add("en"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "bornholm", + Added = new DateOnly(2019, 3, 27), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bornholmsk"); + record.Prefix.Add("da"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "cisaup", + Added = new DateOnly(2018, 4, 22), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cisalpine"); + record.Comments.Add(@"Occitan variant spoken in northwestern Italy"); + record.Prefix.Add("oc"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "colb1945", + Added = new DateOnly(2015, 5, 6), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add( + @"Portuguese-Brazilian Orthographic Convention of 1945 (Convenção Ortográfica Luso-Brasileira de 1945)" + ); + record.Comments.Add( + @"Portuguese orthography conventions established in 1945, generally in effect until 2009. This reform was not ratified in Brazil." + ); + record.Prefix.Add("pt"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "cornu", + Added = new DateOnly(2015, 12, 7), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Cornu-English"); + record.Description.Add(@"Cornish English"); + record.Description.Add(@"Anglo-Cornish"); + record.Prefix.Add("en"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "creiss", + Added = new DateOnly(2018, 4, 22), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Occitan variants of the Croissant area"); + record.Prefix.Add("oc"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "dajnko", + Added = new DateOnly(2012, 6, 27), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Slovene in Dajnko alphabet"); + record.Comments.Add( + @"The subtag represents the alphabet codified by Peter Dajnko and used from 1824 to 1839 mostly in Styria (in what is now Eastern Slovenia)." + ); + record.Prefix.Add("sl"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "ekavsk", + Added = new DateOnly(2013, 12, 2), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Serbian with Ekavian pronunciation"); + record.Prefix.Add("sr"); + record.Prefix.Add("sr-Latn"); + record.Prefix.Add("sr-Cyrl"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "emodeng", + Added = new DateOnly(2012, 2, 5), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Early Modern English (1500-1700)"); + record.Prefix.Add("en"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "fascia", + Added = new DateOnly(2024, 3, 4), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Fascia standard of Ladin"); + record.Comments.Add( + @"Represents the standard written form of Ladin in Fascia which unified the three subvarieties Cazet, Brach and Moenat" + ); + record.Prefix.Add("lld"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "fodom", + Added = new DateOnly(2024, 3, 4), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Fodom standard of Ladin"); + record.Comments.Add( + @"Represents the standard written form of Ladin in Livinallongo and Colle Santa Lucia" + ); + record.Prefix.Add("lld"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "fonipa", + Added = new DateOnly(2006, 12, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"International Phonetic Alphabet"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "fonkirsh", + Added = new DateOnly(2018, 4, 22), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kirshenbaum Phonetic Alphabet"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "fonnapa", + Added = new DateOnly(2016, 6, 24), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"North American Phonetic Alphabet"); + record.Description.Add(@"Americanist Phonetic Notation"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "fonupa", + Added = new DateOnly(2006, 12, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Uralic Phonetic Alphabet"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "fonxsamp", + Added = new DateOnly(2010, 10, 23), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"X-SAMPA transcription"); + record.Comments.Add(@"Indicates that the content is transcribed according to X-SAMPA"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "gallo", + Added = new DateOnly(2021, 8, 5), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gallo"); + record.Prefix.Add("fr"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "gascon", + Added = new DateOnly(2018, 4, 22), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gascon"); + record.Comments.Add(@"Occitan variant spoken in Gascony"); + record.Prefix.Add("oc"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "gherd", + Added = new DateOnly(2024, 3, 4), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Gherdëina standard of Ladin"); + record.Comments.Add(@"Represents the standard written form of Ladin in Gherdëina"); + record.Prefix.Add("lld"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "grclass", + Added = new DateOnly(2018, 4, 22), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Classical Occitan orthography"); + record.Comments.Add(@"Classical written standard for Occitan developed in 1935 by Alibèrt"); + record.Prefix.Add("oc"); + record.Prefix.Add("oc-aranes"); + record.Prefix.Add("oc-auvern"); + record.Prefix.Add("oc-cisaup"); + record.Prefix.Add("oc-creiss"); + record.Prefix.Add("oc-gascon"); + record.Prefix.Add("oc-lemosin"); + record.Prefix.Add("oc-lengadoc"); + record.Prefix.Add("oc-nicard"); + record.Prefix.Add("oc-provenc"); + record.Prefix.Add("oc-vivaraup"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "grital", + Added = new DateOnly(2018, 4, 22), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Italian-inspired Occitan orthography"); + record.Prefix.Add("oc"); + record.Prefix.Add("oc-cisaup"); + record.Prefix.Add("oc-nicard"); + record.Prefix.Add("oc-provenc"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "grmistr", + Added = new DateOnly(2018, 4, 22), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Mistralian or Mistralian-inspired Occitan orthography"); + record.Comments.Add( + @"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" + ); + record.Prefix.Add("oc"); + record.Prefix.Add("oc-aranes"); + record.Prefix.Add("oc-auvern"); + record.Prefix.Add("oc-cisaup"); + record.Prefix.Add("oc-creiss"); + record.Prefix.Add("oc-gascon"); + record.Prefix.Add("oc-lemosin"); + record.Prefix.Add("oc-lengadoc"); + record.Prefix.Add("oc-nicard"); + record.Prefix.Add("oc-provenc"); + record.Prefix.Add("oc-vivaraup"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "hanoi", + Added = new DateOnly(2025, 3, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"The Hà Nội variant of Vietnamese"); + record.Prefix.Add("vi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "hepburn", + Added = new DateOnly(2009, 10, 1), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hepburn romanization"); + record.Prefix.Add("ja-Latn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "heploc", + Added = new DateOnly(2009, 10, 1), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2010, 2, 7), + PreferredValue = "alalc97", + Tag = "", + }; + record.Description.Add(@"Hepburn romanization, Library of Congress method"); + record.Comments.Add(@"Preferred tag is ja-Latn-alalc97"); + record.Prefix.Add("ja-Latn-hepburn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "hognorsk", + Added = new DateOnly(2010, 1, 2), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Norwegian in Høgnorsk (High Norwegian) orthography"); + record.Comments.Add( + @"Norwegian following Ivar Aasen's orthographical principles, including modern usage." + ); + record.Prefix.Add("nn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "hsistemo", + Added = new DateOnly(2017, 3, 14), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Standard H-system orthographic fallback for spelling Esperanto"); + record.Prefix.Add("eo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "huett", + Added = new DateOnly(2025, 3, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"The Huế (province Thừa Thiên) variant of Vietnamese"); + record.Prefix.Add("vi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "ijekavsk", + Added = new DateOnly(2013, 12, 2), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Serbian with Ijekavian pronunciation"); + record.Prefix.Add("sr"); + record.Prefix.Add("sr-Latn"); + record.Prefix.Add("sr-Cyrl"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "itihasa", + Added = new DateOnly(2010, 7, 28), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Epic Sanskrit"); + record.Prefix.Add("sa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "ivanchov", + Added = new DateOnly(2017, 12, 13), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Bulgarian in 1899 orthography"); + record.Comments.Add(@"Bulgarian orthography introduced by Todor Ivanchov in 1899"); + record.Prefix.Add("bg"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "jauer", + Added = new DateOnly(2010, 6, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jauer dialect of Romansh"); + record.Comments.Add( + @"The spoken dialect of the Val Müstair, which has no written standard." + ); + record.Prefix.Add("rm"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "jyutping", + Added = new DateOnly(2010, 10, 23), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Jyutping Cantonese Romanization"); + record.Comments.Add(@"Jyutping romanization of Cantonese"); + record.Prefix.Add("yue"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "kkcor", + Added = new DateOnly(2008, 10, 14), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Common Cornish orthography of Revived Cornish"); + record.Prefix.Add("kw"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "kleinsch", + Added = new DateOnly(2024, 7, 20), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Kleinschmidt orthography"); + record.Description.Add(@"Allattaasitaamut"); + record.Comments.Add( + @"Orthography for Greenlandic designed by Samuel Kleinschmidt, used from 1851 to 1973." + ); + record.Prefix.Add("kl"); + record.Prefix.Add("kl-tunumiit"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "kociewie", + Added = new DateOnly(2014, 11, 27), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"The Kociewie dialect of Polish"); + record.Comments.Add( + @"The dialect of Kociewie is spoken in the region around Starogard Gdański, Tczew and Świecie in northern Poland." + ); + record.Prefix.Add("pl"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "kscor", + Added = new DateOnly(2012, 6, 27), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Standard Cornish orthography of Revived Cornish"); + record.Description.Add(@"Kernowek Standard"); + record.Prefix.Add("kw"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "laukika", + Added = new DateOnly(2010, 7, 28), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2024, 6, 8), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Classical Sanskrit"); + record.Comments.Add(@"Preferred tag is cls"); + record.Prefix.Add("sa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "leidentr", + Added = new DateOnly(2025, 2, 6), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ancient Egyptian in Leiden Unified Transliteration"); + record.Comments.Add(@"Recommended by the International Association of Egyptologists"); + record.Prefix.Add("egy"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "lemosin", + Added = new DateOnly(2018, 4, 22), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Limousin"); + record.Comments.Add(@"Occitan variant spoken in Limousin"); + record.Prefix.Add("oc"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "lengadoc", + Added = new DateOnly(2018, 4, 22), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Languedocien"); + record.Comments.Add(@"Occitan variant spoken in Languedoc"); + record.Prefix.Add("oc"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "lipaw", + Added = new DateOnly(2007, 8, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"The Lipovaz dialect of Resian"); + record.Description.Add(@"The Lipovec dialect of Resian"); + record.Comments.Add( + @"The dialect of Lipovaz/Lipovec is one of the minor local dialects of Resian" + ); + record.Prefix.Add("sl-rozaj"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "ltg1929", + Added = new DateOnly(2022, 8, 5), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"The Latgalian language orthography codified in 1929"); + record.Prefix.Add("ltg"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "ltg2007", + Added = new DateOnly(2022, 6, 23), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add( + @"The Latgalian language orthography codified in the language law in 2007" + ); + record.Prefix.Add("ltg"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "luna1918", + Added = new DateOnly(2010, 10, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Post-1917 Russian orthography"); + record.Comments.Add( + @"Russian orthography as established by the 1917/1918 orthographic reforms" + ); + record.Prefix.Add("ru"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "mdcegyp", + Added = new DateOnly(2025, 2, 6), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ancient Egyptian hieroglyphs encoded in Manuel de Codage"); + record.Prefix.Add("egy"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "mdctrans", + Added = new DateOnly(2025, 2, 6), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ancient Egyptian transliteration encoded in Manuel de Codage"); + record.Prefix.Add("egy"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "metelko", + Added = new DateOnly(2012, 6, 27), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Slovene in Metelko alphabet"); + record.Comments.Add( + @"The subtag represents the alphabet codified by Franc Serafin Metelko and used from 1825 to 1833." + ); + record.Prefix.Add("sl"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "monoton", + Added = new DateOnly(2006, 12, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Monotonic Greek"); + record.Prefix.Add("el"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "ndyuka", + Added = new DateOnly(2009, 9, 5), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ndyuka dialect"); + record.Description.Add(@"Aukan dialect"); + record.Comments.Add( + @"Ndyuka dialect of the ""Busi Nenge Tongo"" English-based Creole continuum in Eastern Suriname and Western French Guiana" + ); + record.Prefix.Add("djk"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "nedis", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Natisone dialect"); + record.Description.Add(@"Nadiza dialect"); + record.Prefix.Add("sl"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "newfound", + Added = new DateOnly(2015, 11, 25), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Newfoundland English"); + record.Prefix.Add("en-CA"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "nicard", + Added = new DateOnly(2018, 4, 22), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Niçard"); + record.Comments.Add(@"Occitan variant spoken in Nice"); + record.Prefix.Add("oc"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "njiva", + Added = new DateOnly(2007, 7, 5), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"The Gniva dialect of Resian"); + record.Description.Add(@"The Njiva dialect of Resian"); + record.Comments.Add( + @"The dialect of Gniva/Njiva is one of the four major local dialects of Resian" + ); + record.Prefix.Add("sl-rozaj"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "nulik", + Added = new DateOnly(2012, 1, 28), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Volapük nulik"); + record.Description.Add(@"Volapük perevidöl"); + record.Description.Add(@"Volapük nulädik"); + record.Description.Add(@"de Jong's Volapük"); + record.Description.Add(@"New Volapük"); + record.Description.Add(@"Revised Volapük"); + record.Description.Add(@"Modern Volapük"); + record.Prefix.Add("vo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "osojs", + Added = new DateOnly(2007, 7, 5), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"The Oseacco dialect of Resian"); + record.Description.Add(@"The Osojane dialect of Resian"); + record.Comments.Add( + @"The dialect of Oseacco/Osojane is one of the four major local dialects of Resian" + ); + record.Prefix.Add("sl-rozaj"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "oxendict", + Added = new DateOnly(2015, 4, 17), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Oxford English Dictionary spelling"); + record.Prefix.Add("en"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "pahawh2", + Added = new DateOnly(2017, 1, 13), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pahawh Hmong Second Stage Reduced orthography"); + record.Prefix.Add("mww"); + record.Prefix.Add("hnj"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "pahawh3", + Added = new DateOnly(2017, 1, 13), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pahawh Hmong Third Stage Reduced orthography"); + record.Prefix.Add("mww"); + record.Prefix.Add("hnj"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "pahawh4", + Added = new DateOnly(2017, 1, 13), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pahawh Hmong Final Version orthography"); + record.Prefix.Add("mww"); + record.Prefix.Add("hnj"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "pamaka", + Added = new DateOnly(2009, 9, 5), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pamaka dialect"); + record.Comments.Add( + @"Pamaka dialect of the ""Busi Nenge Tongo"" English-based Creole continuum in Eastern Suriname and Western French Guiana" + ); + record.Prefix.Add("djk"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "peano", + Added = new DateOnly(2020, 3, 12), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Latino Sine Flexione"); + record.Description.Add(@"Interlingua de API"); + record.Description.Add(@"Interlingua de Peano"); + record.Comments.Add( + @"Peano’s Interlingua, created in 1903 by Giuseppe Peano as an international auxiliary language" + ); + record.Prefix.Add("la"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "pehoeji", + Added = new DateOnly(2024, 3, 4), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Hokkien Vernacular Romanization System"); + record.Description.Add(@"Pe̍h-ōe-jī orthography/romanization"); + record.Comments.Add( + @"Modern Hokkien Vernacular Romanization System, evolved from the New Dictionary in the Amoy by John Van Nest Talmage in 1894" + ); + record.Prefix.Add("nan-Latn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "petr1708", + Added = new DateOnly(2010, 10, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Petrine orthography"); + record.Comments.Add( + @"Russian orthography from the Petrine orthographic reforms of 1708 to the 1917 orthographic reform" + ); + record.Prefix.Add("ru"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "pinyin", + Added = new DateOnly(2008, 10, 14), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Pinyin romanization"); + record.Prefix.Add("zh-Latn"); + record.Prefix.Add("bo-Latn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "polyton", + Added = new DateOnly(2006, 12, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Polytonic Greek"); + record.Prefix.Add("el"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "provenc", + Added = new DateOnly(2018, 4, 22), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Provençal"); + record.Comments.Add(@"Occitan variant spoken in Provence"); + record.Prefix.Add("oc"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "puter", + Added = new DateOnly(2010, 6, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Puter idiom of Romansh"); + record.Comments.Add( + @"Puter is one of the five traditional written standards or ""idioms"" of the Romansh language." + ); + record.Prefix.Add("rm"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "rigik", + Added = new DateOnly(2012, 1, 28), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Volapük rigik"); + record.Description.Add(@"Schleyer's Volapük"); + record.Description.Add(@"Original Volapük"); + record.Description.Add(@"Classic Volapük"); + record.Prefix.Add("vo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "rozaj", + Added = new DateOnly(2005, 10, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Resian"); + record.Description.Add(@"Resianic"); + record.Description.Add(@"Rezijan"); + record.Prefix.Add("sl"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "rumgr", + Added = new DateOnly(2010, 6, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Rumantsch Grischun"); + record.Comments.Add(@"Supraregional Romansh written standard"); + record.Prefix.Add("rm"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "saigon", + Added = new DateOnly(2025, 3, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"The Sài Gòn variant of Vietnamese"); + record.Prefix.Add("vi"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "scotland", + Added = new DateOnly(2007, 8, 31), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Scottish Standard English"); + record.Prefix.Add("en"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "scouse", + Added = new DateOnly(2006, 9, 18), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Scouse"); + record.Comments.Add(@"English Liverpudlian dialect known as 'Scouse'"); + record.Prefix.Add("en"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "simple", + Added = new DateOnly(2015, 12, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Simplified form"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "solba", + Added = new DateOnly(2007, 7, 5), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"The Stolvizza dialect of Resian"); + record.Description.Add(@"The Solbica dialect of Resian"); + record.Comments.Add( + @"The dialect of Stolvizza/Solbica is one of the four major local dialects of Resian" + ); + record.Prefix.Add("sl-rozaj"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "sotav", + Added = new DateOnly(2013, 12, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"The Sotavento dialect group of Kabuverdianu"); + record.Comments.Add(@"Sotavento is one of the two main dialect groups of Kabuverdianu."); + record.Prefix.Add("kea"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "spanglis", + Added = new DateOnly(2017, 2, 23), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Spanglish"); + record.Comments.Add(@"A variety of contact dialects of English and Spanish"); + record.Prefix.Add("en"); + record.Prefix.Add("es"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "surmiran", + Added = new DateOnly(2010, 6, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Surmiran idiom of Romansh"); + record.Comments.Add( + @"Surmiran is one of the five traditional written standards or ""idioms"" of the Romansh language." + ); + record.Prefix.Add("rm"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "sursilv", + Added = new DateOnly(2010, 6, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sursilvan idiom of Romansh"); + record.Comments.Add( + @"Sursilvan is one of the five traditional written standards or ""idioms"" of the Romansh language." + ); + record.Prefix.Add("rm"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "sutsilv", + Added = new DateOnly(2010, 6, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Sutsilvan idiom of Romansh"); + record.Comments.Add( + @"Sutsilvan is one of the five traditional written standards or ""idioms"" of the Romansh language." + ); + record.Prefix.Add("rm"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "synnejyl", + Added = new DateOnly(2021, 7, 17), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Synnejysk"); + record.Description.Add(@"South Jutish"); + record.Prefix.Add("da"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "tailo", + Added = new DateOnly(2024, 3, 4), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Taiwanese Hokkien Romanization System for Hokkien languages"); + record.Description.Add(@"Tâi-lô orthography/romanization"); + record.Comments.Add( + @"Taiwanese Hokkien Romanization System (Tâi-lô) published in 2006 by the Taiwan Ministry of Education" + ); + record.Prefix.Add("nan-Latn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "tarask", + Added = new DateOnly(2007, 4, 27), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Belarusian in Taraskievica orthography"); + record.Comments.Add( + @"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)." + ); + record.Prefix.Add("be"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "tongyong", + Added = new DateOnly(2020, 6, 8), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tongyong Pinyin romanization"); + record.Comments.Add( + @"Former official transcription standard for Mandarin Chinese in Taiwan." + ); + record.Prefix.Add("zh-Latn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "tunumiit", + Added = new DateOnly(2020, 7, 16), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Tunumiisiut"); + record.Description.Add(@"East Greenlandic"); + record.Description.Add(@"Østgrønlandsk"); + record.Comments.Add(@"Also known as Tunumiit oraasiat"); + record.Prefix.Add("kl"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "uccor", + Added = new DateOnly(2008, 10, 14), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Unified Cornish orthography of Revived Cornish"); + record.Prefix.Add("kw"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "ucrcor", + Added = new DateOnly(2008, 10, 14), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Unified Cornish Revised orthography of Revived Cornish"); + record.Prefix.Add("kw"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "ulster", + Added = new DateOnly(2010, 4, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Ulster dialect of Scots"); + record.Prefix.Add("sco"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "unifon", + Added = new DateOnly(2013, 10, 2), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Unifon phonetic alphabet"); + record.Prefix.Add("en"); + record.Prefix.Add("hup"); + record.Prefix.Add("kyh"); + record.Prefix.Add("tol"); + record.Prefix.Add("yur"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "vaidika", + Added = new DateOnly(2010, 7, 28), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2024, 6, 8), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Vedic Sanskrit"); + record.Comments.Add( + @"The most ancient dialect of Sanskrit used in verse and prose composed until about the 4th century B.C.E." + ); + record.Comments.Add(@"Preferred tag is vsn"); + record.Prefix.Add("sa"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "valbadia", + Added = new DateOnly(2024, 3, 4), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Val Badia standard of Ladin"); + record.Comments.Add( + @"Represents the standard written form of Ladin in the Val Badia, unifying the three variants Marô, Mesaval and Badiot spoken in this valley" + ); + record.Prefix.Add("lld"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "valencia", + Added = new DateOnly(2007, 3, 6), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Valencian"); + record.Comments.Add( + @"Variety spoken in the ""Comunidad Valenciana"" region of Spain, where it is co-official with Spanish." + ); + record.Prefix.Add("ca"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "vallader", + Added = new DateOnly(2010, 6, 29), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Vallader idiom of Romansh"); + record.Comments.Add( + @"Vallader is one of the five traditional written standards or ""idioms"" of the Romansh language." + ); + record.Prefix.Add("rm"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "vecdruka", + Added = new DateOnly(2020, 9, 26), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Latvian orthography used before 1920s (""vecā druka"")"); + record.Comments.Add( + @"The subtag represents the old orthography of the Latvian language used during c. 1600s–1920s." + ); + record.Prefix.Add("lv"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "vivaraup", + Added = new DateOnly(2018, 4, 22), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Vivaro-Alpine"); + record.Comments.Add(@"Occitan variant spoken in northeastern Occitania"); + record.Prefix.Add("oc"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "wadegile", + Added = new DateOnly(2008, 10, 3), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Wade-Giles romanization"); + record.Prefix.Add("zh-Latn"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Variant, + SubTag = "xsistemo", + Added = new DateOnly(2017, 3, 14), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "", + }; + record.Description.Add(@"Standard X-system orthographic fallback for spelling Esperanto"); + record.Prefix.Add("eo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Grandfathered, + SubTag = "", + Added = new DateOnly(2001, 11, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2003, 9, 2), + PreferredValue = "jbo", + Tag = "art-lojban", + }; + record.Description.Add(@"Lojban"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Grandfathered, + SubTag = "", + Added = new DateOnly(2001, 5, 25), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2015, 3, 29), + PreferredValue = "", + Tag = "cel-gaulish", + }; + record.Description.Add(@"Gaulish"); + record.Comments.Add(@"see xcg, xga, xtg"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Grandfathered, + SubTag = "", + Added = new DateOnly(2003, 7, 9), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2015, 4, 17), + PreferredValue = "en-GB-oxendict", + Tag = "en-GB-oed", + }; + record.Description.Add(@"English, Oxford English Dictionary spelling"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Grandfathered, + SubTag = "", + Added = new DateOnly(1999, 5, 25), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2009, 7, 29), + PreferredValue = "ami", + Tag = "i-ami", + }; + record.Description.Add(@"Amis"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Grandfathered, + SubTag = "", + Added = new DateOnly(1999, 5, 25), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2009, 7, 29), + PreferredValue = "bnn", + Tag = "i-bnn", + }; + record.Description.Add(@"Bunun"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Grandfathered, + SubTag = "", + Added = new DateOnly(1998, 3, 10), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "i-default", + }; + record.Description.Add(@"Default Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Grandfathered, + SubTag = "", + Added = new DateOnly(2002, 7, 3), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2015, 3, 29), + PreferredValue = "", + Tag = "i-enochian", + }; + record.Description.Add(@"Enochian"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Grandfathered, + SubTag = "", + Added = new DateOnly(1999, 1, 31), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2000, 1, 10), + PreferredValue = "hak", + Tag = "i-hak", + }; + record.Description.Add(@"Hakka"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Grandfathered, + SubTag = "", + Added = new DateOnly(1999, 5, 26), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2004, 2, 24), + PreferredValue = "tlh", + Tag = "i-klingon", + }; + record.Description.Add(@"Klingon"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Grandfathered, + SubTag = "", + Added = new DateOnly(1997, 9, 19), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1998, 9, 9), + PreferredValue = "lb", + Tag = "i-lux", + }; + record.Description.Add(@"Luxembourgish"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Grandfathered, + SubTag = "", + Added = new DateOnly(1997, 9, 19), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "i-mingo", + }; + record.Description.Add(@"Mingo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Grandfathered, + SubTag = "", + Added = new DateOnly(1997, 9, 19), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2000, 2, 18), + PreferredValue = "nv", + Tag = "i-navajo", + }; + record.Description.Add(@"Navajo"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Grandfathered, + SubTag = "", + Added = new DateOnly(1999, 5, 25), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2009, 7, 29), + PreferredValue = "pwn", + Tag = "i-pwn", + }; + record.Description.Add(@"Paiwan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Grandfathered, + SubTag = "", + Added = new DateOnly(1999, 5, 25), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2009, 7, 29), + PreferredValue = "tao", + Tag = "i-tao", + }; + record.Description.Add(@"Tao"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Grandfathered, + SubTag = "", + Added = new DateOnly(1999, 5, 25), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2009, 7, 29), + PreferredValue = "tay", + Tag = "i-tay", + }; + record.Description.Add(@"Tayal"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Grandfathered, + SubTag = "", + Added = new DateOnly(1999, 5, 25), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2009, 7, 29), + PreferredValue = "tsu", + Tag = "i-tsu", + }; + record.Description.Add(@"Tsou"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Grandfathered, + SubTag = "", + Added = new DateOnly(1995, 8, 23), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2000, 2, 18), + PreferredValue = "nb", + Tag = "no-bok", + }; + record.Description.Add(@"Norwegian Bokmal"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Grandfathered, + SubTag = "", + Added = new DateOnly(1995, 8, 23), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2000, 2, 18), + PreferredValue = "nn", + Tag = "no-nyn", + }; + record.Description.Add(@"Norwegian Nynorsk"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Grandfathered, + SubTag = "", + Added = new DateOnly(2001, 11, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2009, 7, 29), + PreferredValue = "sfb", + Tag = "sgn-BE-FR", + }; + record.Description.Add(@"Belgian-French Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Grandfathered, + SubTag = "", + Added = new DateOnly(2001, 11, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2009, 7, 29), + PreferredValue = "vgt", + Tag = "sgn-BE-NL", + }; + record.Description.Add(@"Belgian-Flemish Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Grandfathered, + SubTag = "", + Added = new DateOnly(2001, 11, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2009, 7, 29), + PreferredValue = "sgg", + Tag = "sgn-CH-DE", + }; + record.Description.Add(@"Swiss German Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Grandfathered, + SubTag = "", + Added = new DateOnly(1999, 12, 18), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2005, 7, 15), + PreferredValue = "cmn", + Tag = "zh-guoyu", + }; + record.Description.Add(@"Mandarin or Standard Chinese"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Grandfathered, + SubTag = "", + Added = new DateOnly(1999, 12, 18), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2009, 7, 29), + PreferredValue = "hak", + Tag = "zh-hakka", + }; + record.Description.Add(@"Hakka"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Grandfathered, + SubTag = "", + Added = new DateOnly(1999, 12, 18), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2009, 7, 29), + PreferredValue = "", + Tag = "zh-min", + }; + record.Description.Add(@"Min, Fuzhou, Hokkien, Amoy, or Taiwanese"); + record.Comments.Add(@"see cdo, cpx, czo, mnp, nan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Grandfathered, + SubTag = "", + Added = new DateOnly(2001, 3, 26), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2009, 7, 29), + PreferredValue = "nan", + Tag = "zh-min-nan", + }; + record.Description.Add( + @"Minnan, Hokkien, Amoy, Taiwanese, Southern Min, Southern Fujian, Hoklo, Southern Fukien, Ho-lo" + ); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Grandfathered, + SubTag = "", + Added = new DateOnly(1999, 12, 18), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2009, 7, 29), + PreferredValue = "hsn", + Tag = "zh-xiang", + }; + record.Description.Add(@"Xiang or Hunanese"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Redundant, + SubTag = "", + Added = new DateOnly(2003, 5, 30), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "az-Arab", + }; + record.Description.Add(@"Azerbaijani in Arabic script"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Redundant, + SubTag = "", + Added = new DateOnly(2003, 5, 30), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "az-Cyrl", + }; + record.Description.Add(@"Azerbaijani in Cyrillic script"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Redundant, + SubTag = "", + Added = new DateOnly(2003, 5, 30), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "az-Latn", + }; + record.Description.Add(@"Azerbaijani in Latin script"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Redundant, + SubTag = "", + Added = new DateOnly(2005, 1, 6), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "be-Latn", + }; + record.Description.Add(@"Belarusian in Latin script"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Redundant, + SubTag = "", + Added = new DateOnly(2005, 2, 17), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "bs-Cyrl", + }; + record.Description.Add(@"Bosnian in Cyrillic script"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Redundant, + SubTag = "", + Added = new DateOnly(2005, 2, 17), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "bs-Latn", + }; + record.Description.Add(@"Bosnian in Latin script"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Redundant, + SubTag = "", + Added = new DateOnly(2001, 7, 17), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "de-1901", + }; + record.Description.Add(@"German, traditional orthography"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Redundant, + SubTag = "", + Added = new DateOnly(2001, 7, 17), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "de-1996", + }; + record.Description.Add(@"German, orthography of 1996"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Redundant, + SubTag = "", + Added = new DateOnly(2001, 7, 17), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "de-AT-1901", + }; + record.Description.Add(@"German, Austrian variant, traditional orthography"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Redundant, + SubTag = "", + Added = new DateOnly(2001, 7, 17), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "de-AT-1996", + }; + record.Description.Add(@"German, Austrian variant, orthography of 1996"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Redundant, + SubTag = "", + Added = new DateOnly(2001, 7, 17), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "de-CH-1901", + }; + record.Description.Add(@"German, Swiss variant, traditional orthography"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Redundant, + SubTag = "", + Added = new DateOnly(2001, 7, 17), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "de-CH-1996", + }; + record.Description.Add(@"German, Swiss variant, orthography of 1996"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Redundant, + SubTag = "", + Added = new DateOnly(2001, 7, 17), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "de-DE-1901", + }; + record.Description.Add(@"German, German variant, traditional orthography"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Redundant, + SubTag = "", + Added = new DateOnly(2001, 7, 17), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "de-DE-1996", + }; + record.Description.Add(@"German, German variant, orthography of 1996"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Redundant, + SubTag = "", + Added = new DateOnly(2003, 2, 14), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "en-boont", + }; + record.Description.Add(@"Boontling"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Redundant, + SubTag = "", + Added = new DateOnly(2000, 5, 25), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "en-scouse", + }; + record.Description.Add(@"Scouse"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Redundant, + SubTag = "", + Added = new DateOnly(2005, 7, 15), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "es-419", + }; + record.Description.Add(@"Latin American Spanish"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Redundant, + SubTag = "", + Added = new DateOnly(2005, 2, 17), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "iu-Cans", + }; + record.Description.Add(@"Inuktitut in Canadian Aboriginal Syllabic script"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Redundant, + SubTag = "", + Added = new DateOnly(2005, 2, 17), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "iu-Latn", + }; + record.Description.Add(@"Inuktitut in Latin script"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Redundant, + SubTag = "", + Added = new DateOnly(2005, 2, 17), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "mn-Cyrl", + }; + record.Description.Add(@"Mongolian in Cyrillic script"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Redundant, + SubTag = "", + Added = new DateOnly(2005, 2, 17), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "mn-Mong", + }; + record.Description.Add(@"Mongolian in Mongolian script"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Redundant, + SubTag = "", + Added = new DateOnly(2001, 11, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2009, 7, 29), + PreferredValue = "bzs", + Tag = "sgn-BR", + }; + record.Description.Add(@"Brazilian Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Redundant, + SubTag = "", + Added = new DateOnly(2001, 11, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2009, 7, 29), + PreferredValue = "csn", + Tag = "sgn-CO", + }; + record.Description.Add(@"Colombian Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Redundant, + SubTag = "", + Added = new DateOnly(2001, 11, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2009, 7, 29), + PreferredValue = "gsg", + Tag = "sgn-DE", + }; + record.Description.Add(@"German Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Redundant, + SubTag = "", + Added = new DateOnly(2001, 11, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2009, 7, 29), + PreferredValue = "dsl", + Tag = "sgn-DK", + }; + record.Description.Add(@"Danish Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Redundant, + SubTag = "", + Added = new DateOnly(2001, 11, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2009, 7, 29), + PreferredValue = "ssp", + Tag = "sgn-ES", + }; + record.Description.Add(@"Spanish Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Redundant, + SubTag = "", + Added = new DateOnly(2001, 11, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2009, 7, 29), + PreferredValue = "fsl", + Tag = "sgn-FR", + }; + record.Description.Add(@"French Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Redundant, + SubTag = "", + Added = new DateOnly(2001, 3, 2), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2009, 7, 29), + PreferredValue = "bfi", + Tag = "sgn-GB", + }; + record.Description.Add(@"British Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Redundant, + SubTag = "", + Added = new DateOnly(2001, 11, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2009, 7, 29), + PreferredValue = "gss", + Tag = "sgn-GR", + }; + record.Description.Add(@"Greek Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Redundant, + SubTag = "", + Added = new DateOnly(2001, 3, 2), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2009, 7, 29), + PreferredValue = "isg", + Tag = "sgn-IE", + }; + record.Description.Add(@"Irish Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Redundant, + SubTag = "", + Added = new DateOnly(2001, 11, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2009, 7, 29), + PreferredValue = "ise", + Tag = "sgn-IT", + }; + record.Description.Add(@"Italian Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Redundant, + SubTag = "", + Added = new DateOnly(2001, 11, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2009, 7, 29), + PreferredValue = "jsl", + Tag = "sgn-JP", + }; + record.Description.Add(@"Japanese Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Redundant, + SubTag = "", + Added = new DateOnly(2001, 11, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2009, 7, 29), + PreferredValue = "mfs", + Tag = "sgn-MX", + }; + record.Description.Add(@"Mexican Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Redundant, + SubTag = "", + Added = new DateOnly(2001, 3, 2), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2009, 7, 29), + PreferredValue = "ncs", + Tag = "sgn-NI", + }; + record.Description.Add(@"Nicaraguan Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Redundant, + SubTag = "", + Added = new DateOnly(2001, 11, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2009, 7, 29), + PreferredValue = "dse", + Tag = "sgn-NL", + }; + record.Description.Add(@"Dutch Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Redundant, + SubTag = "", + Added = new DateOnly(2001, 11, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2009, 7, 29), + PreferredValue = "nsl", + Tag = "sgn-NO", + }; + record.Description.Add(@"Norwegian Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Redundant, + SubTag = "", + Added = new DateOnly(2001, 11, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2009, 7, 29), + PreferredValue = "psr", + Tag = "sgn-PT", + }; + record.Description.Add(@"Portuguese Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Redundant, + SubTag = "", + Added = new DateOnly(2001, 11, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2009, 7, 29), + PreferredValue = "swl", + Tag = "sgn-SE", + }; + record.Description.Add(@"Swedish Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Redundant, + SubTag = "", + Added = new DateOnly(2001, 3, 2), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2009, 7, 29), + PreferredValue = "ase", + Tag = "sgn-US", + }; + record.Description.Add(@"American Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Redundant, + SubTag = "", + Added = new DateOnly(2001, 11, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2009, 7, 29), + PreferredValue = "sfs", + Tag = "sgn-ZA", + }; + record.Description.Add(@"South African Sign Language"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Redundant, + SubTag = "", + Added = new DateOnly(2004, 6, 1), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "sl-nedis", + }; + record.Description.Add(@"Natisone dialect, Nadiza dialect"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Redundant, + SubTag = "", + Added = new DateOnly(2003, 10, 9), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "sl-rozaj", + }; + record.Description.Add(@"Resian, Resianic, Rezijan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Redundant, + SubTag = "", + Added = new DateOnly(2003, 5, 30), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "sr-Cyrl", + }; + record.Description.Add(@"Serbian in Cyrillic script"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Redundant, + SubTag = "", + Added = new DateOnly(2003, 5, 30), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "sr-Latn", + }; + record.Description.Add(@"Serbian in Latin script"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Redundant, + SubTag = "", + Added = new DateOnly(2005, 2, 17), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "tg-Arab", + }; + record.Description.Add(@"Tajik in Arabic script"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Redundant, + SubTag = "", + Added = new DateOnly(2005, 2, 17), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "tg-Cyrl", + }; + record.Description.Add(@"Tajik in Cyrillic script"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Redundant, + SubTag = "", + Added = new DateOnly(2003, 5, 30), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "uz-Cyrl", + }; + record.Description.Add(@"Uzbek in Cyrillic script"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Redundant, + SubTag = "", + Added = new DateOnly(2003, 5, 30), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "uz-Latn", + }; + record.Description.Add(@"Uzbek in Latin script"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Redundant, + SubTag = "", + Added = new DateOnly(2003, 1, 7), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "yi-Latn", + }; + record.Description.Add(@"Yiddish, in Latin script"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Redundant, + SubTag = "", + Added = new DateOnly(2005, 7, 15), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2009, 7, 29), + PreferredValue = "cmn", + Tag = "zh-cmn", + }; + record.Description.Add(@"Mandarin Chinese"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Redundant, + SubTag = "", + Added = new DateOnly(2005, 7, 15), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2009, 7, 29), + PreferredValue = "cmn-Hans", + Tag = "zh-cmn-Hans", + }; + record.Description.Add(@"Mandarin Chinese (Simplified)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Redundant, + SubTag = "", + Added = new DateOnly(2005, 7, 15), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2009, 7, 29), + PreferredValue = "cmn-Hant", + Tag = "zh-cmn-Hant", + }; + record.Description.Add(@"Mandarin Chinese (Traditional)"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Redundant, + SubTag = "", + Added = new DateOnly(1999, 12, 18), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2009, 7, 29), + PreferredValue = "gan", + Tag = "zh-gan", + }; + record.Description.Add(@"Kan or Gan"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Redundant, + SubTag = "", + Added = new DateOnly(2003, 5, 30), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "zh-Hans", + }; + record.Description.Add(@"simplified Chinese"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Redundant, + SubTag = "", + Added = new DateOnly(2005, 4, 13), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "zh-Hans-CN", + }; + record.Description.Add(@"PRC Mainland Chinese in simplified script"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Redundant, + SubTag = "", + Added = new DateOnly(2005, 4, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "zh-Hans-HK", + }; + record.Description.Add(@"Hong Kong Chinese in simplified script"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Redundant, + SubTag = "", + Added = new DateOnly(2005, 4, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "zh-Hans-MO", + }; + record.Description.Add(@"Macao Chinese in simplified script"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Redundant, + SubTag = "", + Added = new DateOnly(2005, 4, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "zh-Hans-SG", + }; + record.Description.Add(@"Singapore Chinese in simplified script"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Redundant, + SubTag = "", + Added = new DateOnly(2005, 4, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "zh-Hans-TW", + }; + record.Description.Add(@"Taiwan Chinese in simplified script"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Redundant, + SubTag = "", + Added = new DateOnly(2003, 5, 30), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "zh-Hant", + }; + record.Description.Add(@"traditional Chinese"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Redundant, + SubTag = "", + Added = new DateOnly(2005, 4, 13), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "zh-Hant-CN", + }; + record.Description.Add(@"PRC Mainland Chinese in traditional script"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Redundant, + SubTag = "", + Added = new DateOnly(2005, 4, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "zh-Hant-HK", + }; + record.Description.Add(@"Hong Kong Chinese in traditional script"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Redundant, + SubTag = "", + Added = new DateOnly(2005, 4, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "zh-Hant-MO", + }; + record.Description.Add(@"Macao Chinese in traditional script"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Redundant, + SubTag = "", + Added = new DateOnly(2005, 4, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "zh-Hant-SG", + }; + record.Description.Add(@"Singapore Chinese in traditional script"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Redundant, + SubTag = "", + Added = new DateOnly(2005, 4, 11), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(1, 1, 1), + PreferredValue = "", + Tag = "zh-Hant-TW", + }; + record.Description.Add(@"Taiwan Chinese in traditional script"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Redundant, + SubTag = "", + Added = new DateOnly(1999, 12, 18), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2009, 7, 29), + PreferredValue = "wuu", + Tag = "zh-wuu", + }; + record.Description.Add(@"Shanghaiese or Wu"); + rfc5646.RecordList.Add(record); + + record = new() + { + Type = RecordType.Redundant, + SubTag = "", + Added = new DateOnly(1999, 12, 18), + SuppressScript = "", + Scope = "", + MacroLanguage = "", + Deprecated = new DateOnly(2009, 7, 29), + PreferredValue = "yue", + Tag = "zh-yue", + }; + record.Description.Add(@"Cantonese"); + rfc5646.RecordList.Add(record); + + return rfc5646; + } +} diff --git a/LanguageTagsCreate/LanguageTagsCreate.csproj b/LanguageTagsCreate/LanguageTagsCreate.csproj new file mode 100644 index 0000000..2bc61c6 --- /dev/null +++ b/LanguageTagsCreate/LanguageTagsCreate.csproj @@ -0,0 +1,30 @@ + + + LanguageTagsCreate + 1.0.0.0 + Pieter Viljoen + Pieter Viljoen + Pieter Viljoen + LanguageTags create utility + true + 1.0.0.0 + true + en + Exe + ptr727.LanguageTags.Create + MIT + https://github.com/ptr727/LanguageTags + true + ptr727.LanguageTags.Create + snupkg + net9.0 + 1.0.0.0 + + + + + + + + + diff --git a/LanguageTagsCreate/Program.cs b/LanguageTagsCreate/Program.cs new file mode 100644 index 0000000..bf5bd9c --- /dev/null +++ b/LanguageTagsCreate/Program.cs @@ -0,0 +1,132 @@ +using System; +using System.Globalization; +using System.IO; +using System.Net.Http; +using System.Net.Http.Headers; +using System.Reflection; +using System.Threading.Tasks; +using Serilog; +using Serilog.Sinks.SystemConsole.Themes; + +namespace ptr727.LanguageTags.Create; + +public class Program +{ + private const string LanguageDataDirectory = "LanguageData"; + private const string LanguageTagsDirectory = "LanguageTags"; + + private static HttpClient s_httpClient; + + private static async Task DownloadFileAsync(Uri uri, string fileName) + { + Log.Information("Downloading \"{Uri}\" to \"{FileName}\" ...", uri.ToString(), fileName); + Stream httpStream = await GetHttpClient().GetStreamAsync(uri); + using FileStream fileStream = File.Create(fileName); + await httpStream.CopyToAsync(fileStream); + } + + private static HttpClient GetHttpClient() + { + if (s_httpClient != null) + { + return s_httpClient; + } + s_httpClient = new() { Timeout = TimeSpan.FromSeconds(120) }; + s_httpClient.DefaultRequestHeaders.UserAgent.Add( + new ProductInfoHeaderValue( + Assembly.GetExecutingAssembly().GetName().Name, + Assembly.GetExecutingAssembly().GetName().Version.ToString() + ) + ); + return s_httpClient; + } + + public static async Task Main(string[] args) + { + Log.Logger = new LoggerConfiguration() + .WriteTo.Console( + theme: AnsiConsoleTheme.Code, + formatProvider: CultureInfo.InvariantCulture + ) + .CreateLogger(); + + // args[0] : Root directory, defaults to entry assembly directory + string rootDirectory; + if (args.Length > 0) + { + if (!Directory.Exists(args[0])) + { + Log.Error("Directory does not exist: \"{Directory}\"", args[0]); + return 1; + } + rootDirectory = Path.GetFullPath(args[0]); + } + else + { + Assembly entryAssembly = Assembly.GetEntryAssembly(); + string assemblyDirectory = Path.GetDirectoryName(entryAssembly.Location); + rootDirectory = Path.GetFullPath(assemblyDirectory); + } + + // Code directory + string codeDirectory = Path.Combine(rootDirectory, LanguageTagsDirectory); + if (!Directory.Exists(codeDirectory)) + { + Log.Error("Directory does not exist: \"{Directory}\"", codeDirectory); + return 1; + } + + // Data directory + string dataDirectory = Path.Combine(rootDirectory, LanguageDataDirectory); + Log.Information("Root directory: {RootDirectory}", rootDirectory); + if (!Directory.Exists(dataDirectory)) + { + Log.Information("Creating data directory: {DataDirectory}", dataDirectory); + _ = Directory.CreateDirectory(dataDirectory); + } + Log.Information("Data directory: {DataDirectory}", dataDirectory); + + // Download all the data files + Log.Information("Downloading all language tag data files ..."); + Log.Information("Downloading Iso6392 data ..."); + await DownloadFileAsync( + new Uri(Iso6392.DataUri), + Path.Combine(dataDirectory, Iso6392.DataFileName) + ); + Log.Information("Downloading Iso6393 data ..."); + await DownloadFileAsync( + new Uri(Iso6393.DataUri), + Path.Combine(dataDirectory, Iso6393.DataFileName) + ); + Log.Information("Downloading Rfc5646 data ..."); + await DownloadFileAsync( + new Uri(Rfc5646.DataUri), + Path.Combine(dataDirectory, Rfc5646.DataFileName) + ); + Log.Information("Language tag data files downloaded successfully."); + + // Convert data files to JSON + Log.Information("Converting data files to JSON ..."); + Log.Information("Converting Iso6392 data to JSON ..."); + Iso6392 iso6392 = Iso6392.LoadData(Path.Combine(dataDirectory, Iso6392.DataFileName)); + Iso6392.SaveJson(Path.Combine(dataDirectory, Iso6392.DataFileName + ".json"), iso6392); + Log.Information("Converting Iso6393 data to JSON ..."); + Iso6393 iso6393 = Iso6393.LoadData(Path.Combine(dataDirectory, Iso6393.DataFileName)); + Iso6393.SaveJson(Path.Combine(dataDirectory, Iso6393.DataFileName + ".json"), iso6393); + Log.Information("Converting Rfc5646 data to JSON ..."); + Rfc5646 rfc5646 = Rfc5646.LoadData(Path.Combine(dataDirectory, Rfc5646.DataFileName)); + Rfc5646.SaveJson(Path.Combine(dataDirectory, Rfc5646.DataFileName + ".json"), rfc5646); + Log.Information("Data files converted to JSON successfully."); + + // Generate code files + Log.Information("Generating code files ..."); + Log.Information("Generating Iso6392 code ..."); + Iso6392.GenCode(Path.Combine(codeDirectory, "Iso6392Gen.cs"), iso6392); + Log.Information("Generating Iso6393 code ..."); + Iso6393.GenCode(Path.Combine(codeDirectory, "Iso6393Gen.cs"), iso6393); + Log.Information("Generating Rfc5646 code ..."); + Rfc5646.GenCode(Path.Combine(codeDirectory, "Rfc5646Gen.cs"), rfc5646); + + return 0; + } +} diff --git a/LanguageTagsTests/.editorconfig b/LanguageTagsTests/.editorconfig new file mode 100644 index 0000000..9acafa5 --- /dev/null +++ b/LanguageTagsTests/.editorconfig @@ -0,0 +1,10 @@ +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 diff --git a/LanguageTagsTests/Fixture.cs b/LanguageTagsTests/Fixture.cs new file mode 100644 index 0000000..7a92f89 --- /dev/null +++ b/LanguageTagsTests/Fixture.cs @@ -0,0 +1,18 @@ +using System; +using System.IO; + +namespace ptr727.LanguageTags.Tests; + +public class Fixture : IDisposable +{ + public void Dispose() => GC.SuppressFinalize(this); + + public static string GetDataFilePath(string fileName) + { + string assemblyDirectory = Path.GetDirectoryName(typeof(Fixture).Assembly.Location); + string dataDirectory = Path.GetFullPath( + Path.Combine(assemblyDirectory, "../../../../LanguageData") + ); + return Path.GetFullPath(Path.Combine(dataDirectory, fileName)); + } +} diff --git a/LanguageTagsTests/Iso6392Tests.cs b/LanguageTagsTests/Iso6392Tests.cs new file mode 100644 index 0000000..92fb02f --- /dev/null +++ b/LanguageTagsTests/Iso6392Tests.cs @@ -0,0 +1,69 @@ +using AwesomeAssertions; +using Xunit; + +namespace ptr727.LanguageTags.Tests; + +public class Iso6392Tests(Fixture fixture) : IClassFixture +{ + private readonly Fixture _fixture = fixture; + + [Fact] + public void Create() + { + // Create full list of languages + Iso6392 iso6392 = Iso6392.Create(); + _ = iso6392.RecordList.Count.Should().BeGreaterThan(0); + } + + [Fact] + public void LoadData() + { + Iso6392 iso6392 = Iso6392.LoadData(Fixture.GetDataFilePath(Iso6392.DataFileName)); + _ = iso6392.Should().NotBeNull(); + _ = iso6392.RecordList.Count.Should().BeGreaterThan(0); + } + + [Fact] + public void LoadJson() + { + Iso6392 iso6392 = Iso6392.LoadJson(Fixture.GetDataFilePath(Iso6392.DataFileName + ".json")); + _ = iso6392.Should().NotBeNull(); + } + + [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 Succeed_Find(string input, bool description, string output) + { + // Create full list of languages + Iso6392 iso6392 = Iso6392.Create(); + _ = iso6392.RecordList.Count.Should().BeGreaterThan(0); + + // Find matching language + Iso6392.Record record = iso6392.Find(input, description); + _ = record.Should().NotBeNull(); + _ = record.RefName.Should().BeEquivalentTo(output); + } + + [Theory] + [InlineData("xxx")] + public void Fail_Find(string input) + { + // Create full list of languages + Iso6392 iso6392 = Iso6392.Create(); + _ = iso6392.RecordList.Count.Should().BeGreaterThan(0); + + // Fail to find matching language + Iso6392.Record record = iso6392.Find(input, false); + _ = record.Should().BeNull(); + } +} diff --git a/LanguageTagsTests/Iso6393Tests.cs b/LanguageTagsTests/Iso6393Tests.cs new file mode 100644 index 0000000..b6213ff --- /dev/null +++ b/LanguageTagsTests/Iso6393Tests.cs @@ -0,0 +1,69 @@ +using AwesomeAssertions; +using Xunit; + +namespace ptr727.LanguageTags.Tests; + +public class Iso6393Tests(Fixture fixture) : IClassFixture +{ + private readonly Fixture _fixture = fixture; + + [Fact] + public void Create() + { + // Create full list of languages + Iso6393 iso6393 = Iso6393.Create(); + _ = iso6393.RecordList.Count.Should().BeGreaterThan(0); + } + + [Fact] + public void LoadData() + { + Iso6393 iso6393 = Iso6393.LoadData(Fixture.GetDataFilePath(Iso6393.DataFileName)); + _ = iso6393.Should().NotBeNull(); + _ = iso6393.RecordList.Count.Should().BeGreaterThan(0); + } + + [Fact] + public void LoadJson() + { + Iso6393 iso6393 = Iso6393.LoadJson(Fixture.GetDataFilePath(Iso6393.DataFileName + ".json")); + _ = iso6393.Should().NotBeNull(); + } + + [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 Succeed_Find(string input, bool description, string output) + { + // Create full list of languages + Iso6393 iso6393 = Iso6393.Create(); + _ = iso6393.RecordList.Count.Should().BeGreaterThan(0); + + // Find matching language + Iso6393.Record record = iso6393.Find(input, description); + _ = record.Should().NotBeNull(); + _ = record.RefName.Should().BeEquivalentTo(output); + } + + [Theory] + [InlineData("xxx")] + public void Fail_Find(string input) + { + // Create full list of languages + Iso6393 iso6393 = Iso6393.Create(); + _ = iso6393.RecordList.Count.Should().BeGreaterThan(0); + + // Fail to find matching language + Iso6393.Record record = iso6393.Find(input, false); + _ = record.Should().BeNull(); + } +} diff --git a/LanguageTagsTests/LanguageLookupTests.cs b/LanguageTagsTests/LanguageLookupTests.cs new file mode 100644 index 0000000..499bd32 --- /dev/null +++ b/LanguageTagsTests/LanguageLookupTests.cs @@ -0,0 +1,65 @@ +using AwesomeAssertions; +using Xunit; + +namespace ptr727.LanguageTags.Tests; + +public class LanguageLookupTests(Fixture fixture) : IClassFixture +{ + private readonly Fixture _fixture = fixture; + + [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")] + public void Lookup_Ietf_From_Iso(string iso, string ietf) + { + LanguageLookup languageLookup = new(); + _ = 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")] + public void Lookup_Iso_From_Ietf(string ietf, string iso) + { + LanguageLookup languageLookup = new(); + _ = 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 Match_Language_Tags(string prefix, string tag, bool match) + { + LanguageLookup languageLookup = new(); + _ = languageLookup.IsMatch(prefix, tag).Should().Be(match); + } +} diff --git a/LanguageTagsTests/LanguageTagsTests.csproj b/LanguageTagsTests/LanguageTagsTests.csproj new file mode 100644 index 0000000..6515204 --- /dev/null +++ b/LanguageTagsTests/LanguageTagsTests.csproj @@ -0,0 +1,34 @@ + + + LanguageTagsTests + 1.0.0.0 + Pieter Viljoen + Pieter Viljoen + Pieter Viljoen + LanguageTags unit tests + true + 1.0.0.0 + false + true + en + ptr727.LanguageTags.Tests + MIT + https://github.com/ptr727/LanguageTags + true + ptr727.LanguageTags.Tests + snupkg + net9.0 + 1.0.0.0 + + + + + + + + + + + + + diff --git a/LanguageTagsTests/Rfc5646Tests.cs b/LanguageTagsTests/Rfc5646Tests.cs new file mode 100644 index 0000000..47b225a --- /dev/null +++ b/LanguageTagsTests/Rfc5646Tests.cs @@ -0,0 +1,78 @@ +using System; +using AwesomeAssertions; +using Xunit; + +namespace ptr727.LanguageTags.Tests; + +public class Rfc5646Tests(Fixture fixture) : IClassFixture +{ + private readonly Fixture _fixture = fixture; + + [Fact] + public void Create() + { + // Create full list of languages + Rfc5646 rfc5646 = Rfc5646.Create(); + _ = rfc5646.Should().NotBeNull(); + _ = rfc5646.RecordList.Count.Should().BeGreaterThan(0); + } + + [Fact] + public void LoadData() + { + Rfc5646 rfc5646 = Rfc5646.LoadData(Fixture.GetDataFilePath(Rfc5646.DataFileName)); + _ = rfc5646.Should().NotBeNull(); + _ = rfc5646.RecordList.Count.Should().BeGreaterThan(0); + } + + [Fact] + public void LoadJson() + { + Rfc5646 rfc5646 = Rfc5646.LoadJson(Fixture.GetDataFilePath(Rfc5646.DataFileName + ".json")); + _ = rfc5646.Should().NotBeNull(); + _ = rfc5646.RecordList.Count.Should().BeGreaterThan(0); + } + + [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("zulu", true, "Zulu")] + [InlineData( + "language association", + true, + "Interlingua (International Auxiliary Language Association)" + )] + public void Succeed_Find(string input, bool description, string output) + { + // Create full list of languages + Rfc5646 rfc5646 = Rfc5646.Create(); + + _ = rfc5646.Should().NotBeNull(); + _ = rfc5646.RecordList.Count.Should().BeGreaterThan(0); + + // Find matching language + Rfc5646.Record record = rfc5646.Find(input, description); + _ = record.Should().NotBeNull(); + _ = record + .Description.Should() + .Contain(item => item.Equals(output, StringComparison.OrdinalIgnoreCase)); + } + + [Theory] + [InlineData("xxx")] + public void Fail_Find(string input) + { + // Create full list of languages + Rfc5646 rfc5646 = Rfc5646.Create(); + _ = rfc5646.Should().NotBeNull(); + _ = rfc5646.RecordList.Count.Should().BeGreaterThan(0); + + // Fail to find matching language + Rfc5646.Record record = rfc5646.Find(input, false); + _ = record.Should().BeNull(); + } +} diff --git a/README.md b/README.md index a921f68..3b6e7be 100644 --- a/README.md +++ b/README.md @@ -1 +1,141 @@ -# LanguageTags \ No newline at end of file +# LanguageTags + +C# .NET library for ISO 639-2, ISO 639-3, RFC 5646 / BCP 47 language tags. + +## License + +Licensed under the [MIT License](./LICENSE)\ +![GitHub](https://img.shields.io/github/license/ptr727/LanguageTags) + +## Build Status + +Code and Pipeline is on [GitHub](https://github.com/ptr727/LanguageTags)\ +![GitHub Last Commit](https://img.shields.io/github/last-commit/ptr727/LanguageTags?logo=github)\ +![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/ptr727/LanguageTags/BuildPublishPipeline.yml?logo=github) + +## NuGet Package + +Packages published on [NuGet](https://www.nuget.org/packages/ptr727.LanguageTags/)\ +![NuGet](https://img.shields.io/nuget/v/ptr727.LanguageTags?logo=nuget) + +## References + +- [Wikipedia : Codes for constructed languages](https://en.wikipedia.org/wiki/Codes_for_constructed_languages) +- [Wikipedia : IETF language tag](https://en.wikipedia.org/wiki/IETF_language_tag) +- [W3C : Choosing a Language Tag](https://www.w3.org/International/questions/qa-choosing-language-tags) +- [W3C : Language tags in HTML and XML](https://www.w3.org/International/articles/language-tags/) +- [W3C : BCP47 language subtag lookup](https://r12a.github.io/app-subtags/) +- [IANA : Language Subtags, Tag Extensions, and Tags](https://www.iana.org/assignments/language-subtags-tags-extensions/language-subtags-tags-extensions.xhtml) +- [RFC : BCP47](https://www.rfc-editor.org/info/bcp47) +- [RFC : 4647 : Matching of Language Tags](https://www.rfc-editor.org/info/rfc4647) +- [RFC : 5646 : Tags for Identifying Languages](https://www.rfc-editor.org/info/rfc5646) +- [Unicode Consortium : Unicode CLDR Project](https://cldr.unicode.org/) +- [Library of Congress : ISO 639-2 Language Coding Agency](https://www.loc.gov/standards/iso639-2/) +- [SIL International : ISO 639-3 Language Coding Agency](https://iso639-3.sil.org/) + +## Build Process + +The build process downloads the latest language tag data files, converts them into JSON files for easy consumption, and generates C# classes with all the tags for direct use in code. + +- ISO 639-2: [Source](https://www.loc.gov/standards/iso639-2/ISO-639-2_utf-8.txt), [Data](./LanguageData/iso6392), [JSON](./LanguageData/iso6392.json), [Code](./LanguageTags/Iso6392Gen.cs) +- ISO 639-3: [Source](https://iso639-3.sil.org/sites/iso639-3/files/downloads/iso-639-3.tab), [Data](./LanguageData/iso6393), [JSON](./LanguageData/iso6393.json), [Code](./LanguageTags/Iso6393Gen.cs) +- RFC 5646: [Source](https://www.iana.org/assignments/language-subtag-registry/language-subtag-registry), [Data](./LanguageData/rfc5646), [JSON](./LanguageData/rfc5646.json), [Code](./LanguageTags/Rfc5646Gen.cs) + +The data files are [updated](./LanguageTagsCreate/) on a weekly bases using a scheduled [actions job](./.github/workflows/update-languagedata.yml). + +## Usage + +### Tag Lookup + +```csharp +Iso6392 iso6392 = Iso6392.Create(); +Iso6393 iso6393 = Iso6393.LoadData("Iso6393"); +Rfc5646 rfc5646 = Rfc5646.LoadJson("Rfc5646.json"); +``` + +```csharp +public Record Find(string languageTag, bool includeDescription); +``` + +```csharp +Iso6392.Record record = iso6392.Find("afr", false) +// record.Part2B = afr +// record.RefName = Afrikaans +record = iso6392.Find("zulu", true) +// record.Part2B = zul +// record.RefName = Zulu +``` + +```csharp +Iso6393.Record record = iso6393.Find("zh", false) +// record.Id = zho +// record.Part1 = zh +// record.RefName = Chinese +record = iso6392.Find("yue chinese", true) +// record.Id = yue +// record.RefName = Yue Chinese +``` + +```csharp +Rfc5646.Record record = rfc5646.Find("de", false) +// record.SubTag = de +// record.Description = German +record = iso6392.Find("zh-cmn-Hant", false) +// record.Tag = zh-cmn-Hant +// record.Description = Mandarin Chinese (Traditional) +record = iso6392.Find("Inuktitut in Canadian", true) +// record.Tag = iu-Cans +// record.Description = Inuktitut in Canadian Aboriginal Syllabic script +``` + +### Tag Conversion + +```csharp +LanguageLookup languageLookup = new(); +languageLookup.GetIetfFromIso("afr"); // af +languageLookup.GetIetfFromIso("zho"); // zh +``` + +```csharp +LanguageLookup languageLookup = new(); +languageLookup.GetIsoFromIetf("af"); // afr +languageLookup.GetIsoFromIetf("zh-cmn-Hant"); // chi +languageLookup.GetIsoFromIetf("cmn-Hant"); // chi +``` + +### Tag Matching + +RFC 5646 / BCP 47 language tags are in the form of `language-extlang-script-region-variant-extension-privateuse`, and matching happens left to right.\ +E.g. `pt` will match `pt` Portuguese, or `pt-BR` Brazilian Portuguese, or `pt-PT` European Portuguese.\ +E.g. `pt-BR` will only match only `pt-BR` Brazilian Portuguese.\ +E.g. `zh` will match `zh` Chinese, or `zh-Hans` simplified Chinese, or `zh-Hant` for traditional Chinese, and other variants.\ +E.g. `zh-Hans` will only match `zh-Hans` simplified Chinese. + +```csharp +LanguageLookup languageLookup = new(); +languageLookup.IsMatch("en", "en-US"); // true +languageLookup.IsMatch("zh", "zh-cmn-Hant"); // true +languageLookup.IsMatch("sr-Latn", "sr-Latn-RS"); // true +languageLookup.IsMatch("zha", "zh-Hans"); // false +languageLookup.IsMatch("zh-Hant", "zh-Hans"); // false +``` + +## 3rd Party Tools + +- [AwesomeAssertions](https://awesomeassertions.org/) +- [Bring Your Own Badge](https://github.com/marketplace/actions/bring-your-own-badge) +- [Create Pull Request](https://github.com/marketplace/actions/create-pull-request) +- [GH Release](https://github.com/marketplace/actions/gh-release) +- [Git Auto Commit](https://github.com/marketplace/actions/git-auto-commit) +- [GitHub Actions](https://github.com/actions) +- [GitHub Dependabot](https://github.com/dependabot) +- [Nerdbank.GitVersioning](https://github.com/marketplace/actions/nerdbank-gitversioning) +- [Serilog](https://serilog.net/) +- [xUnit.Net](https://xunit.net/) + +## Other Language Tag Libraries + +- [github.com/DanSmith/languagetags-sharp](https://github.com/DanSmith/languagetags-sharp) +- [github.com/jkporter/bcp47](https://github.com/jkporter/bcp47) +- [github.com/mattcg/language-subtag-registry](https://github.com/mattcg/language-subtag-registry) +- [github.com/rspeer/langcodes](https://github.com/rspeer/langcodes) diff --git a/version.json b/version.json new file mode 100644 index 0000000..c0c465e --- /dev/null +++ b/version.json @@ -0,0 +1,10 @@ +{ + "$schema": "https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/master/src/NerdBank.GitVersioning/version.schema.json", + "version": "1.0", + "publicReleaseRefSpec": [ + "^refs/heads/main$" + ], + "nugetPackageVersion": { + "semVer": 2 + } +}